diff --git a/ChangeLog b/ChangeLog
index 9f1635c3ac..489a1999e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -50,6 +50,7 @@ VerboseMultiSubmit, ReplaceHelpImg
- bug #3522930 [browse] Missing validation in Ajax mode
- bug Fix popup message on build SQL of import
- bug #3523499 [core] Make X-WebKit-CSP work better
+- replace Highcharts with jqplot for query profiling, zoom search
3.5.1.0 (2012-05-03)
- bug #3510784 [edit] Limit clause ignored when sort order is remembered
diff --git a/js/functions.js b/js/functions.js
index c8a44fdacd..cb07c06e6e 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1830,7 +1830,7 @@ function PMA_createChart(passedSettings)
/*
- * Creates a Profiling Chart. Used in sql.php and server_status.js
+ * Creates a Profiling Chart. Used in server_status_monitor.js
*/
function PMA_createProfilingChart(data, options)
{
@@ -1866,6 +1866,48 @@ function PMA_createProfilingChart(data, options)
}, options));
}
+/*
+ * Creates a Profiling Chart with jqplot. Used in sql.js
+ */
+function PMA_createProfilingChartJqplot(target, data)
+{
+ return $.jqplot(target, [data],
+ {
+ seriesDefaults: {
+ renderer: $.jqplot.PieRenderer,
+ rendererOptions: {
+ showDataLabels: true
+ }
+ },
+ legend: {
+ show: true,
+ location: 'e'
+ },
+ // from http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines#Color_Palette
+ seriesColors: [
+ '#fce94f',
+ '#fcaf3e',
+ '#e9b96e',
+ '#8ae234',
+ '#729fcf',
+ '#ad7fa8',
+ '#ef2929',
+ '#eeeeec',
+ '#888a85',
+ '#c4a000',
+ '#ce5c00',
+ '#8f5902',
+ '#4e9a06',
+ '#204a87',
+ '#5c3566',
+ '#a40000',
+ '#babdb6',
+ '#2e3436'
+ ]
+ }
+ );
+}
+
/**
* Formats a profiling duration nicely (in us and ms time). Used in PMA_createProfilingChart() and server_status.js
*
diff --git a/js/jqplot/jquery.jqplot.js b/js/jqplot/jquery.jqplot.js
new file mode 100644
index 0000000000..3c620f2e3e
--- /dev/null
+++ b/js/jqplot/jquery.jqplot.js
@@ -0,0 +1,10901 @@
+/**
+ * Title: jqPlot Charts
+ *
+ * Pure JavaScript plotting plugin for jQuery.
+ *
+ * About: Version
+ *
+ * 1.0.0b2_r1012
+ *
+ * About: Copyright & License
+ *
+ * Copyright (c) 2009-2011 Chris Leonello
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT and GPL version 2.0 licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * See and contained within this distribution for further information.
+ *
+ * The author would appreciate an email letting him know of any substantial
+ * use of jqPlot. You can reach the author at: chris at jqplot dot com
+ * or see http://www.jqplot.com/info.php. This is, of course, not required.
+ *
+ * If you are feeling kind and generous, consider supporting the project by
+ * making a donation at: http://www.jqplot.com/donate.php.
+ *
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
+ *
+ * version 2007.04.27
+ * author Ash Searle
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ * The author (Ash Searle) has placed this code in the public domain:
+ * "This code is unrestricted: you are free to use it however you like."
+ *
+ *
+ * About: Introduction
+ *
+ * jqPlot requires jQuery (1.4+ required for certain features). jQuery 1.4.2 is included in the distribution.
+ * To use jqPlot include jQuery, the jqPlot jQuery plugin, the jqPlot css file and optionally
+ * the excanvas script for IE support in your web page:
+ *
+ * >
+ * >
+ * >
+ * >
+ *
+ * jqPlot can be customized by overriding the defaults of any of the objects which make
+ * up the plot. The general usage of jqplot is:
+ *
+ * > chart = $.jqplot('targetElemId', [dataArray,...], {optionsObject});
+ *
+ * The options available to jqplot are detailed in in the jqPlotOptions.txt file.
+ *
+ * An actual call to $.jqplot() may look like the
+ * examples below:
+ *
+ * > chart = $.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);
+ *
+ * or
+ *
+ * > dataArray = [34,12,43,55,77];
+ * > chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis:{min:20, max:100}}});
+ *
+ * For more inforrmation, see .
+ *
+ * About: Usage
+ *
+ * See
+ *
+ * About: Available Options
+ *
+ * See for a list of options available thorugh the options object (not complete yet!)
+ *
+ * About: Options Usage
+ *
+ * See
+ *
+ * About: Changes
+ *
+ * See
+ *
+ */
+
+(function($) {
+ // make sure undefined is undefined
+ var undefined;
+
+ $.fn.emptyForce = function() {
+ for ( var i = 0, elem; (elem = $(this)[i]) != null; i++ ) {
+ // Remove element nodes and prevent memory leaks
+ if ( elem.nodeType === 1 ) {
+ jQuery.cleanData( elem.getElementsByTagName("*") );
+ }
+
+ // Remove any remaining nodes
+ if ($.jqplot_use_excanvas) {
+ elem.outerHTML = "";
+ }
+ else {
+ while ( elem.firstChild ) {
+ elem.removeChild( elem.firstChild );
+ }
+ }
+
+ elem = null;
+ }
+
+ return $(this);
+ };
+
+ $.fn.removeChildForce = function(parent) {
+ while ( parent.firstChild ) {
+ this.removeChildForce( parent.firstChild );
+ parent.removeChild( parent.firstChild );
+ }
+ };
+
+
+ /**
+ * Namespace: $.jqplot
+ * jQuery function called by the user to create a plot.
+ *
+ * Parameters:
+ * target - ID of target element to render the plot into.
+ * data - an array of data series.
+ * options - user defined options object. See the individual classes for available options.
+ *
+ * Properties:
+ * config - object to hold configuration information for jqPlot plot object.
+ *
+ * attributes:
+ * enablePlugins - False to disable plugins by default. Plugins must then be explicitly
+ * enabled in the individual plot options. Default: false.
+ * This property sets the "show" property of certain plugins to true or false.
+ * Only plugins that can be immediately active upon loading are affected. This includes
+ * non-renderer plugins like cursor, dragable, highlighter, and trendline.
+ * defaultHeight - Default height for plots where no css height specification exists. This
+ * is a jqplot wide default.
+ * defaultWidth - Default height for plots where no css height specification exists. This
+ * is a jqplot wide default.
+ */
+
+ $.jqplot = function(target, data, options) {
+ var _data, _options;
+
+ if (options == null) {
+ if (jQuery.isArray(data)) {
+ _data = data;
+ _options = null;
+ }
+
+ else if (typeof(data) === 'object') {
+ _data = null;
+ _options = data;
+ }
+ }
+ else {
+ _data = data;
+ _options = options;
+ }
+ var plot = new jqPlot();
+ // remove any error class that may be stuck on target.
+ $('#'+target).removeClass('jqplot-error');
+
+ if ($.jqplot.config.catchErrors) {
+ try {
+ plot.init(target, _data, _options);
+ plot.draw();
+ plot.themeEngine.init.call(plot);
+ return plot;
+ }
+ catch(e) {
+ var msg = $.jqplot.config.errorMessage || e.message;
+ $('#'+target).append('
'+msg+'
');
+ $('#'+target).addClass('jqplot-error');
+ document.getElementById(target).style.background = $.jqplot.config.errorBackground;
+ document.getElementById(target).style.border = $.jqplot.config.errorBorder;
+ document.getElementById(target).style.fontFamily = $.jqplot.config.errorFontFamily;
+ document.getElementById(target).style.fontSize = $.jqplot.config.errorFontSize;
+ document.getElementById(target).style.fontStyle = $.jqplot.config.errorFontStyle;
+ document.getElementById(target).style.fontWeight = $.jqplot.config.errorFontWeight;
+ }
+ }
+ else {
+ plot.init(target, _data, _options);
+ plot.draw();
+ plot.themeEngine.init.call(plot);
+ return plot;
+ }
+ };
+
+ $.jqplot.version = "1.0.0b2_r1012";
+
+ // canvas manager to reuse canvases on the plot.
+ // Should help solve problem of canvases not being freed and
+ // problem of waiting forever for firefox to decide to free memory.
+ $.jqplot.CanvasManager = function() {
+ // canvases are managed globally so that they can be reused
+ // across plots after they have been freed
+ if (typeof $.jqplot.CanvasManager.canvases == 'undefined') {
+ $.jqplot.CanvasManager.canvases = [];
+ $.jqplot.CanvasManager.free = [];
+ }
+
+ var myCanvases = [];
+
+ this.getCanvas = function() {
+ var canvas;
+ var makeNew = true;
+
+ if (!$.jqplot.use_excanvas) {
+ for (var i = 0, l = $.jqplot.CanvasManager.canvases.length; i < l; i++) {
+ if ($.jqplot.CanvasManager.free[i] === true) {
+ makeNew = false;
+ canvas = $.jqplot.CanvasManager.canvases[i];
+ // $(canvas).removeClass('jqplot-canvasManager-free').addClass('jqplot-canvasManager-inuse');
+ $.jqplot.CanvasManager.free[i] = false;
+ myCanvases.push(i);
+ break;
+ }
+ }
+ }
+
+ if (makeNew) {
+ canvas = document.createElement('canvas');
+ myCanvases.push($.jqplot.CanvasManager.canvases.length);
+ $.jqplot.CanvasManager.canvases.push(canvas);
+ $.jqplot.CanvasManager.free.push(false);
+ }
+
+ return canvas;
+ };
+
+ // this method has to be used after settings the dimesions
+ // on the element returned by getCanvas()
+ this.initCanvas = function(canvas) {
+ if ($.jqplot.use_excanvas) {
+ return window.G_vmlCanvasManager.initElement(canvas);
+ }
+ return canvas;
+ };
+
+ this.freeAllCanvases = function() {
+ for (var i = 0, l=myCanvases.length; i < l; i++) {
+ this.freeCanvas(myCanvases[i]);
+ }
+ myCanvases = [];
+ };
+
+ this.freeCanvas = function(idx) {
+ if ($.jqplot.use_excanvas && window.G_vmlCanvasManager.uninitElement !== undefined) {
+ // excanvas can't be reused, but properly unset
+ window.G_vmlCanvasManager.uninitElement($.jqplot.CanvasManager.canvases[idx]);
+ $.jqplot.CanvasManager.canvases[idx] = null;
+ }
+ else {
+ var canvas = $.jqplot.CanvasManager.canvases[idx];
+ canvas.getContext('2d').clearRect(0, 0, canvas.width, canvas.height);
+ $(canvas).unbind().removeAttr('class').removeAttr('style');
+ // Style attributes seemed to be still hanging around. wierd. Some ticks
+ // still retained a left: 0px attribute after reusing a canvas.
+ $(canvas).css({left: '', top: '', position: ''});
+ // setting size to 0 may save memory of unused canvases?
+ canvas.width = 0;
+ canvas.height = 0;
+ $.jqplot.CanvasManager.free[idx] = true;
+ }
+ };
+
+ };
+
+
+ // Convienence function that won't hang IE or FF without FireBug.
+ $.jqplot.log = function() {
+ if (window.console) {
+ window.console.log.apply(window.console, arguments);
+ }
+ };
+
+ $.jqplot.config = {
+ addDomReference: false,
+ enablePlugins:false,
+ defaultHeight:300,
+ defaultWidth:400,
+ UTCAdjust:false,
+ timezoneOffset: new Date(new Date().getTimezoneOffset() * 60000),
+ errorMessage: '',
+ errorBackground: '',
+ errorBorder: '',
+ errorFontFamily: '',
+ errorFontSize: '',
+ errorFontStyle: '',
+ errorFontWeight: '',
+ catchErrors: false,
+ defaultTickFormatString: "%.1f",
+ defaultColors: [ "#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"],
+ defaultNegativeColors: [ "#498991", "#C08840", "#9F9274", "#546D61", "#646C4A", "#6F6621", "#6E3F5F", "#4F64B0", "#A89050", "#C45923", "#187399", "#945381", "#959E5C", "#C7AF7B", "#478396", "#907294"],
+ dashLength: 4,
+ gapLength: 4,
+ dotGapLength: 2.5,
+ srcLocation: 'jqplot/src/',
+ pluginLocation: 'jqplot/src/plugins/'
+ };
+
+
+ $.jqplot.arrayMax = function( array ){
+ return Math.max.apply( Math, array );
+ };
+
+ $.jqplot.arrayMin = function( array ){
+ return Math.min.apply( Math, array );
+ };
+
+ $.jqplot.enablePlugins = $.jqplot.config.enablePlugins;
+
+ // canvas related tests taken from modernizer:
+ // Copyright (c) 2009 - 2010 Faruk Ates.
+ // http://www.modernizr.com
+
+ $.jqplot.support_canvas = function() {
+ if (typeof $.jqplot.support_canvas.result == 'undefined') {
+ $.jqplot.support_canvas.result = !!document.createElement('canvas').getContext;
+ }
+ return $.jqplot.support_canvas.result;
+ };
+
+ $.jqplot.support_canvas_text = function() {
+ if (typeof $.jqplot.support_canvas_text.result == 'undefined') {
+ if (window.G_vmlCanvasManager !== undefined && window.G_vmlCanvasManager._version > 887) {
+ $.jqplot.support_canvas_text.result = true;
+ }
+ else {
+ $.jqplot.support_canvas_text.result = !!(document.createElement('canvas').getContext && typeof document.createElement('canvas').getContext('2d').fillText == 'function');
+ }
+
+ }
+ return $.jqplot.support_canvas_text.result;
+ };
+
+ $.jqplot.use_excanvas = ($.browser.msie && !$.jqplot.support_canvas()) ? true : false;
+
+ /**
+ *
+ * Hooks: jqPlot Pugin Hooks
+ *
+ * $.jqplot.preInitHooks - called before initialization.
+ * $.jqplot.postInitHooks - called after initialization.
+ * $.jqplot.preParseOptionsHooks - called before user options are parsed.
+ * $.jqplot.postParseOptionsHooks - called after user options are parsed.
+ * $.jqplot.preDrawHooks - called before plot draw.
+ * $.jqplot.postDrawHooks - called after plot draw.
+ * $.jqplot.preDrawSeriesHooks - called before each series is drawn.
+ * $.jqplot.postDrawSeriesHooks - called after each series is drawn.
+ * $.jqplot.preDrawLegendHooks - called before the legend is drawn.
+ * $.jqplot.addLegendRowHooks - called at the end of legend draw, so plugins
+ * can add rows to the legend table.
+ * $.jqplot.preSeriesInitHooks - called before series is initialized.
+ * $.jqplot.postSeriesInitHooks - called after series is initialized.
+ * $.jqplot.preParseSeriesOptionsHooks - called before series related options
+ * are parsed.
+ * $.jqplot.postParseSeriesOptionsHooks - called after series related options
+ * are parsed.
+ * $.jqplot.eventListenerHooks - called at the end of plot drawing, binds
+ * listeners to the event canvas which lays on top of the grid area.
+ * $.jqplot.preDrawSeriesShadowHooks - called before series shadows are drawn.
+ * $.jqplot.postDrawSeriesShadowHooks - called after series shadows are drawn.
+ *
+ */
+
+ $.jqplot.preInitHooks = [];
+ $.jqplot.postInitHooks = [];
+ $.jqplot.preParseOptionsHooks = [];
+ $.jqplot.postParseOptionsHooks = [];
+ $.jqplot.preDrawHooks = [];
+ $.jqplot.postDrawHooks = [];
+ $.jqplot.preDrawSeriesHooks = [];
+ $.jqplot.postDrawSeriesHooks = [];
+ $.jqplot.preDrawLegendHooks = [];
+ $.jqplot.addLegendRowHooks = [];
+ $.jqplot.preSeriesInitHooks = [];
+ $.jqplot.postSeriesInitHooks = [];
+ $.jqplot.preParseSeriesOptionsHooks = [];
+ $.jqplot.postParseSeriesOptionsHooks = [];
+ $.jqplot.eventListenerHooks = [];
+ $.jqplot.preDrawSeriesShadowHooks = [];
+ $.jqplot.postDrawSeriesShadowHooks = [];
+
+ // A superclass holding some common properties and methods.
+ $.jqplot.ElemContainer = function() {
+ this._elem;
+ this._plotWidth;
+ this._plotHeight;
+ this._plotDimensions = {height:null, width:null};
+ };
+
+ $.jqplot.ElemContainer.prototype.createElement = function(el, offsets, clss, cssopts, attrib) {
+ this._offsets = offsets;
+ var klass = clss || 'jqplot';
+ var elem = document.createElement(el);
+ this._elem = $(elem);
+ this._elem.addClass(klass);
+ this._elem.css(cssopts);
+ this._elem.attr(attrib);
+ // avoid memory leak;
+ elem = null;
+ return this._elem;
+ };
+
+ $.jqplot.ElemContainer.prototype.getWidth = function() {
+ if (this._elem) {
+ return this._elem.outerWidth(true);
+ }
+ else {
+ return null;
+ }
+ };
+
+ $.jqplot.ElemContainer.prototype.getHeight = function() {
+ if (this._elem) {
+ return this._elem.outerHeight(true);
+ }
+ else {
+ return null;
+ }
+ };
+
+ $.jqplot.ElemContainer.prototype.getPosition = function() {
+ if (this._elem) {
+ return this._elem.position();
+ }
+ else {
+ return {top:null, left:null, bottom:null, right:null};
+ }
+ };
+
+ $.jqplot.ElemContainer.prototype.getTop = function() {
+ return this.getPosition().top;
+ };
+
+ $.jqplot.ElemContainer.prototype.getLeft = function() {
+ return this.getPosition().left;
+ };
+
+ $.jqplot.ElemContainer.prototype.getBottom = function() {
+ return this._elem.css('bottom');
+ };
+
+ $.jqplot.ElemContainer.prototype.getRight = function() {
+ return this._elem.css('right');
+ };
+
+
+ /**
+ * Class: Axis
+ * An individual axis object. Cannot be instantiated directly, but created
+ * by the Plot oject. Axis properties can be set or overriden by the
+ * options passed in from the user.
+ *
+ */
+ function Axis(name) {
+ $.jqplot.ElemContainer.call(this);
+ // Group: Properties
+ //
+ // Axes options are specified within an axes object at the top level of the
+ // plot options like so:
+ // > {
+ // > axes: {
+ // > xaxis: {min: 5},
+ // > yaxis: {min: 2, max: 8, numberTicks:4},
+ // > x2axis: {pad: 1.5},
+ // > y2axis: {ticks:[22, 44, 66, 88]}
+ // > }
+ // > }
+ // There are 2 x axes, 'xaxis' and 'x2axis', and
+ // 9 yaxes, 'yaxis', 'y2axis'. 'y3axis', ... Any or all of which may be specified.
+ this.name = name;
+ this._series = [];
+ // prop: show
+ // Wether to display the axis on the graph.
+ this.show = false;
+ // prop: tickRenderer
+ // A class of a rendering engine for creating the ticks labels displayed on the plot,
+ // See <$.jqplot.AxisTickRenderer>.
+ this.tickRenderer = $.jqplot.AxisTickRenderer;
+ // prop: tickOptions
+ // Options that will be passed to the tickRenderer, see <$.jqplot.AxisTickRenderer> options.
+ this.tickOptions = {};
+ // prop: labelRenderer
+ // A class of a rendering engine for creating an axis label.
+ this.labelRenderer = $.jqplot.AxisLabelRenderer;
+ // prop: labelOptions
+ // Options passed to the label renderer.
+ this.labelOptions = {};
+ // prop: label
+ // Label for the axis
+ this.label = null;
+ // prop: showLabel
+ // true to show the axis label.
+ this.showLabel = true;
+ // prop: min
+ // minimum value of the axis (in data units, not pixels).
+ this.min = null;
+ // prop: max
+ // maximum value of the axis (in data units, not pixels).
+ this.max = null;
+ // prop: autoscale
+ // DEPRECATED
+ // the default scaling algorithm produces superior results.
+ this.autoscale = false;
+ // prop: pad
+ // Padding to extend the range above and below the data bounds.
+ // The data range is multiplied by this factor to determine minimum and maximum axis bounds.
+ // A value of 0 will be interpreted to mean no padding, and pad will be set to 1.0.
+ this.pad = 1.2;
+ // prop: padMax
+ // Padding to extend the range above data bounds.
+ // The top of the data range is multiplied by this factor to determine maximum axis bounds.
+ // A value of 0 will be interpreted to mean no padding, and padMax will be set to 1.0.
+ this.padMax = null;
+ // prop: padMin
+ // Padding to extend the range below data bounds.
+ // The bottom of the data range is multiplied by this factor to determine minimum axis bounds.
+ // A value of 0 will be interpreted to mean no padding, and padMin will be set to 1.0.
+ this.padMin = null;
+ // prop: ticks
+ // 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
+ // If no label is specified, the value is formatted into an appropriate label.
+ this.ticks = [];
+ // prop: numberTicks
+ // Desired number of ticks. Default is to compute automatically.
+ this.numberTicks;
+ // prop: tickInterval
+ // number of units between ticks. Mutually exclusive with numberTicks.
+ this.tickInterval;
+ // prop: renderer
+ // A class of a rendering engine that handles tick generation,
+ // scaling input data to pixel grid units and drawing the axis element.
+ this.renderer = $.jqplot.LinearAxisRenderer;
+ // prop: rendererOptions
+ // renderer specific options. See <$.jqplot.LinearAxisRenderer> for options.
+ this.rendererOptions = {};
+ // prop: showTicks
+ // Wether to show the ticks (both marks and labels) or not.
+ // Will not override showMark and showLabel options if specified on the ticks themselves.
+ this.showTicks = true;
+ // prop: showTickMarks
+ // Wether to show the tick marks (line crossing grid) or not.
+ // Overridden by showTicks and showMark option of tick itself.
+ this.showTickMarks = true;
+ // prop: showMinorTicks
+ // Wether or not to show minor ticks. This is renderer dependent.
+ this.showMinorTicks = true;
+ // prop: drawMajorGridlines
+ // True to draw gridlines for major axis ticks.
+ this.drawMajorGridlines = true;
+ // prop: drawMinorGridlines
+ // True to draw gridlines for minor ticks.
+ this.drawMinorGridlines = false;
+ // prop: drawMajorTickMarks
+ // True to draw tick marks for major axis ticks.
+ this.drawMajorTickMarks = true;
+ // prop: drawMinorTickMarks
+ // True to draw tick marks for minor ticks. This is renderer dependent.
+ this.drawMinorTickMarks = true;
+ // prop: useSeriesColor
+ // Use the color of the first series associated with this axis for the
+ // tick marks and line bordering this axis.
+ this.useSeriesColor = false;
+ // prop: borderWidth
+ // width of line stroked at the border of the axis. Defaults
+ // to the width of the grid boarder.
+ this.borderWidth = null;
+ // prop: borderColor
+ // color of the border adjacent to the axis. Defaults to grid border color.
+ this.borderColor = null;
+ // minimum and maximum values on the axis.
+ this._dataBounds = {min:null, max:null};
+ // statistics (min, max, mean) as well as actual data intervals for each series attached to axis.
+ // holds collection of {intervals:[], min:, max:, mean: } objects for each series on axis.
+ this._intervalStats = [];
+ // pixel position from the top left of the min value and max value on the axis.
+ this._offsets = {min:null, max:null};
+ this._ticks=[];
+ this._label = null;
+ // prop: syncTicks
+ // true to try and synchronize tick spacing across multiple axes so that ticks and
+ // grid lines line up. This has an impact on autoscaling algorithm, however.
+ // In general, autoscaling an individual axis will work better if it does not
+ // have to sync ticks.
+ this.syncTicks = null;
+ // prop: tickSpacing
+ // Approximate pixel spacing between ticks on graph. Used during autoscaling.
+ // This number will be an upper bound, actual spacing will be less.
+ this.tickSpacing = 75;
+ // Properties to hold the original values for min, max, ticks, tickInterval and numberTicks
+ // so they can be restored if altered by plugins.
+ this._min = null;
+ this._max = null;
+ this._tickInterval = null;
+ this._numberTicks = null;
+ this.__ticks = null;
+ // hold original user options.
+ this._options = {};
+ }
+
+ Axis.prototype = new $.jqplot.ElemContainer();
+ Axis.prototype.constructor = Axis;
+
+ Axis.prototype.init = function() {
+ this.renderer = new this.renderer();
+ // set the axis name
+ this.tickOptions.axis = this.name;
+ // if showMark or showLabel tick options not specified, use value of axis option.
+ // showTicks overrides showTickMarks.
+ if (this.tickOptions.showMark == null) {
+ this.tickOptions.showMark = this.showTicks;
+ }
+ if (this.tickOptions.showMark == null) {
+ this.tickOptions.showMark = this.showTickMarks;
+ }
+ if (this.tickOptions.showLabel == null) {
+ this.tickOptions.showLabel = this.showTicks;
+ }
+
+ if (this.label == null || this.label == '') {
+ this.showLabel = false;
+ }
+ else {
+ this.labelOptions.label = this.label;
+ }
+ if (this.showLabel == false) {
+ this.labelOptions.show = false;
+ }
+ // set the default padMax, padMin if not specified
+ // special check, if no padding desired, padding
+ // should be set to 1.0
+ if (this.pad == 0) {
+ this.pad = 1.0;
+ }
+ if (this.padMax == 0) {
+ this.padMax = 1.0;
+ }
+ if (this.padMin == 0) {
+ this.padMin = 1.0;
+ }
+ if (this.padMax == null) {
+ this.padMax = (this.pad-1)/2 + 1;
+ }
+ if (this.padMin == null) {
+ this.padMin = (this.pad-1)/2 + 1;
+ }
+ // now that padMin and padMax are correctly set, reset pad in case user has supplied
+ // padMin and/or padMax
+ this.pad = this.padMax + this.padMin - 1;
+ if (this.min != null || this.max != null) {
+ this.autoscale = false;
+ }
+ // if not set, sync ticks for y axes but not x by default.
+ if (this.syncTicks == null && this.name.indexOf('y') > -1) {
+ this.syncTicks = true;
+ }
+ else if (this.syncTicks == null){
+ this.syncTicks = false;
+ }
+ this.renderer.init.call(this, this.rendererOptions);
+
+ };
+
+ Axis.prototype.draw = function(ctx, plot) {
+ // Memory Leaks patch
+ if (this.__ticks) {
+ this.__ticks = null;
+ }
+
+ return this.renderer.draw.call(this, ctx, plot);
+
+ };
+
+ Axis.prototype.set = function() {
+ this.renderer.set.call(this);
+ };
+
+ Axis.prototype.pack = function(pos, offsets) {
+ if (this.show) {
+ this.renderer.pack.call(this, pos, offsets);
+ }
+ // these properties should all be available now.
+ if (this._min == null) {
+ this._min = this.min;
+ this._max = this.max;
+ this._tickInterval = this.tickInterval;
+ this._numberTicks = this.numberTicks;
+ this.__ticks = this._ticks;
+ }
+ };
+
+ // reset the axis back to original values if it has been scaled, zoomed, etc.
+ Axis.prototype.reset = function() {
+ this.renderer.reset.call(this);
+ };
+
+ Axis.prototype.resetScale = function(opts) {
+ $.extend(true, this, {min: null, max: null, numberTicks: null, tickInterval: null, _ticks: [], ticks: []}, opts);
+ this.resetDataBounds();
+ };
+
+ Axis.prototype.resetDataBounds = function() {
+ // Go through all the series attached to this axis and find
+ // the min/max bounds for this axis.
+ var db = this._dataBounds;
+ db.min = null;
+ db.max = null;
+ var l, s, d;
+ // check for when to force min 0 on bar series plots.
+ var doforce = (this.show) ? true : false;
+ for (var i=0; i db.max) || db.max == null) {
+ db.max = d[j][0];
+ }
+ }
+ else {
+ if ((d[j][minyidx] != null && d[j][minyidx] < db.min) || db.min == null) {
+ db.min = d[j][minyidx];
+ }
+ if ((d[j][maxyidx] != null && d[j][maxyidx] > db.max) || db.max == null) {
+ db.max = d[j][maxyidx];
+ }
+ }
+ }
+
+ // Hack to not pad out bottom of bar plots unless user has specified a padding.
+ // every series will have a chance to set doforce to false. once it is set to
+ // false, it cannot be reset to true.
+ // If any series attached to axis is not a bar, wont force 0.
+ if (doforce && s.renderer.constructor !== $.jqplot.BarRenderer) {
+ doforce = false;
+ }
+
+ else if (doforce && this._options.hasOwnProperty('forceTickAt0') && this._options.forceTickAt0 == false) {
+ doforce = false;
+ }
+
+ else if (doforce && s.renderer.constructor === $.jqplot.BarRenderer) {
+ if (s.barDirection == 'vertical' && this.name != 'xaxis' && this.name != 'x2axis') {
+ if (this._options.pad != null || this._options.padMin != null) {
+ doforce = false;
+ }
+ }
+
+ else if (s.barDirection == 'horizontal' && (this.name == 'xaxis' || this.name == 'x2axis')) {
+ if (this._options.pad != null || this._options.padMin != null) {
+ doforce = false;
+ }
+ }
+
+ }
+ }
+ }
+
+ if (doforce && this.renderer.constructor === $.jqplot.LinearAxisRenderer && db.min >= 0) {
+ this.padMin = 1.0;
+ this.forceTickAt0 = true;
+ }
+ };
+
+ /**
+ * Class: Legend
+ * Legend object. Cannot be instantiated directly, but created
+ * by the Plot oject. Legend properties can be set or overriden by the
+ * options passed in from the user.
+ */
+ function Legend(options) {
+ $.jqplot.ElemContainer.call(this);
+ // Group: Properties
+
+ // prop: show
+ // Wether to display the legend on the graph.
+ this.show = false;
+ // prop: location
+ // Placement of the legend. one of the compass directions: nw, n, ne, e, se, s, sw, w
+ this.location = 'ne';
+ // prop: labels
+ // Array of labels to use. By default the renderer will look for labels on the series.
+ // Labels specified in this array will override labels specified on the series.
+ this.labels = [];
+ // prop: showLabels
+ // true to show the label text on the legend.
+ this.showLabels = true;
+ // prop: showSwatch
+ // true to show the color swatches on the legend.
+ this.showSwatches = true;
+ // prop: placement
+ // "insideGrid" places legend inside the grid area of the plot.
+ // "outsideGrid" places the legend outside the grid but inside the plot container,
+ // shrinking the grid to accomodate the legend.
+ // "inside" synonym for "insideGrid",
+ // "outside" places the legend ouside the grid area, but does not shrink the grid which
+ // can cause the legend to overflow the plot container.
+ this.placement = "insideGrid";
+ // prop: xoffset
+ // DEPRECATED. Set the margins on the legend using the marginTop, marginLeft, etc.
+ // properties or via CSS margin styling of the .jqplot-table-legend class.
+ this.xoffset = 0;
+ // prop: yoffset
+ // DEPRECATED. Set the margins on the legend using the marginTop, marginLeft, etc.
+ // properties or via CSS margin styling of the .jqplot-table-legend class.
+ this.yoffset = 0;
+ // prop: border
+ // css spec for the border around the legend box.
+ this.border;
+ // prop: background
+ // css spec for the background of the legend box.
+ this.background;
+ // prop: textColor
+ // css color spec for the legend text.
+ this.textColor;
+ // prop: fontFamily
+ // css font-family spec for the legend text.
+ this.fontFamily;
+ // prop: fontSize
+ // css font-size spec for the legend text.
+ this.fontSize ;
+ // prop: rowSpacing
+ // css padding-top spec for the rows in the legend.
+ this.rowSpacing = '0.5em';
+ // renderer
+ // A class that will create a DOM object for the legend,
+ // see <$.jqplot.TableLegendRenderer>.
+ this.renderer = $.jqplot.TableLegendRenderer;
+ // prop: rendererOptions
+ // renderer specific options passed to the renderer.
+ this.rendererOptions = {};
+ // prop: predraw
+ // Wether to draw the legend before the series or not.
+ // Used with series specific legend renderers for pie, donut, mekko charts, etc.
+ this.preDraw = false;
+ // prop: marginTop
+ // CSS margin for the legend DOM element. This will set an element
+ // CSS style for the margin which will override any style sheet setting.
+ // The default will be taken from the stylesheet.
+ this.marginTop = null;
+ // prop: marginRight
+ // CSS margin for the legend DOM element. This will set an element
+ // CSS style for the margin which will override any style sheet setting.
+ // The default will be taken from the stylesheet.
+ this.marginRight = null;
+ // prop: marginBottom
+ // CSS margin for the legend DOM element. This will set an element
+ // CSS style for the margin which will override any style sheet setting.
+ // The default will be taken from the stylesheet.
+ this.marginBottom = null;
+ // prop: marginLeft
+ // CSS margin for the legend DOM element. This will set an element
+ // CSS style for the margin which will override any style sheet setting.
+ // The default will be taken from the stylesheet.
+ this.marginLeft = null;
+ // prop: escapeHtml
+ // True to escape special characters with their html entity equivalents
+ // in legend text. "<" becomes < and so on, so html tags are not rendered.
+ this.escapeHtml = false;
+ this._series = [];
+
+ $.extend(true, this, options);
+ }
+
+ Legend.prototype = new $.jqplot.ElemContainer();
+ Legend.prototype.constructor = Legend;
+
+ Legend.prototype.setOptions = function(options) {
+ $.extend(true, this, options);
+
+ // Try to emulate deprecated behaviour
+ // if user has specified xoffset or yoffset, copy these to
+ // the margin properties.
+
+ if (this.placement == 'inside') {
+ this.placement = 'insideGrid';
+ }
+
+ if (this.xoffset >0) {
+ if (this.placement == 'insideGrid') {
+ switch (this.location) {
+ case 'nw':
+ case 'w':
+ case 'sw':
+ if (this.marginLeft == null) {
+ this.marginLeft = this.xoffset + 'px';
+ }
+ this.marginRight = '0px';
+ break;
+ case 'ne':
+ case 'e':
+ case 'se':
+ default:
+ if (this.marginRight == null) {
+ this.marginRight = this.xoffset + 'px';
+ }
+ this.marginLeft = '0px';
+ break;
+ }
+ }
+ else if (this.placement == 'outside') {
+ switch (this.location) {
+ case 'nw':
+ case 'w':
+ case 'sw':
+ if (this.marginRight == null) {
+ this.marginRight = this.xoffset + 'px';
+ }
+ this.marginLeft = '0px';
+ break;
+ case 'ne':
+ case 'e':
+ case 'se':
+ default:
+ if (this.marginLeft == null) {
+ this.marginLeft = this.xoffset + 'px';
+ }
+ this.marginRight = '0px';
+ break;
+ }
+ }
+ this.xoffset = 0;
+ }
+
+ if (this.yoffset >0) {
+ if (this.placement == 'outside') {
+ switch (this.location) {
+ case 'sw':
+ case 's':
+ case 'se':
+ if (this.marginTop == null) {
+ this.marginTop = this.yoffset + 'px';
+ }
+ this.marginBottom = '0px';
+ break;
+ case 'ne':
+ case 'n':
+ case 'nw':
+ default:
+ if (this.marginBottom == null) {
+ this.marginBottom = this.yoffset + 'px';
+ }
+ this.marginTop = '0px';
+ break;
+ }
+ }
+ else if (this.placement == 'insideGrid') {
+ switch (this.location) {
+ case 'sw':
+ case 's':
+ case 'se':
+ if (this.marginBottom == null) {
+ this.marginBottom = this.yoffset + 'px';
+ }
+ this.marginTop = '0px';
+ break;
+ case 'ne':
+ case 'n':
+ case 'nw':
+ default:
+ if (this.marginTop == null) {
+ this.marginTop = this.yoffset + 'px';
+ }
+ this.marginBottom = '0px';
+ break;
+ }
+ }
+ this.yoffset = 0;
+ }
+
+ // TO-DO:
+ // Handle case where offsets are < 0.
+ //
+ };
+
+ Legend.prototype.init = function() {
+ this.renderer = new this.renderer();
+ this.renderer.init.call(this, this.rendererOptions);
+ };
+
+ Legend.prototype.draw = function(offsets) {
+ for (var i=0; i<$.jqplot.preDrawLegendHooks.length; i++){
+ $.jqplot.preDrawLegendHooks[i].call(this, offsets);
+ }
+ return this.renderer.draw.call(this, offsets);
+ };
+
+ Legend.prototype.pack = function(offsets) {
+ this.renderer.pack.call(this, offsets);
+ };
+
+ /**
+ * Class: Title
+ * Plot Title object. Cannot be instantiated directly, but created
+ * by the Plot oject. Title properties can be set or overriden by the
+ * options passed in from the user.
+ *
+ * Parameters:
+ * text - text of the title.
+ */
+ function Title(text) {
+ $.jqplot.ElemContainer.call(this);
+ // Group: Properties
+
+ // prop: text
+ // text of the title;
+ this.text = text;
+ // prop: show
+ // wether or not to show the title
+ this.show = true;
+ // prop: fontFamily
+ // css font-family spec for the text.
+ this.fontFamily;
+ // prop: fontSize
+ // css font-size spec for the text.
+ this.fontSize ;
+ // prop: textAlign
+ // css text-align spec for the text.
+ this.textAlign;
+ // prop: textColor
+ // css color spec for the text.
+ this.textColor;
+ // prop: renderer
+ // A class for creating a DOM element for the title,
+ // see <$.jqplot.DivTitleRenderer>.
+ this.renderer = $.jqplot.DivTitleRenderer;
+ // prop: rendererOptions
+ // renderer specific options passed to the renderer.
+ this.rendererOptions = {};
+ // prop: escapeHtml
+ // True to escape special characters with their html entity equivalents
+ // in title text. "<" becomes < and so on, so html tags are not rendered.
+ this.escapeHtml = false;
+ }
+
+ Title.prototype = new $.jqplot.ElemContainer();
+ Title.prototype.constructor = Title;
+
+ Title.prototype.init = function() {
+ this.renderer = new this.renderer();
+ this.renderer.init.call(this, this.rendererOptions);
+ };
+
+ Title.prototype.draw = function(width) {
+ return this.renderer.draw.call(this, width);
+ };
+
+ Title.prototype.pack = function() {
+ this.renderer.pack.call(this);
+ };
+
+
+ /**
+ * Class: Series
+ * An individual data series object. Cannot be instantiated directly, but created
+ * by the Plot oject. Series properties can be set or overriden by the
+ * options passed in from the user.
+ */
+ function Series() {
+ $.jqplot.ElemContainer.call(this);
+ // Group: Properties
+ // Properties will be assigned from a series array at the top level of the
+ // options. If you had two series and wanted to change the color and line
+ // width of the first and set the second to use the secondary y axis with
+ // no shadow and supply custom labels for each:
+ // > {
+ // > series:[
+ // > {color: '#ff4466', lineWidth: 5, label:'good line'},
+ // > {yaxis: 'y2axis', shadow: false, label:'bad line'}
+ // > ]
+ // > }
+
+ // prop: show
+ // wether or not to draw the series.
+ this.show = true;
+ // prop: xaxis
+ // which x axis to use with this series, either 'xaxis' or 'x2axis'.
+ this.xaxis = 'xaxis';
+ this._xaxis;
+ // prop: yaxis
+ // which y axis to use with this series, either 'yaxis' or 'y2axis'.
+ this.yaxis = 'yaxis';
+ this._yaxis;
+ this.gridBorderWidth = 2.0;
+ // prop: renderer
+ // A class of a renderer which will draw the series,
+ // see <$.jqplot.LineRenderer>.
+ this.renderer = $.jqplot.LineRenderer;
+ // prop: rendererOptions
+ // Options to pass on to the renderer.
+ this.rendererOptions = {};
+ this.data = [];
+ this.gridData = [];
+ // prop: label
+ // Line label to use in the legend.
+ this.label = '';
+ // prop: showLabel
+ // true to show label for this series in the legend.
+ this.showLabel = true;
+ // prop: color
+ // css color spec for the series
+ this.color;
+ // prop: negativeColor
+ // css color spec used for filled (area) plots that are filled to zero and
+ // the "useNegativeColors" option is true.
+ this.negativeColor;
+ // prop: lineWidth
+ // width of the line in pixels. May have different meanings depending on renderer.
+ this.lineWidth = 2.5;
+ // prop: lineJoin
+ // Canvas lineJoin style between segments of series.
+ this.lineJoin = 'round';
+ // prop: lineCap
+ // Canvas lineCap style at ends of line.
+ this.lineCap = 'round';
+ // prop: linePattern
+ // line pattern 'dashed', 'dotted', 'solid', some combination
+ // of '-' and '.' characters such as '.-.' or a numerical array like
+ // [draw, skip, draw, skip, ...] such as [1, 10] to draw a dotted line,
+ // [1, 10, 20, 10] to draw a dot-dash line, and so on.
+ this.linePattern = 'solid';
+ this.shadow = true;
+ // prop: shadowAngle
+ // Shadow angle in degrees
+ this.shadowAngle = 45;
+ // prop: shadowOffset
+ // Shadow offset from line in pixels
+ this.shadowOffset = 1.25;
+ // prop: shadowDepth
+ // Number of times shadow is stroked, each stroke offset shadowOffset from the last.
+ this.shadowDepth = 3;
+ // prop: shadowAlpha
+ // Alpha channel transparency of shadow. 0 = transparent.
+ this.shadowAlpha = '0.1';
+ // prop: breakOnNull
+ // Wether line segments should be be broken at null value.
+ // False will join point on either side of line.
+ this.breakOnNull = false;
+ // prop: markerRenderer
+ // A class of a renderer which will draw marker (e.g. circle, square, ...) at the data points,
+ // see <$.jqplot.MarkerRenderer>.
+ this.markerRenderer = $.jqplot.MarkerRenderer;
+ // prop: markerOptions
+ // renderer specific options to pass to the markerRenderer,
+ // see <$.jqplot.MarkerRenderer>.
+ this.markerOptions = {};
+ // prop: showLine
+ // wether to actually draw the line or not. Series will still be renderered, even if no line is drawn.
+ this.showLine = true;
+ // prop: showMarker
+ // wether or not to show the markers at the data points.
+ this.showMarker = true;
+ // prop: index
+ // 0 based index of this series in the plot series array.
+ this.index;
+ // prop: fill
+ // true or false, wether to fill under lines or in bars.
+ // May not be implemented in all renderers.
+ this.fill = false;
+ // prop: fillColor
+ // CSS color spec to use for fill under line. Defaults to line color.
+ this.fillColor;
+ // prop: fillAlpha
+ // Alpha transparency to apply to the fill under the line.
+ // Use this to adjust alpha separate from fill color.
+ this.fillAlpha;
+ // prop: fillAndStroke
+ // If true will stroke the line (with color this.color) as well as fill under it.
+ // Applies only when fill is true.
+ this.fillAndStroke = false;
+ // prop: disableStack
+ // true to not stack this series with other series in the plot.
+ // To render properly, non-stacked series must come after any stacked series
+ // in the plot's data series array. So, the plot's data series array would look like:
+ // > [stackedSeries1, stackedSeries2, ..., nonStackedSeries1, nonStackedSeries2, ...]
+ // disableStack will put a gap in the stacking order of series, and subsequent
+ // stacked series will not fill down through the non-stacked series and will
+ // most likely not stack properly on top of the non-stacked series.
+ this.disableStack = false;
+ // _stack is set by the Plot if the plot is a stacked chart.
+ // will stack lines or bars on top of one another to build a "mountain" style chart.
+ // May not be implemented in all renderers.
+ this._stack = false;
+ // prop: neighborThreshold
+ // how close or far (in pixels) the cursor must be from a point marker to detect the point.
+ this.neighborThreshold = 4;
+ // prop: fillToZero
+ // true will force bar and filled series to fill toward zero on the fill Axis.
+ this.fillToZero = false;
+ // prop: fillToValue
+ // fill a filled series to this value on the fill axis.
+ // Works in conjunction with fillToZero, so that must be true.
+ this.fillToValue = 0;
+ // prop: fillAxis
+ // Either 'x' or 'y'. Which axis to fill the line toward if fillToZero is true.
+ // 'y' means fill up/down to 0 on the y axis for this series.
+ this.fillAxis = 'y';
+ // prop: useNegativeColors
+ // true to color negative values differently in filled and bar charts.
+ this.useNegativeColors = true;
+ this._stackData = [];
+ // _plotData accounts for stacking. If plots not stacked, _plotData and data are same. If
+ // stacked, _plotData is accumulation of stacking data.
+ this._plotData = [];
+ // _plotValues hold the individual x and y values that will be plotted for this series.
+ this._plotValues = {x:[], y:[]};
+ // statistics about the intervals between data points. Used for auto scaling.
+ this._intervals = {x:{}, y:{}};
+ // data from the previous series, for stacked charts.
+ this._prevPlotData = [];
+ this._prevGridData = [];
+ this._stackAxis = 'y';
+ this._primaryAxis = '_xaxis';
+ // give each series a canvas to draw on. This should allow for redrawing speedups.
+ this.canvas = new $.jqplot.GenericCanvas();
+ this.shadowCanvas = new $.jqplot.GenericCanvas();
+ this.plugins = {};
+ // sum of y values in this series.
+ this._sumy = 0;
+ this._sumx = 0;
+ this._type = '';
+ }
+
+ Series.prototype = new $.jqplot.ElemContainer();
+ Series.prototype.constructor = Series;
+
+ Series.prototype.init = function(index, gridbw, plot) {
+ // weed out any null values in the data.
+ this.index = index;
+ this.gridBorderWidth = gridbw;
+ var d = this.data;
+ var temp = [], i;
+ for (i=0; i.
+ this.renderer = $.jqplot.CanvasGridRenderer;
+ // prop: rendererOptions
+ // Options to pass on to the renderer,
+ // see <$.jqplot.CanvasGridRenderer>.
+ this.rendererOptions = {};
+ this._offsets = {top:null, bottom:null, left:null, right:null};
+ }
+
+ Grid.prototype = new $.jqplot.ElemContainer();
+ Grid.prototype.constructor = Grid;
+
+ Grid.prototype.init = function() {
+ this.renderer = new this.renderer();
+ this.renderer.init.call(this, this.rendererOptions);
+ };
+
+ Grid.prototype.createElement = function(offsets,plot) {
+ this._offsets = offsets;
+ return this.renderer.createElement.call(this, plot);
+ };
+
+ Grid.prototype.draw = function() {
+ this.renderer.draw.call(this);
+ };
+
+ $.jqplot.GenericCanvas = function() {
+ $.jqplot.ElemContainer.call(this);
+ this._ctx;
+ };
+
+ $.jqplot.GenericCanvas.prototype = new $.jqplot.ElemContainer();
+ $.jqplot.GenericCanvas.prototype.constructor = $.jqplot.GenericCanvas;
+
+ $.jqplot.GenericCanvas.prototype.createElement = function(offsets, clss, plotDimensions, plot) {
+ this._offsets = offsets;
+ var klass = 'jqplot';
+ if (clss != undefined) {
+ klass = clss;
+ }
+ var elem;
+
+ elem = plot.canvasManager.getCanvas();
+
+ // if new plotDimensions supplied, use them.
+ if (plotDimensions != null) {
+ this._plotDimensions = plotDimensions;
+ }
+
+ elem.width = this._plotDimensions.width - this._offsets.left - this._offsets.right;
+ elem.height = this._plotDimensions.height - this._offsets.top - this._offsets.bottom;
+ this._elem = $(elem);
+ this._elem.css({ position: 'absolute', left: this._offsets.left, top: this._offsets.top });
+
+ this._elem.addClass(klass);
+
+ elem = plot.canvasManager.initCanvas(elem);
+
+ elem = null;
+ return this._elem;
+ };
+
+ $.jqplot.GenericCanvas.prototype.setContext = function() {
+ this._ctx = this._elem.get(0).getContext("2d");
+ return this._ctx;
+ };
+
+ // Memory Leaks patch
+ $.jqplot.GenericCanvas.prototype.resetCanvas = function() {
+ if (this._elem) {
+ if ($.jqplot.use_excanvas && window.G_vmlCanvasManager.uninitElement !== undefined) {
+ window.G_vmlCanvasManager.uninitElement(this._elem.get(0));
+ }
+
+ //this._elem.remove();
+ this._elem.emptyForce();
+ }
+
+ this._ctx = null;
+ };
+
+ $.jqplot.HooksManager = function () {
+ this.hooks =[];
+ this.args = [];
+ };
+
+ $.jqplot.HooksManager.prototype.addOnce = function(fn, args) {
+ args = args || [];
+ var havehook = false;
+ for (var i=0, l=this.hooks.length; i {
+ // > axesDefaults:{min:0},
+ // > series:[{color:'#6633dd'}],
+ // > title: 'A Plot'
+ // > }
+ //
+
+ // prop: animate
+ // True to animate the series on initial plot draw (renderer dependent).
+ // Actual animation functionality must be supported in the renderer.
+ this.animate = false;
+ // prop: animateReplot
+ // True to animate series after a call to the replot() method.
+ // Use with caution! Replots can happen very frequently under
+ // certain circumstances (e.g. resizing, dragging points) and
+ // animation in these situations can cause problems.
+ this.animateReplot = false;
+ // prop: axes
+ // up to 4 axes are supported, each with it's own options,
+ // See for axis specific options.
+ this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis'), yMidAxis: new Axis('yMidAxis')};
+ this.baseCanvas = new $.jqplot.GenericCanvas();
+ // true to intercept right click events and fire a 'jqplotRightClick' event.
+ // this will also block the context menu.
+ this.captureRightClick = false;
+ // prop: data
+ // user's data. Data should *NOT* be specified in the options object,
+ // but be passed in as the second argument to the $.jqplot() function.
+ // The data property is described here soley for reference.
+ // The data should be in the form of an array of 2D or 1D arrays like
+ // > [ [[x1, y1], [x2, y2],...], [y1, y2, ...] ].
+ this.data = [];
+ // prop: dataRenderer
+ // A callable which can be used to preprocess data passed into the plot.
+ // Will be called with 2 arguments, the plot data and a reference to the plot.
+ this.dataRenderer;
+ // prop: dataRendererOptions
+ // Options that will be passed to the dataRenderer.
+ // Can be of any type.
+ this.dataRendererOptions;
+ this.defaults = {
+ // prop: axesDefaults
+ // default options that will be applied to all axes.
+ // see for axes options.
+ axesDefaults: {},
+ axes: {xaxis:{}, yaxis:{}, x2axis:{}, y2axis:{}, y3axis:{}, y4axis:{}, y5axis:{}, y6axis:{}, y7axis:{}, y8axis:{}, y9axis:{}, yMidAxis:{}},
+ // prop: seriesDefaults
+ // default options that will be applied to all series.
+ // see for series options.
+ seriesDefaults: {},
+ series:[]
+ };
+ // prop: defaultAxisStart
+ // 1-D data series are internally converted into 2-D [x,y] data point arrays
+ // by jqPlot. This is the default starting value for the missing x or y value.
+ // The added data will be a monotonically increasing series (e.g. [1, 2, 3, ...])
+ // starting at this value.
+ this.defaultAxisStart = 1;
+ // this.doCustomEventBinding = true;
+ // prop: drawIfHidden
+ // True to execute the draw method even if the plot target is hidden.
+ // Generally, this should be false. Most plot elements will not be sized/
+ // positioned correclty if renderered into a hidden container. To render into
+ // a hidden container, call the replot method when the container is shown.
+ this.drawIfHidden = false;
+ this.eventCanvas = new $.jqplot.GenericCanvas();
+ // prop: fillBetween
+ // Fill between 2 line series in a plot.
+ // Options object:
+ // {
+ // series1: first index (0 based) of series in fill
+ // series2: second index (0 based) of series in fill
+ // color: color of fill [default fillColor of series1]
+ // baseSeries: fill will be drawn below this series (0 based index)
+ // fill: false to turn off fill [default true].
+ // }
+ this.fillBetween = {
+ series1: null,
+ series2: null,
+ color: null,
+ baseSeries: 0,
+ fill: true
+ };
+ // prop; fontFamily
+ // css spec for the font-family attribute. Default for the entire plot.
+ this.fontFamily;
+ // prop: fontSize
+ // css spec for the font-size attribute. Default for the entire plot.
+ this.fontSize;
+ // prop: grid
+ // See for grid specific options.
+ this.grid = new Grid();
+ // prop: legend
+ // see <$.jqplot.TableLegendRenderer>
+ this.legend = new Legend();
+ // prop: noDataIndicator
+ // Options to set up a mock plot with a data loading indicator if no data is specified.
+ this.negativeSeriesColors = $.jqplot.config.defaultNegativeColors;
+ this.noDataIndicator = {
+ show: false,
+ indicator: 'Loading Data...',
+ axes: {
+ xaxis: {
+ min: 0,
+ max: 10,
+ tickInterval: 2,
+ show: true
+ },
+ yaxis: {
+ min: 0,
+ max: 12,
+ tickInterval: 3,
+ show: true
+ }
+ }
+ };
+ // container to hold all of the merged options. Convienence for plugins.
+ this.options = {};
+ this.previousSeriesStack = [];
+ // Namespece to hold plugins. Generally non-renderer plugins add themselves to here.
+ this.plugins = {};
+ // prop: series
+ // Array of series object options.
+ // see for series specific options.
+ this.series = [];
+ // array of series indicies. Keep track of order
+ // which series canvases are displayed, lowest
+ // to highest, back to front.
+ this.seriesStack = [];
+ // prop: seriesColors
+ // Ann array of CSS color specifications that will be applied, in order,
+ // to the series in the plot. Colors will wrap around so, if their
+ // are more series than colors, colors will be reused starting at the
+ // beginning. For pie charts, this specifies the colors of the slices.
+ this.seriesColors = $.jqplot.config.defaultColors;
+ // prop: sortData
+ // false to not sort the data passed in by the user.
+ // Many bar, stakced and other graphs as well as many plugins depend on
+ // having sorted data.
+ this.sortData = true;
+ // prop: stackSeries
+ // true or false, creates a stack or "mountain" plot.
+ // Not all series renderers may implement this option.
+ this.stackSeries = false;
+ // a shortcut for axis syncTicks options. Not implemented yet.
+ this.syncXTicks = true;
+ // a shortcut for axis syncTicks options. Not implemented yet.
+ this.syncYTicks = true;
+ // the jquery object for the dom target.
+ this.target = null;
+ // The id of the dom element to render the plot into
+ this.targetId = null;
+ // prop textColor
+ // css spec for the css color attribute. Default for the entire plot.
+ this.textColor;
+ // prop: title
+ // Title object. See for specific options. As a shortcut, you
+ // can specify the title option as just a string like: title: 'My Plot'
+ // and this will create a new title object with the specified text.
+ this.title = new Title();
+ // Count how many times the draw method has been called while the plot is visible.
+ // Mostly used to test if plot has never been dran (=0), has been successfully drawn
+ // into a visible container once (=1) or draw more than once into a visible container.
+ // Can use this in tests to see if plot has been visibly drawn at least one time.
+ // After plot has been visibly drawn once, it generally doesn't need redrawn if its
+ // container is hidden and shown.
+ this._drawCount = 0;
+ // sum of y values for all series in plot.
+ // used in mekko chart.
+ this._sumy = 0;
+ this._sumx = 0;
+ // array to hold the cumulative stacked series data.
+ // used to ajust the individual series data, which won't have access to other
+ // series data.
+ this._stackData = [];
+ // array that holds the data to be plotted. This will be the series data
+ // merged with the the appropriate data from _stackData according to the stackAxis.
+ this._plotData = [];
+ this._width = null;
+ this._height = null;
+ this._plotDimensions = {height:null, width:null};
+ this._gridPadding = {top:null, right:null, bottom:null, left:null};
+ this._defaultGridPadding = {top:10, right:10, bottom:23, left:10};
+
+ this._addDomReference = $.jqplot.config.addDomReference;
+
+ this.preInitHooks = new $.jqplot.HooksManager();
+ this.postInitHooks = new $.jqplot.HooksManager();
+ this.preParseOptionsHooks = new $.jqplot.HooksManager();
+ this.postParseOptionsHooks = new $.jqplot.HooksManager();
+ this.preDrawHooks = new $.jqplot.HooksManager();
+ this.postDrawHooks = new $.jqplot.HooksManager();
+ this.preDrawSeriesHooks = new $.jqplot.HooksManager();
+ this.postDrawSeriesHooks = new $.jqplot.HooksManager();
+ this.preDrawLegendHooks = new $.jqplot.HooksManager();
+ this.addLegendRowHooks = new $.jqplot.HooksManager();
+ this.preSeriesInitHooks = new $.jqplot.HooksManager();
+ this.postSeriesInitHooks = new $.jqplot.HooksManager();
+ this.preParseSeriesOptionsHooks = new $.jqplot.HooksManager();
+ this.postParseSeriesOptionsHooks = new $.jqplot.HooksManager();
+ this.eventListenerHooks = new $.jqplot.EventListenerManager();
+ this.preDrawSeriesShadowHooks = new $.jqplot.HooksManager();
+ this.postDrawSeriesShadowHooks = new $.jqplot.HooksManager();
+
+ this.colorGenerator = new $.jqplot.ColorGenerator();
+ this.negativeColorGenerator = new $.jqplot.ColorGenerator();
+
+ this.canvasManager = new $.jqplot.CanvasManager();
+
+ this.themeEngine = new $.jqplot.ThemeEngine();
+
+ var seriesColorsIndex = 0;
+
+ // Group: methods
+ //
+ // method: init
+ // sets the plot target, checks data and applies user
+ // options to plot.
+ this.init = function(target, data, options) {
+ options = options || {};
+ for (var i=0; i<$.jqplot.preInitHooks.length; i++) {
+ $.jqplot.preInitHooks[i].call(this, target, data, options);
+ }
+
+ for (var i=0; i');
+ this.target.append(temp);
+ temp.height(eh);
+ temp.width(ew);
+ temp.css('top', this.eventCanvas._offsets.top);
+ temp.css('left', this.eventCanvas._offsets.left);
+
+ var temp2 = $('');
+ temp.append(temp2);
+ temp2.html(this.noDataIndicator.indicator);
+ var th = temp2.height();
+ var tw = temp2.width();
+ temp2.height(th);
+ temp2.width(tw);
+ temp2.css('top', (eh - th)/2 + 'px');
+ });
+
+ }
+ }
+
+ this.data = data;
+
+ this.parseOptions(options);
+
+ if (this.textColor) {
+ this.target.css('color', this.textColor);
+ }
+ if (this.fontFamily) {
+ this.target.css('font-family', this.fontFamily);
+ }
+ if (this.fontSize) {
+ this.target.css('font-size', this.fontSize);
+ }
+
+ this.title.init();
+ this.legend.init();
+ this._sumy = 0;
+ this._sumx = 0;
+ for (var i=0; i0) {
+ series._prevPlotData = this.series[index-1]._plotData;
+ }
+ series._sumy = 0;
+ series._sumx = 0;
+ for (i=series.data.length-1; i>-1; i--) {
+ series._sumy += series.data[i][1];
+ series._sumx += series.data[i][0];
+ }
+ };
+
+ // function to safely return colors from the color array and wrap around at the end.
+ this.getNextSeriesColor = (function(t) {
+ var idx = 0;
+ var sc = t.seriesColors;
+
+ return function () {
+ if (idx < sc.length) {
+ return sc[idx++];
+ }
+ else {
+ idx = 0;
+ return sc[idx++];
+ }
+ };
+ })(this);
+
+ this.parseOptions = function(options){
+ for (var i=0; i= 0 && widthAdj >= 0) {
+ gridPadding.top += heightAdj;
+ gridPadding.bottom += heightAdj;
+ gridPadding.left += widthAdj;
+ gridPadding.right += widthAdj;
+ }
+ }
+ var arr = ['top', 'bottom', 'left', 'right'];
+ for (var n in arr) {
+ if (this._gridPadding[arr[n]] == null && gridPadding[arr[n]] > 0) {
+ this._gridPadding[arr[n]] = gridPadding[arr[n]];
+ }
+ else if (this._gridPadding[arr[n]] == null) {
+ this._gridPadding[arr[n]] = this._defaultGridPadding[arr[n]];
+ }
+ }
+
+ var legendPadding = (this.legend.placement == 'outsideGrid') ? {top:this.title.getHeight(), left: 0, right: 0, bottom: 0} : this._gridPadding;
+
+ ax.xaxis.pack({position:'absolute', bottom:this._gridPadding.bottom - ax.xaxis.getHeight(), left:0, width:this._width}, {min:this._gridPadding.left, max:this._width - this._gridPadding.right});
+ ax.yaxis.pack({position:'absolute', top:0, left:this._gridPadding.left - ax.yaxis.getWidth(), height:this._height}, {min:this._height - this._gridPadding.bottom, max: this._gridPadding.top});
+ ax.x2axis.pack({position:'absolute', top:this._gridPadding.top - ax.x2axis.getHeight(), left:0, width:this._width}, {min:this._gridPadding.left, max:this._width - this._gridPadding.right});
+ for (i=8; i>0; i--) {
+ ax[ra[i-1]].pack({position:'absolute', top:0, right:this._gridPadding.right - rapad[i-1]}, {min:this._height - this._gridPadding.bottom, max: this._gridPadding.top});
+ }
+ var ltemp = (this._width - this._gridPadding.left - this._gridPadding.right)/2.0 + this._gridPadding.left - ax.yMidAxis.getWidth()/2.0;
+ ax.yMidAxis.pack({position:'absolute', top:0, left:ltemp, zIndex:9, textAlign: 'center'}, {min:this._height - this._gridPadding.bottom, max: this._gridPadding.top});
+
+ this.target.append(this.grid.createElement(this._gridPadding, this));
+ this.grid.draw();
+
+ var series = this.series;
+ var seriesLength = series.length;
+ // put the shadow canvases behind the series canvases so shadows don't overlap on stacked bars.
+ for (i=0, l=seriesLength; i sid1) ? sid2 : sid1;
+
+ var series1 = this.series[id1];
+ var series2 = this.series[id2];
+
+ if (series2.renderer.smooth) {
+ var tempgd = series2.renderer._smoothedData.slice(0).reverse();
+ }
+ else {
+ var tempgd = series2.gridData.slice(0).reverse();
+ }
+
+ if (series1.renderer.smooth) {
+ var gd = series1.renderer._smoothedData.concat(tempgd);
+ }
+ else {
+ var gd = series1.gridData.concat(tempgd);
+ }
+
+ var color = (fb.color !== null) ? fb.color : this.series[sid1].fillColor;
+ var baseSeries = (fb.baseSeries !== null) ? fb.baseSeries : id1;
+
+ // now apply a fill to the shape on the lower series shadow canvas,
+ // so it is behind both series.
+ var sr = this.series[baseSeries].renderer.shapeRenderer;
+ var opts = {fillStyle: color, fill: true, closePath: true};
+ sr.draw(series1.shadowCanvas._ctx, gd, opts);
+ };
+
+ this.bindCustomEvents = function() {
+ this.eventCanvas._elem.bind('click', {plot:this}, this.onClick);
+ this.eventCanvas._elem.bind('dblclick', {plot:this}, this.onDblClick);
+ this.eventCanvas._elem.bind('mousedown', {plot:this}, this.onMouseDown);
+ this.eventCanvas._elem.bind('mousemove', {plot:this}, this.onMouseMove);
+ this.eventCanvas._elem.bind('mouseenter', {plot:this}, this.onMouseEnter);
+ this.eventCanvas._elem.bind('mouseleave', {plot:this}, this.onMouseLeave);
+ if (this.captureRightClick) {
+ this.eventCanvas._elem.bind('mouseup', {plot:this}, this.onRightClick);
+ this.eventCanvas._elem.get(0).oncontextmenu = function() {
+ return false;
+ };
+ }
+ else {
+ this.eventCanvas._elem.bind('mouseup', {plot:this}, this.onMouseUp);
+ }
+ };
+
+ function getEventPosition(ev) {
+ var plot = ev.data.plot;
+ var go = plot.eventCanvas._elem.offset();
+ var gridPos = {x:ev.pageX - go.left, y:ev.pageY - go.top};
+ var dataPos = {xaxis:null, yaxis:null, x2axis:null, y2axis:null, y3axis:null, y4axis:null, y5axis:null, y6axis:null, y7axis:null, y8axis:null, y9axis:null, yMidAxis:null};
+ var an = ['xaxis', 'yaxis', 'x2axis', 'y2axis', 'y3axis', 'y4axis', 'y5axis', 'y6axis', 'y7axis', 'y8axis', 'y9axis', 'yMidAxis'];
+ var ax = plot.axes;
+ var n, axis;
+ for (n=11; n>0; n--) {
+ axis = an[n-1];
+ if (ax[axis].show) {
+ dataPos[axis] = ax[axis].series_p2u(gridPos[axis.charAt(0)]);
+ }
+ }
+
+ return {offsets:go, gridPos:gridPos, dataPos:dataPos};
+ }
+
+
+ // function to check if event location is over a area area
+ function checkIntersection(gridpos, plot) {
+ var series = plot.series;
+ var i, j, k, s, r, x, y, theta, sm, sa, minang, maxang;
+ var d0, d, p, pp, points, bw;
+ var threshold, t;
+ for (k=plot.seriesStack.length-1; k>=0; k--) {
+ i = plot.seriesStack[k];
+ s = series[i];
+ switch (s.renderer.constructor) {
+ case $.jqplot.BarRenderer:
+ case $.jqplot.PyramidRenderer:
+ x = gridpos.x;
+ y = gridpos.y;
+ for (j=0; jpoints[0][0] && xpoints[2][1] && y 0 && -y >= 0) {
+ theta = 2*Math.PI - Math.atan(-y/x);
+ }
+ else if (x > 0 && -y < 0) {
+ theta = -Math.atan(-y/x);
+ }
+ else if (x < 0) {
+ theta = Math.PI - Math.atan(-y/x);
+ }
+ else if (x == 0 && -y > 0) {
+ theta = 3*Math.PI/2;
+ }
+ else if (x == 0 && -y < 0) {
+ theta = Math.PI/2;
+ }
+ else if (x == 0 && y == 0) {
+ theta = 0;
+ }
+ if (sa) {
+ theta -= sa;
+ if (theta < 0) {
+ theta += 2*Math.PI;
+ }
+ else if (theta > 2*Math.PI) {
+ theta -= 2*Math.PI;
+ }
+ }
+
+ sm = s.sliceMargin/180*Math.PI;
+ if (r < s._radius && r > s._innerRadius) {
+ for (j=0; j0) ? s.gridData[j-1][1]+sm : sm;
+ maxang = s.gridData[j][1];
+ if (theta > minang && theta < maxang) {
+ return {seriesIndex:s.index, pointIndex:j, gridData:s.gridData[j], data:s.data[j]};
+ }
+ }
+ }
+ break;
+
+ case $.jqplot.PieRenderer:
+ sa = s.startAngle/180*Math.PI;
+ x = gridpos.x - s._center[0];
+ y = gridpos.y - s._center[1];
+ r = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
+ if (x > 0 && -y >= 0) {
+ theta = 2*Math.PI - Math.atan(-y/x);
+ }
+ else if (x > 0 && -y < 0) {
+ theta = -Math.atan(-y/x);
+ }
+ else if (x < 0) {
+ theta = Math.PI - Math.atan(-y/x);
+ }
+ else if (x == 0 && -y > 0) {
+ theta = 3*Math.PI/2;
+ }
+ else if (x == 0 && -y < 0) {
+ theta = Math.PI/2;
+ }
+ else if (x == 0 && y == 0) {
+ theta = 0;
+ }
+ if (sa) {
+ theta -= sa;
+ if (theta < 0) {
+ theta += 2*Math.PI;
+ }
+ else if (theta > 2*Math.PI) {
+ theta -= 2*Math.PI;
+ }
+ }
+
+ sm = s.sliceMargin/180*Math.PI;
+ if (r < s._radius) {
+ for (j=0; j0) ? s.gridData[j-1][1]+sm : sm;
+ maxang = s.gridData[j][1];
+ if (theta > minang && theta < maxang) {
+ return {seriesIndex:s.index, pointIndex:j, gridData:s.gridData[j], data:s.data[j]};
+ }
+ }
+ }
+ break;
+
+ case $.jqplot.BubbleRenderer:
+ x = gridpos.x;
+ y = gridpos.y;
+ var ret = null;
+
+ if (s.show) {
+ for (var j=0; j= cv[0][1] && y <= cv[3][1] && x >= lex[0] && x <= rex[0]) {
+ return {seriesIndex:s.index, pointIndex:j, gridData:null, data:s.data[j]};
+ }
+ }
+ break;
+
+ case $.jqplot.LineRenderer:
+ x = gridpos.x;
+ y = gridpos.y;
+ r = s.renderer;
+ if (s.show) {
+ if ((s.fill || (s.renderer.bands.show && s.renderer.bands.fill)) && (!plot.plugins.highlighter || !plot.plugins.highlighter.show)) {
+ // first check if it is in bounding box
+ var inside = false;
+ if (x>s._boundingBox[0][0] && xs._boundingBox[1][1] && y= y || vertex2[1] < y && vertex1[1] >= y) {
+ if (vertex1[0] + (y - vertex1[1]) / (vertex2[1] - vertex1[1]) * (vertex2[0] - vertex1[0]) < x) {
+ inside = !inside;
+ }
+ }
+
+ j = ii;
+ }
+ }
+ if (inside) {
+ return {seriesIndex:i, pointIndex:null, gridData:s.gridData, data:s.data, points:s._areaPoints};
+ }
+ break;
+
+ }
+
+ else {
+ t = s.markerRenderer.size/2+s.neighborThreshold;
+ threshold = (t > 0) ? t : 0;
+ for (var j=0; j= p[0]-r._bodyWidth/2 && x <= p[0]+r._bodyWidth/2 && y >= yp(s.data[j][2]) && y <= yp(s.data[j][3])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ // if an open hi low close chart
+ else if (!r.hlc){
+ var yp = s._yaxis.series_u2p;
+ if (x >= p[0]-r._tickLength && x <= p[0]+r._tickLength && y >= yp(s.data[j][2]) && y <= yp(s.data[j][3])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ // a hi low close chart
+ else {
+ var yp = s._yaxis.series_u2p;
+ if (x >= p[0]-r._tickLength && x <= p[0]+r._tickLength && y >= yp(s.data[j][1]) && y <= yp(s.data[j][2])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+
+ }
+ else if (p[0] != null && p[1] != null){
+ d = Math.sqrt( (x-p[0]) * (x-p[0]) + (y-p[1]) * (y-p[1]) );
+ if (d <= threshold && (d <= d0 || d0 == null)) {
+ d0 = d;
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ }
+ }
+ }
+ break;
+
+ default:
+ x = gridpos.x;
+ y = gridpos.y;
+ r = s.renderer;
+ if (s.show) {
+ t = s.markerRenderer.size/2+s.neighborThreshold;
+ threshold = (t > 0) ? t : 0;
+ for (var j=0; j= p[0]-r._bodyWidth/2 && x <= p[0]+r._bodyWidth/2 && y >= yp(s.data[j][2]) && y <= yp(s.data[j][3])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ // if an open hi low close chart
+ else if (!r.hlc){
+ var yp = s._yaxis.series_u2p;
+ if (x >= p[0]-r._tickLength && x <= p[0]+r._tickLength && y >= yp(s.data[j][2]) && y <= yp(s.data[j][3])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ // a hi low close chart
+ else {
+ var yp = s._yaxis.series_u2p;
+ if (x >= p[0]-r._tickLength && x <= p[0]+r._tickLength && y >= yp(s.data[j][1]) && y <= yp(s.data[j][2])) {
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+
+ }
+ else {
+ d = Math.sqrt( (x-p[0]) * (x-p[0]) + (y-p[1]) * (y-p[1]) );
+ if (d <= threshold && (d <= d0 || d0 == null)) {
+ d0 = d;
+ return {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]};
+ }
+ }
+ }
+ }
+ break;
+ }
+ }
+
+ return null;
+ }
+
+
+
+ this.onClick = function(ev) {
+ // Event passed in is normalized and will have data attribute.
+ // Event passed out is unnormalized.
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var neighbor = checkIntersection(positions.gridPos, p);
+ var evt = jQuery.Event('jqplotClick');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ };
+
+ this.onDblClick = function(ev) {
+ // Event passed in is normalized and will have data attribute.
+ // Event passed out is unnormalized.
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var neighbor = checkIntersection(positions.gridPos, p);
+ var evt = jQuery.Event('jqplotDblClick');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ };
+
+ this.onMouseDown = function(ev) {
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var neighbor = checkIntersection(positions.gridPos, p);
+ var evt = jQuery.Event('jqplotMouseDown');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ };
+
+ this.onMouseUp = function(ev) {
+ var positions = getEventPosition(ev);
+ var evt = jQuery.Event('jqplotMouseUp');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, null, ev.data.plot]);
+ };
+
+ this.onRightClick = function(ev) {
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var neighbor = checkIntersection(positions.gridPos, p);
+ if (p.captureRightClick) {
+ if (ev.which == 3) {
+ var evt = jQuery.Event('jqplotRightClick');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ }
+ else {
+ var evt = jQuery.Event('jqplotMouseUp');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ }
+ }
+ };
+
+ this.onMouseMove = function(ev) {
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var neighbor = checkIntersection(positions.gridPos, p);
+ var evt = jQuery.Event('jqplotMouseMove');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, neighbor, p]);
+ };
+
+ this.onMouseEnter = function(ev) {
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var evt = jQuery.Event('jqplotMouseEnter');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ evt.relatedTarget = ev.relatedTarget;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, null, p]);
+ };
+
+ this.onMouseLeave = function(ev) {
+ var positions = getEventPosition(ev);
+ var p = ev.data.plot;
+ var evt = jQuery.Event('jqplotMouseLeave');
+ evt.pageX = ev.pageX;
+ evt.pageY = ev.pageY;
+ evt.relatedTarget = ev.relatedTarget;
+ $(this).trigger(evt, [positions.gridPos, positions.dataPos, null, p]);
+ };
+
+ // method: drawSeries
+ // Redraws all or just one series on the plot. No axis scaling
+ // is performed and no other elements on the plot are redrawn.
+ // options is an options object to pass on to the series renderers.
+ // It can be an empty object {}. idx is the series index
+ // to redraw if only one series is to be redrawn.
+ this.drawSeries = function(options, idx){
+ var i, series, ctx;
+ // if only one argument passed in and it is a number, use it ad idx.
+ idx = (typeof(options) === "number" && idx == null) ? options : idx;
+ options = (typeof(options) === "object") ? options : {};
+ // draw specified series
+ if (idx != undefined) {
+ series = this.series[idx];
+ ctx = series.shadowCanvas._ctx;
+ ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
+ series.drawShadow(ctx, options, this);
+ ctx = series.canvas._ctx;
+ ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
+ series.draw(ctx, options, this);
+ if (series.renderer.constructor == $.jqplot.BezierCurveRenderer) {
+ if (idx < this.series.length - 1) {
+ this.drawSeries(idx+1);
+ }
+ }
+ }
+
+ else {
+ // if call series drawShadow method first, in case all series shadows
+ // should be drawn before any series. This will ensure, like for
+ // stacked bar plots, that shadows don't overlap series.
+ for (i=0; i 660) ? newrgb[j] * 0.85 : 0.73 * newrgb[j] + 90;
+ newrgb[j] = parseInt(newrgb[j], 10);
+ (newrgb[j] > 255) ? 255 : newrgb[j];
+ }
+ // newrgb[3] = (rgba[3] > 0.4) ? rgba[3] * 0.4 : rgba[3] * 1.5;
+ // newrgb[3] = (rgba[3] > 0.5) ? 0.8 * rgba[3] - .1 : rgba[3] + 0.2;
+ newrgb[3] = 0.3 + 0.35 * rgba[3];
+ ret.push('rgba('+newrgb[0]+','+newrgb[1]+','+newrgb[2]+','+newrgb[3]+')');
+ }
+ }
+ else {
+ var rgba = $.jqplot.getColorComponents(colors);
+ var newrgb = [rgba[0], rgba[1], rgba[2]];
+ var sum = newrgb[0] + newrgb[1] + newrgb[2];
+ for (var j=0; j<3; j++) {
+ // when darkening, lowest color component can be is 60.
+ // newrgb[j] = (sum > 570) ? newrgb[j] * 0.8 : newrgb[j] + 0.3 * (255 - newrgb[j]);
+ // newrgb[j] = parseInt(newrgb[j], 10);
+ newrgb[j] = (sum > 660) ? newrgb[j] * 0.85 : 0.73 * newrgb[j] + 90;
+ newrgb[j] = parseInt(newrgb[j], 10);
+ (newrgb[j] > 255) ? 255 : newrgb[j];
+ }
+ // newrgb[3] = (rgba[3] > 0.4) ? rgba[3] * 0.4 : rgba[3] * 1.5;
+ // newrgb[3] = (rgba[3] > 0.5) ? 0.8 * rgba[3] - .1 : rgba[3] + 0.2;
+ newrgb[3] = 0.3 + 0.35 * rgba[3];
+ ret = 'rgba('+newrgb[0]+','+newrgb[1]+','+newrgb[2]+','+newrgb[3]+')';
+ }
+ return ret;
+ };
+
+ $.jqplot.ColorGenerator = function(colors) {
+ colors = colors || $.jqplot.config.defaultColors;
+ var idx = 0;
+
+ this.next = function () {
+ if (idx < colors.length) {
+ return colors[idx++];
+ }
+ else {
+ idx = 0;
+ return colors[idx++];
+ }
+ };
+
+ this.previous = function () {
+ if (idx > 0) {
+ return colors[idx--];
+ }
+ else {
+ idx = colors.length-1;
+ return colors[idx];
+ }
+ };
+
+ // get a color by index without advancing pointer.
+ this.get = function(i) {
+ var idx = i - colors.length * Math.floor(i/colors.length);
+ return colors[idx];
+ };
+
+ this.setColors = function(c) {
+ colors = c;
+ };
+
+ this.reset = function() {
+ idx = 0;
+ };
+
+ this.getIndex = function() {
+ return idx;
+ };
+
+ this.setIndex = function(index) {
+ idx = index;
+ };
+ };
+
+ // convert a hex color string to rgb string.
+ // h - 3 or 6 character hex string, with or without leading #
+ // a - optional alpha
+ $.jqplot.hex2rgb = function(h, a) {
+ h = h.replace('#', '');
+ if (h.length == 3) {
+ h = h.charAt(0)+h.charAt(0)+h.charAt(1)+h.charAt(1)+h.charAt(2)+h.charAt(2);
+ }
+ var rgb;
+ rgb = 'rgba('+parseInt(h.slice(0,2), 16)+', '+parseInt(h.slice(2,4), 16)+', '+parseInt(h.slice(4,6), 16);
+ if (a) {
+ rgb += ', '+a;
+ }
+ rgb += ')';
+ return rgb;
+ };
+
+ // convert an rgb color spec to a hex spec. ignore any alpha specification.
+ $.jqplot.rgb2hex = function(s) {
+ var pat = /rgba?\( *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *(?:, *[0-9.]*)?\)/;
+ var m = s.match(pat);
+ var h = '#';
+ for (var i=1; i<4; i++) {
+ var temp;
+ if (m[i].search(/%/) != -1) {
+ temp = parseInt(255*m[i]/100, 10).toString(16);
+ if (temp.length == 1) {
+ temp = '0'+temp;
+ }
+ }
+ else {
+ temp = parseInt(m[i], 10).toString(16);
+ if (temp.length == 1) {
+ temp = '0'+temp;
+ }
+ }
+ h += temp;
+ }
+ return h;
+ };
+
+ // given a css color spec, return an rgb css color spec
+ $.jqplot.normalize2rgb = function(s, a) {
+ if (s.search(/^ *rgba?\(/) != -1) {
+ return s;
+ }
+ else if (s.search(/^ *#?[0-9a-fA-F]?[0-9a-fA-F]/) != -1) {
+ return $.jqplot.hex2rgb(s, a);
+ }
+ else {
+ throw 'invalid color spec';
+ }
+ };
+
+ // extract the r, g, b, a color components out of a css color spec.
+ $.jqplot.getColorComponents = function(s) {
+ // check to see if a color keyword.
+ s = $.jqplot.colorKeywordMap[s] || s;
+ var rgb = $.jqplot.normalize2rgb(s);
+ var pat = /rgba?\( *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *,? *([0-9.]* *)?\)/;
+ var m = rgb.match(pat);
+ var ret = [];
+ for (var i=1; i<4; i++) {
+ if (m[i].search(/%/) != -1) {
+ ret[i-1] = parseInt(255*m[i]/100, 10);
+ }
+ else {
+ ret[i-1] = parseInt(m[i], 10);
+ }
+ }
+ ret[3] = parseFloat(m[4]) ? parseFloat(m[4]) : 1.0;
+ return ret;
+ };
+
+ $.jqplot.colorKeywordMap = {
+ aliceblue: 'rgb(240, 248, 255)',
+ antiquewhite: 'rgb(250, 235, 215)',
+ aqua: 'rgb( 0, 255, 255)',
+ aquamarine: 'rgb(127, 255, 212)',
+ azure: 'rgb(240, 255, 255)',
+ beige: 'rgb(245, 245, 220)',
+ bisque: 'rgb(255, 228, 196)',
+ black: 'rgb( 0, 0, 0)',
+ blanchedalmond: 'rgb(255, 235, 205)',
+ blue: 'rgb( 0, 0, 255)',
+ blueviolet: 'rgb(138, 43, 226)',
+ brown: 'rgb(165, 42, 42)',
+ burlywood: 'rgb(222, 184, 135)',
+ cadetblue: 'rgb( 95, 158, 160)',
+ chartreuse: 'rgb(127, 255, 0)',
+ chocolate: 'rgb(210, 105, 30)',
+ coral: 'rgb(255, 127, 80)',
+ cornflowerblue: 'rgb(100, 149, 237)',
+ cornsilk: 'rgb(255, 248, 220)',
+ crimson: 'rgb(220, 20, 60)',
+ cyan: 'rgb( 0, 255, 255)',
+ darkblue: 'rgb( 0, 0, 139)',
+ darkcyan: 'rgb( 0, 139, 139)',
+ darkgoldenrod: 'rgb(184, 134, 11)',
+ darkgray: 'rgb(169, 169, 169)',
+ darkgreen: 'rgb( 0, 100, 0)',
+ darkgrey: 'rgb(169, 169, 169)',
+ darkkhaki: 'rgb(189, 183, 107)',
+ darkmagenta: 'rgb(139, 0, 139)',
+ darkolivegreen: 'rgb( 85, 107, 47)',
+ darkorange: 'rgb(255, 140, 0)',
+ darkorchid: 'rgb(153, 50, 204)',
+ darkred: 'rgb(139, 0, 0)',
+ darksalmon: 'rgb(233, 150, 122)',
+ darkseagreen: 'rgb(143, 188, 143)',
+ darkslateblue: 'rgb( 72, 61, 139)',
+ darkslategray: 'rgb( 47, 79, 79)',
+ darkslategrey: 'rgb( 47, 79, 79)',
+ darkturquoise: 'rgb( 0, 206, 209)',
+ darkviolet: 'rgb(148, 0, 211)',
+ deeppink: 'rgb(255, 20, 147)',
+ deepskyblue: 'rgb( 0, 191, 255)',
+ dimgray: 'rgb(105, 105, 105)',
+ dimgrey: 'rgb(105, 105, 105)',
+ dodgerblue: 'rgb( 30, 144, 255)',
+ firebrick: 'rgb(178, 34, 34)',
+ floralwhite: 'rgb(255, 250, 240)',
+ forestgreen: 'rgb( 34, 139, 34)',
+ fuchsia: 'rgb(255, 0, 255)',
+ gainsboro: 'rgb(220, 220, 220)',
+ ghostwhite: 'rgb(248, 248, 255)',
+ gold: 'rgb(255, 215, 0)',
+ goldenrod: 'rgb(218, 165, 32)',
+ gray: 'rgb(128, 128, 128)',
+ grey: 'rgb(128, 128, 128)',
+ green: 'rgb( 0, 128, 0)',
+ greenyellow: 'rgb(173, 255, 47)',
+ honeydew: 'rgb(240, 255, 240)',
+ hotpink: 'rgb(255, 105, 180)',
+ indianred: 'rgb(205, 92, 92)',
+ indigo: 'rgb( 75, 0, 130)',
+ ivory: 'rgb(255, 255, 240)',
+ khaki: 'rgb(240, 230, 140)',
+ lavender: 'rgb(230, 230, 250)',
+ lavenderblush: 'rgb(255, 240, 245)',
+ lawngreen: 'rgb(124, 252, 0)',
+ lemonchiffon: 'rgb(255, 250, 205)',
+ lightblue: 'rgb(173, 216, 230)',
+ lightcoral: 'rgb(240, 128, 128)',
+ lightcyan: 'rgb(224, 255, 255)',
+ lightgoldenrodyellow: 'rgb(250, 250, 210)',
+ lightgray: 'rgb(211, 211, 211)',
+ lightgreen: 'rgb(144, 238, 144)',
+ lightgrey: 'rgb(211, 211, 211)',
+ lightpink: 'rgb(255, 182, 193)',
+ lightsalmon: 'rgb(255, 160, 122)',
+ lightseagreen: 'rgb( 32, 178, 170)',
+ lightskyblue: 'rgb(135, 206, 250)',
+ lightslategray: 'rgb(119, 136, 153)',
+ lightslategrey: 'rgb(119, 136, 153)',
+ lightsteelblue: 'rgb(176, 196, 222)',
+ lightyellow: 'rgb(255, 255, 224)',
+ lime: 'rgb( 0, 255, 0)',
+ limegreen: 'rgb( 50, 205, 50)',
+ linen: 'rgb(250, 240, 230)',
+ magenta: 'rgb(255, 0, 255)',
+ maroon: 'rgb(128, 0, 0)',
+ mediumaquamarine: 'rgb(102, 205, 170)',
+ mediumblue: 'rgb( 0, 0, 205)',
+ mediumorchid: 'rgb(186, 85, 211)',
+ mediumpurple: 'rgb(147, 112, 219)',
+ mediumseagreen: 'rgb( 60, 179, 113)',
+ mediumslateblue: 'rgb(123, 104, 238)',
+ mediumspringgreen: 'rgb( 0, 250, 154)',
+ mediumturquoise: 'rgb( 72, 209, 204)',
+ mediumvioletred: 'rgb(199, 21, 133)',
+ midnightblue: 'rgb( 25, 25, 112)',
+ mintcream: 'rgb(245, 255, 250)',
+ mistyrose: 'rgb(255, 228, 225)',
+ moccasin: 'rgb(255, 228, 181)',
+ navajowhite: 'rgb(255, 222, 173)',
+ navy: 'rgb( 0, 0, 128)',
+ oldlace: 'rgb(253, 245, 230)',
+ olive: 'rgb(128, 128, 0)',
+ olivedrab: 'rgb(107, 142, 35)',
+ orange: 'rgb(255, 165, 0)',
+ orangered: 'rgb(255, 69, 0)',
+ orchid: 'rgb(218, 112, 214)',
+ palegoldenrod: 'rgb(238, 232, 170)',
+ palegreen: 'rgb(152, 251, 152)',
+ paleturquoise: 'rgb(175, 238, 238)',
+ palevioletred: 'rgb(219, 112, 147)',
+ papayawhip: 'rgb(255, 239, 213)',
+ peachpuff: 'rgb(255, 218, 185)',
+ peru: 'rgb(205, 133, 63)',
+ pink: 'rgb(255, 192, 203)',
+ plum: 'rgb(221, 160, 221)',
+ powderblue: 'rgb(176, 224, 230)',
+ purple: 'rgb(128, 0, 128)',
+ red: 'rgb(255, 0, 0)',
+ rosybrown: 'rgb(188, 143, 143)',
+ royalblue: 'rgb( 65, 105, 225)',
+ saddlebrown: 'rgb(139, 69, 19)',
+ salmon: 'rgb(250, 128, 114)',
+ sandybrown: 'rgb(244, 164, 96)',
+ seagreen: 'rgb( 46, 139, 87)',
+ seashell: 'rgb(255, 245, 238)',
+ sienna: 'rgb(160, 82, 45)',
+ silver: 'rgb(192, 192, 192)',
+ skyblue: 'rgb(135, 206, 235)',
+ slateblue: 'rgb(106, 90, 205)',
+ slategray: 'rgb(112, 128, 144)',
+ slategrey: 'rgb(112, 128, 144)',
+ snow: 'rgb(255, 250, 250)',
+ springgreen: 'rgb( 0, 255, 127)',
+ steelblue: 'rgb( 70, 130, 180)',
+ tan: 'rgb(210, 180, 140)',
+ teal: 'rgb( 0, 128, 128)',
+ thistle: 'rgb(216, 191, 216)',
+ tomato: 'rgb(255, 99, 71)',
+ turquoise: 'rgb( 64, 224, 208)',
+ violet: 'rgb(238, 130, 238)',
+ wheat: 'rgb(245, 222, 179)',
+ white: 'rgb(255, 255, 255)',
+ whitesmoke: 'rgb(245, 245, 245)',
+ yellow: 'rgb(255, 255, 0)',
+ yellowgreen: 'rgb(154, 205, 50)'
+ };
+
+
+
+ // class: $.jqplot.AxisLabelRenderer
+ // Renderer to place labels on the axes.
+ $.jqplot.AxisLabelRenderer = function(options) {
+ // Group: Properties
+ $.jqplot.ElemContainer.call(this);
+ // name of the axis associated with this tick
+ this.axis;
+ // prop: show
+ // wether or not to show the tick (mark and label).
+ this.show = true;
+ // prop: label
+ // The text or html for the label.
+ this.label = '';
+ this.fontFamily = null;
+ this.fontSize = null;
+ this.textColor = null;
+ this._elem;
+ // prop: escapeHTML
+ // true to escape HTML entities in the label.
+ this.escapeHTML = false;
+
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.AxisLabelRenderer.prototype = new $.jqplot.ElemContainer();
+ $.jqplot.AxisLabelRenderer.prototype.constructor = $.jqplot.AxisLabelRenderer;
+
+ $.jqplot.AxisLabelRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.AxisLabelRenderer.prototype.draw = function(ctx, plot) {
+ // Memory Leaks patch
+ if (this._elem) {
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ this._elem = $('');
+
+ if (Number(this.label)) {
+ this._elem.css('white-space', 'nowrap');
+ }
+
+ if (!this.escapeHTML) {
+ this._elem.html(this.label);
+ }
+ else {
+ this._elem.text(this.label);
+ }
+ if (this.fontFamily) {
+ this._elem.css('font-family', this.fontFamily);
+ }
+ if (this.fontSize) {
+ this._elem.css('font-size', this.fontSize);
+ }
+ if (this.textColor) {
+ this._elem.css('color', this.textColor);
+ }
+
+ return this._elem;
+ };
+
+ $.jqplot.AxisLabelRenderer.prototype.pack = function() {
+ };
+
+ // class: $.jqplot.AxisTickRenderer
+ // A "tick" object showing the value of a tick/gridline on the plot.
+ $.jqplot.AxisTickRenderer = function(options) {
+ // Group: Properties
+ $.jqplot.ElemContainer.call(this);
+ // prop: mark
+ // tick mark on the axis. One of 'inside', 'outside', 'cross', '' or null.
+ this.mark = 'outside';
+ // name of the axis associated with this tick
+ this.axis;
+ // prop: showMark
+ // wether or not to show the mark on the axis.
+ this.showMark = true;
+ // prop: showGridline
+ // wether or not to draw the gridline on the grid at this tick.
+ this.showGridline = true;
+ // prop: isMinorTick
+ // if this is a minor tick.
+ this.isMinorTick = false;
+ // prop: size
+ // Length of the tick beyond the grid in pixels.
+ // DEPRECATED: This has been superceeded by markSize
+ this.size = 4;
+ // prop: markSize
+ // Length of the tick marks in pixels. For 'cross' style, length
+ // will be stoked above and below axis, so total length will be twice this.
+ this.markSize = 6;
+ // prop: show
+ // wether or not to show the tick (mark and label).
+ // Setting this to false requires more testing. It is recommended
+ // to set showLabel and showMark to false instead.
+ this.show = true;
+ // prop: showLabel
+ // wether or not to show the label.
+ this.showLabel = true;
+ this.label = null;
+ this.value = null;
+ this._styles = {};
+ // prop: formatter
+ // A class of a formatter for the tick text. sprintf by default.
+ this.formatter = $.jqplot.DefaultTickFormatter;
+ // prop: prefix
+ // String to prepend to the tick label.
+ // Prefix is prepended to the formatted tick label.
+ this.prefix = '';
+ // prop: formatString
+ // string passed to the formatter.
+ this.formatString = '';
+ // prop: fontFamily
+ // css spec for the font-family css attribute.
+ this.fontFamily;
+ // prop: fontSize
+ // css spec for the font-size css attribute.
+ this.fontSize;
+ // prop: textColor
+ // css spec for the color attribute.
+ this.textColor;
+ // prop: escapeHTML
+ // true to escape HTML entities in the label.
+ this.escapeHTML = false;
+ this._elem;
+ this._breakTick = false;
+
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.AxisTickRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.AxisTickRenderer.prototype = new $.jqplot.ElemContainer();
+ $.jqplot.AxisTickRenderer.prototype.constructor = $.jqplot.AxisTickRenderer;
+
+ $.jqplot.AxisTickRenderer.prototype.setTick = function(value, axisName, isMinor) {
+ this.value = value;
+ this.axis = axisName;
+ if (isMinor) {
+ this.isMinorTick = true;
+ }
+ return this;
+ };
+
+ $.jqplot.AxisTickRenderer.prototype.draw = function() {
+ if (this.label === null) {
+ this.label = this.prefix + this.formatter(this.formatString, this.value);
+ }
+ var style = {position: 'absolute'};
+ if (Number(this.label)) {
+ style['whitSpace'] = 'nowrap';
+ }
+
+ // Memory Leaks patch
+ if (this._elem) {
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ this._elem = $(document.createElement('div'));
+ this._elem.addClass("jqplot-"+this.axis+"-tick");
+
+ if (!this.escapeHTML) {
+ this._elem.html(this.label);
+ }
+ else {
+ this._elem.text(this.label);
+ }
+
+ this._elem.css(style);
+
+ for (var s in this._styles) {
+ this._elem.css(s, this._styles[s]);
+ }
+ if (this.fontFamily) {
+ this._elem.css('font-family', this.fontFamily);
+ }
+ if (this.fontSize) {
+ this._elem.css('font-size', this.fontSize);
+ }
+ if (this.textColor) {
+ this._elem.css('color', this.textColor);
+ }
+ if (this._breakTick) {
+ this._elem.addClass('jqplot-breakTick');
+ }
+
+ return this._elem;
+ };
+
+ $.jqplot.DefaultTickFormatter = function (format, val) {
+ if (typeof val == 'number') {
+ if (!format) {
+ format = $.jqplot.config.defaultTickFormatString;
+ }
+ return $.jqplot.sprintf(format, val);
+ }
+ else {
+ return String(val);
+ }
+ };
+
+ $.jqplot.AxisTickRenderer.prototype.pack = function() {
+ };
+
+ // Class: $.jqplot.CanvasGridRenderer
+ // The default jqPlot grid renderer, creating a grid on a canvas element.
+ // The renderer has no additional options beyond the class.
+ $.jqplot.CanvasGridRenderer = function(){
+ this.shadowRenderer = new $.jqplot.ShadowRenderer();
+ };
+
+ // called with context of Grid object
+ $.jqplot.CanvasGridRenderer.prototype.init = function(options) {
+ this._ctx;
+ $.extend(true, this, options);
+ // set the shadow renderer options
+ var sopts = {lineJoin:'miter', lineCap:'round', fill:false, isarc:false, angle:this.shadowAngle, offset:this.shadowOffset, alpha:this.shadowAlpha, depth:this.shadowDepth, lineWidth:this.shadowWidth, closePath:false, strokeStyle:this.shadowColor};
+ this.renderer.shadowRenderer.init(sopts);
+ };
+
+ // called with context of Grid.
+ $.jqplot.CanvasGridRenderer.prototype.createElement = function(plot) {
+ var elem;
+ // Memory Leaks patch
+ if (this._elem) {
+ if ($.jqplot.use_excanvas && window.G_vmlCanvasManager.uninitElement !== undefined) {
+ elem = this._elem.get(0);
+ window.G_vmlCanvasManager.uninitElement(elem);
+ elem = null;
+ }
+
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ elem = plot.canvasManager.getCanvas();
+
+ var w = this._plotDimensions.width;
+ var h = this._plotDimensions.height;
+ elem.width = w;
+ elem.height = h;
+ this._elem = $(elem);
+ this._elem.addClass('jqplot-grid-canvas');
+ this._elem.css({ position: 'absolute', left: 0, top: 0 });
+
+ elem = plot.canvasManager.initCanvas(elem);
+
+ this._top = this._offsets.top;
+ this._bottom = h - this._offsets.bottom;
+ this._left = this._offsets.left;
+ this._right = w - this._offsets.right;
+ this._width = this._right - this._left;
+ this._height = this._bottom - this._top;
+ // avoid memory leak
+ elem = null;
+ return this._elem;
+ };
+
+ $.jqplot.CanvasGridRenderer.prototype.draw = function() {
+ this._ctx = this._elem.get(0).getContext("2d");
+ var ctx = this._ctx;
+ var axes = this._axes;
+ // Add the grid onto the grid canvas. This is the bottom most layer.
+ ctx.save();
+ ctx.clearRect(0, 0, this._plotDimensions.width, this._plotDimensions.height);
+ ctx.fillStyle = this.backgroundColor || this.background;
+ ctx.fillRect(this._left, this._top, this._width, this._height);
+
+ ctx.save();
+ ctx.lineJoin = 'miter';
+ ctx.lineCap = 'butt';
+ ctx.lineWidth = this.gridLineWidth;
+ ctx.strokeStyle = this.gridLineColor;
+ var b, e, s, m;
+ var ax = ['xaxis', 'yaxis', 'x2axis', 'y2axis'];
+ for (var i=4; i>0; i--) {
+ var name = ax[i-1];
+ var axis = axes[name];
+ var ticks = axis._ticks;
+ var numticks = ticks.length;
+ if (axis.show) {
+ if (axis.drawBaseline) {
+ var bopts = {};
+ if (axis.baselineWidth !== null) {
+ bopts.lineWidth = axis.baselineWidth;
+ }
+ if (axis.baselineColor !== null) {
+ bopts.strokeStyle = axis.baselineColor;
+ }
+ switch (name) {
+ case 'xaxis':
+ drawLine (this._left, this._bottom, this._right, this._bottom, bopts);
+ break;
+ case 'yaxis':
+ drawLine (this._left, this._bottom, this._left, this._top, bopts);
+ break;
+ case 'x2axis':
+ drawLine (this._left, this._bottom, this._right, this._bottom, bopts);
+ break;
+ case 'y2axis':
+ drawLine (this._right, this._bottom, this._right, this._top, bopts);
+ break;
+ }
+ }
+ for (var j=numticks; j>0; j--) {
+ var t = ticks[j-1];
+ if (t.show) {
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ switch (name) {
+ case 'xaxis':
+ // draw the grid line if we should
+ if (t.showGridline && this.drawGridlines && ((!t.isMinorTick && axis.drawMajorGridlines) || (t.isMinorTick && axis.drawMinorGridlines)) ) {
+ drawLine(pos, this._top, pos, this._bottom);
+ }
+ // draw the mark
+ if (t.showMark && t.mark && ((!t.isMinorTick && axis.drawMajorTickMarks) || (t.isMinorTick && axis.drawMinorTickMarks)) ) {
+ s = t.markSize;
+ m = t.mark;
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ switch (m) {
+ case 'outside':
+ b = this._bottom;
+ e = this._bottom+s;
+ break;
+ case 'inside':
+ b = this._bottom-s;
+ e = this._bottom;
+ break;
+ case 'cross':
+ b = this._bottom-s;
+ e = this._bottom+s;
+ break;
+ default:
+ b = this._bottom;
+ e = this._bottom+s;
+ break;
+ }
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, [[pos,b],[pos,e]], {lineCap:'butt', lineWidth:this.gridLineWidth, offset:this.gridLineWidth*0.75, depth:2, fill:false, closePath:false});
+ }
+ // draw the line
+ drawLine(pos, b, pos, e);
+ }
+ break;
+ case 'yaxis':
+ // draw the grid line
+ if (t.showGridline && this.drawGridlines && ((!t.isMinorTick && axis.drawMajorGridlines) || (t.isMinorTick && axis.drawMinorGridlines)) ) {
+ drawLine(this._right, pos, this._left, pos);
+ }
+ // draw the mark
+ if (t.showMark && t.mark && ((!t.isMinorTick && axis.drawMajorTickMarks) || (t.isMinorTick && axis.drawMinorTickMarks)) ) {
+ s = t.markSize;
+ m = t.mark;
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ switch (m) {
+ case 'outside':
+ b = this._left-s;
+ e = this._left;
+ break;
+ case 'inside':
+ b = this._left;
+ e = this._left+s;
+ break;
+ case 'cross':
+ b = this._left-s;
+ e = this._left+s;
+ break;
+ default:
+ b = this._left-s;
+ e = this._left;
+ break;
+ }
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, [[b, pos], [e, pos]], {lineCap:'butt', lineWidth:this.gridLineWidth*1.5, offset:this.gridLineWidth*0.75, fill:false, closePath:false});
+ }
+ drawLine(b, pos, e, pos, {strokeStyle:axis.borderColor});
+ }
+ break;
+ case 'x2axis':
+ // draw the grid line
+ if (t.showGridline && this.drawGridlines && ((!t.isMinorTick && axis.drawMajorGridlines) || (t.isMinorTick && axis.drawMinorGridlines)) ) {
+ drawLine(pos, this._bottom, pos, this._top);
+ }
+ // draw the mark
+ if (t.showMark && t.mark && ((!t.isMinorTick && axis.drawMajorTickMarks) || (t.isMinorTick && axis.drawMinorTickMarks)) ) {
+ s = t.markSize;
+ m = t.mark;
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ switch (m) {
+ case 'outside':
+ b = this._top-s;
+ e = this._top;
+ break;
+ case 'inside':
+ b = this._top;
+ e = this._top+s;
+ break;
+ case 'cross':
+ b = this._top-s;
+ e = this._top+s;
+ break;
+ default:
+ b = this._top-s;
+ e = this._top;
+ break;
+ }
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, [[pos,b],[pos,e]], {lineCap:'butt', lineWidth:this.gridLineWidth, offset:this.gridLineWidth*0.75, depth:2, fill:false, closePath:false});
+ }
+ drawLine(pos, b, pos, e);
+ }
+ break;
+ case 'y2axis':
+ // draw the grid line
+ if (t.showGridline && this.drawGridlines && ((!t.isMinorTick && axis.drawMajorGridlines) || (t.isMinorTick && axis.drawMinorGridlines)) ) {
+ drawLine(this._left, pos, this._right, pos);
+ }
+ // draw the mark
+ if (t.showMark && t.mark && ((!t.isMinorTick && axis.drawMajorTickMarks) || (t.isMinorTick && axis.drawMinorTickMarks)) ) {
+ s = t.markSize;
+ m = t.mark;
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ switch (m) {
+ case 'outside':
+ b = this._right;
+ e = this._right+s;
+ break;
+ case 'inside':
+ b = this._right-s;
+ e = this._right;
+ break;
+ case 'cross':
+ b = this._right-s;
+ e = this._right+s;
+ break;
+ default:
+ b = this._right;
+ e = this._right+s;
+ break;
+ }
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, [[b, pos], [e, pos]], {lineCap:'butt', lineWidth:this.gridLineWidth*1.5, offset:this.gridLineWidth*0.75, fill:false, closePath:false});
+ }
+ drawLine(b, pos, e, pos, {strokeStyle:axis.borderColor});
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ }
+ t = null;
+ }
+ axis = null;
+ ticks = null;
+ }
+ // Now draw grid lines for additional y axes
+ //////
+ // TO DO: handle yMidAxis
+ //////
+ ax = ['y3axis', 'y4axis', 'y5axis', 'y6axis', 'y7axis', 'y8axis', 'y9axis', 'yMidAxis'];
+ for (var i=7; i>0; i--) {
+ var axis = axes[ax[i-1]];
+ var ticks = axis._ticks;
+ if (axis.show) {
+ var tn = ticks[axis.numberTicks-1];
+ var t0 = ticks[0];
+ var left = axis.getLeft();
+ var points = [[left, tn.getTop() + tn.getHeight()/2], [left, t0.getTop() + t0.getHeight()/2 + 1.0]];
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, points, {lineCap:'butt', fill:false, closePath:false});
+ }
+ // draw the line
+ drawLine(points[0][0], points[0][1], points[1][0], points[1][1], {lineCap:'butt', strokeStyle:axis.borderColor, lineWidth:axis.borderWidth});
+ // draw the tick marks
+ for (var j=ticks.length; j>0; j--) {
+ var t = ticks[j-1];
+ s = t.markSize;
+ m = t.mark;
+ var pos = Math.round(axis.u2p(t.value)) + 0.5;
+ if (t.showMark && t.mark) {
+ switch (m) {
+ case 'outside':
+ b = left;
+ e = left+s;
+ break;
+ case 'inside':
+ b = left-s;
+ e = left;
+ break;
+ case 'cross':
+ b = left-s;
+ e = left+s;
+ break;
+ default:
+ b = left;
+ e = left+s;
+ break;
+ }
+ points = [[b,pos], [e,pos]];
+ // draw the shadow
+ if (this.shadow) {
+ this.renderer.shadowRenderer.draw(ctx, points, {lineCap:'butt', lineWidth:this.gridLineWidth*1.5, offset:this.gridLineWidth*0.75, fill:false, closePath:false});
+ }
+ // draw the line
+ drawLine(b, pos, e, pos, {strokeStyle:axis.borderColor});
+ }
+ t = null;
+ }
+ t0 = null;
+ }
+ axis = null;
+ ticks = null;
+ }
+
+ ctx.restore();
+
+ function drawLine(bx, by, ex, ey, opts) {
+ ctx.save();
+ opts = opts || {};
+ if (opts.lineWidth == null || opts.lineWidth != 0){
+ $.extend(true, ctx, opts);
+ ctx.beginPath();
+ ctx.moveTo(bx, by);
+ ctx.lineTo(ex, ey);
+ ctx.stroke();
+ ctx.restore();
+ }
+ }
+
+ if (this.shadow) {
+ var points = [[this._left, this._bottom], [this._right, this._bottom], [this._right, this._top]];
+ this.renderer.shadowRenderer.draw(ctx, points);
+ }
+ // Now draw border around grid. Use axis border definitions. start at
+ // upper left and go clockwise.
+ if (this.borderWidth != 0 && this.drawBorder) {
+ drawLine (this._left, this._top, this._right, this._top, {lineCap:'round', strokeStyle:axes.x2axis.borderColor, lineWidth:axes.x2axis.borderWidth});
+ drawLine (this._right, this._top, this._right, this._bottom, {lineCap:'round', strokeStyle:axes.y2axis.borderColor, lineWidth:axes.y2axis.borderWidth});
+ drawLine (this._right, this._bottom, this._left, this._bottom, {lineCap:'round', strokeStyle:axes.xaxis.borderColor, lineWidth:axes.xaxis.borderWidth});
+ drawLine (this._left, this._bottom, this._left, this._top, {lineCap:'round', strokeStyle:axes.yaxis.borderColor, lineWidth:axes.yaxis.borderWidth});
+ }
+ // ctx.lineWidth = this.borderWidth;
+ // ctx.strokeStyle = this.borderColor;
+ // ctx.strokeRect(this._left, this._top, this._width, this._height);
+
+ ctx.restore();
+ ctx = null;
+ axes = null;
+ };
+
+ // Class: $.jqplot.DivTitleRenderer
+ // The default title renderer for jqPlot. This class has no options beyond the class.
+ $.jqplot.DivTitleRenderer = function() {
+ };
+
+ $.jqplot.DivTitleRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.DivTitleRenderer.prototype.draw = function() {
+ // Memory Leaks patch
+ if (this._elem) {
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ var r = this.renderer;
+ var elem = document.createElement('div');
+ this._elem = $(elem);
+ this._elem.addClass('jqplot-title');
+
+ if (!this.text) {
+ this.show = false;
+ this._elem.height(0);
+ this._elem.width(0);
+ }
+ else if (this.text) {
+ var color;
+ if (this.color) {
+ color = this.color;
+ }
+ else if (this.textColor) {
+ color = this.textColor;
+ }
+
+ // don't trust that a stylesheet is present, set the position.
+ var styles = {position:'absolute', top:'0px', left:'0px'};
+
+ if (this._plotWidth) {
+ styles['width'] = this._plotWidth+'px';
+ }
+ if (this.fontSize) {
+ styles['fontSize'] = this.fontSize;
+ }
+ if (typeof this.textAlign === 'string') {
+ styles['textAlign'] = this.textAlign;
+ }
+ else {
+ styles['textAlign'] = 'center';
+ }
+ if (color) {
+ styles['color'] = color;
+ }
+ if (this.paddingBottom) {
+ styles['paddingBottom'] = this.paddingBottom;
+ }
+ if (this.fontFamily) {
+ styles['fontFamily'] = this.fontFamily;
+ }
+
+ this._elem.css(styles);
+ if (this.escapeHtml) {
+ this._elem.text(this.text);
+ }
+ else {
+ this._elem.html(this.text);
+ }
+
+
+ // styletext += (this._plotWidth) ? 'width:'+this._plotWidth+'px;' : '';
+ // styletext += (this.fontSize) ? 'font-size:'+this.fontSize+';' : '';
+ // styletext += (this.textAlign) ? 'text-align:'+this.textAlign+';' : 'text-align:center;';
+ // styletext += (color) ? 'color:'+color+';' : '';
+ // styletext += (this.paddingBottom) ? 'padding-bottom:'+this.paddingBottom+';' : '';
+ // this._elem = $('
'+this.text+'
');
+ // if (this.fontFamily) {
+ // this._elem.css('font-family', this.fontFamily);
+ // }
+ }
+
+ elem = null;
+
+ return this._elem;
+ };
+
+ $.jqplot.DivTitleRenderer.prototype.pack = function() {
+ // nothing to do here
+ };
+
+
+ var dotlen = 0.1;
+
+ $.jqplot.LinePattern = function (ctx, pattern) {
+
+ var defaultLinePatterns = {
+ dotted: [ dotlen, $.jqplot.config.dotGapLength ],
+ dashed: [ $.jqplot.config.dashLength, $.jqplot.config.gapLength ],
+ solid: null
+ };
+
+ if (typeof pattern === 'string') {
+ if (pattern[0] === '.' || pattern[0] === '-') {
+ var s = pattern;
+ pattern = [];
+ for (var i=0, imax=s.length; i 0) && (scale > 0)) {
+ dx /= dist;
+ dy /= dist;
+ while (true) {
+ var dp = scale * patternDistance;
+ if (dp < dist) {
+ px += dp * dx;
+ py += dp * dy;
+ if ((patternIndex & 1) == 0) {
+ ctx.lineTo( px, py );
+ }
+ else {
+ ctx.moveTo( px, py );
+ }
+ dist -= dp;
+ patternIndex++;
+ if (patternIndex >= pattern.length) {
+ patternIndex = 0;
+ }
+ patternDistance = pattern[patternIndex];
+ }
+ else {
+ px = x;
+ py = y;
+ if ((patternIndex & 1) == 0) {
+ ctx.lineTo( px, py );
+ }
+ else {
+ ctx.moveTo( px, py );
+ }
+ patternDistance -= dist / scale;
+ break;
+ }
+ }
+ }
+ };
+
+ var beginPath = function () {
+ ctx.beginPath();
+ };
+
+ var closePath = function () {
+ lineTo( pathx0, pathy0 );
+ };
+
+ return {
+ moveTo: moveTo,
+ lineTo: lineTo,
+ beginPath: beginPath,
+ closePath: closePath
+ };
+ };
+
+ // Class: $.jqplot.LineRenderer
+ // The default line renderer for jqPlot, this class has no options beyond the class.
+ // Draws series as a line.
+ $.jqplot.LineRenderer = function(){
+ this.shapeRenderer = new $.jqplot.ShapeRenderer();
+ this.shadowRenderer = new $.jqplot.ShadowRenderer();
+ };
+
+ // called with scope of series.
+ $.jqplot.LineRenderer.prototype.init = function(options, plot) {
+ // Group: Properties
+ //
+ options = options || {};
+ this._type='line';
+ this.renderer.animation = {
+ show: false,
+ direction: 'left',
+ speed: 2500,
+ _supported: true
+ };
+ // prop: smooth
+ // True to draw a smoothed (interpolated) line through the data points
+ // with automatically computed number of smoothing points.
+ // Set to an integer number > 2 to specify number of smoothing points
+ // to use between each data point.
+ this.renderer.smooth = false; // true or a number > 2 for smoothing.
+ this.renderer.tension = null; // null to auto compute or a number typically > 6. Fewer points requires higher tension.
+ // prop: constrainSmoothing
+ // True to use a more accurate smoothing algorithm that will
+ // not overshoot any data points. False to allow overshoot but
+ // produce a smoother looking line.
+ this.renderer.constrainSmoothing = true;
+ // this is smoothed data in grid coordinates, like gridData
+ this.renderer._smoothedData = [];
+ // this is smoothed data in plot units (plot coordinates), like plotData.
+ this.renderer._smoothedPlotData = [];
+ this.renderer._hiBandGridData = [];
+ this.renderer._lowBandGridData = [];
+ this.renderer._hiBandSmoothedData = [];
+ this.renderer._lowBandSmoothedData = [];
+
+ // prop: bandData
+ // Data used to draw error bands or confidence intervals above/below a line.
+ //
+ // bandData can be input in 3 forms. jqPlot will figure out which is the
+ // low band line and which is the high band line for all forms:
+ //
+ // A 2 dimensional array like [[yl1, yl2, ...], [yu1, yu2, ...]] where
+ // [yl1, yl2, ...] are y values of the lower line and
+ // [yu1, yu2, ...] are y values of the upper line.
+ // In this case there must be the same number of y data points as data points
+ // in the series and the bands will inherit the x values of the series.
+ //
+ // A 2 dimensional array like [[[xl1, yl1], [xl2, yl2], ...], [[xh1, yh1], [xh2, yh2], ...]]
+ // where [xl1, yl1] are x,y data points for the lower line and
+ // [xh1, yh1] are x,y data points for the high line.
+ // x values do not have to correspond to the x values of the series and can
+ // be of any arbitrary length.
+ //
+ // Can be of form [[yl1, yu1], [yl2, yu2], [yl3, yu3], ...] where
+ // there must be 3 or more arrays and there must be the same number of arrays
+ // as there are data points in the series. In this case,
+ // [yl1, yu1] specifies the lower and upper y values for the 1st
+ // data point and so on. The bands will inherit the x
+ // values from the series.
+ this.renderer.bandData = [];
+
+ // Group: bands
+ // Banding around line, e.g error bands or confidence intervals.
+ this.renderer.bands = {
+ // prop: show
+ // true to show the bands. If bandData or interval is
+ // supplied, show will be set to true by default.
+ show: false,
+ hiData: [],
+ lowData: [],
+ // prop: color
+ // color of lines at top and bottom of bands [default: series color].
+ color: this.color,
+ // prop: showLines
+ // True to show lines at top and bottom of bands [default: false].
+ showLines: false,
+ // prop: fill
+ // True to fill area between bands [default: true].
+ fill: true,
+ // prop: fillColor
+ // css color spec for filled area. [default: series color].
+ fillColor: null,
+ _min: null,
+ _max: null,
+ // prop: interval
+ // User specified interval above and below line for bands [default: '3%''].
+ // Can be a value like 3 or a string like '3%'
+ // or an upper/lower array like [1, -2] or ['2%', '-1.5%']
+ interval: '3%'
+ };
+
+
+ var lopts = {highlightMouseOver: options.highlightMouseOver, highlightMouseDown: options.highlightMouseDown, highlightColor: options.highlightColor};
+
+ delete (options.highlightMouseOver);
+ delete (options.highlightMouseDown);
+ delete (options.highlightColor);
+
+ $.extend(true, this.renderer, options);
+
+ this.renderer.options = options;
+
+ // if we are given some band data, and bands aren't explicity set to false in options, turn them on.
+ if (this.renderer.bandData.length > 1 && (!options.bands || options.bands.show == null)) {
+ this.renderer.bands.show = true;
+ }
+
+ // if we are given an interval, and bands aren't explicity set to false in options, turn them on.
+ else if (options.bands && options.bands.show == null && options.bands.interval != null) {
+ this.renderer.bands.show = true;
+ }
+
+ // if plot is filled, turn off bands.
+ if (this.fill) {
+ this.renderer.bands.show = false;
+ }
+
+ if (this.renderer.bands.show) {
+ this.renderer.initBands.call(this, this.renderer.options, plot);
+ }
+
+
+ // smoothing is not compatible with stacked lines, disable
+ if (this._stack) {
+ this.renderer.smooth = false;
+ }
+
+ // set the shape renderer options
+ var opts = {lineJoin:this.lineJoin, lineCap:this.lineCap, fill:this.fill, isarc:false, strokeStyle:this.color, fillStyle:this.fillColor, lineWidth:this.lineWidth, linePattern:this.linePattern, closePath:this.fill};
+ this.renderer.shapeRenderer.init(opts);
+
+ var shadow_offset = options.shadowOffset;
+ // set the shadow renderer options
+ if (shadow_offset == null) {
+ // scale the shadowOffset to the width of the line.
+ if (this.lineWidth > 2.5) {
+ shadow_offset = 1.25 * (1 + (Math.atan((this.lineWidth/2.5))/0.785398163 - 1)*0.6);
+ // var shadow_offset = this.shadowOffset;
+ }
+ // for skinny lines, don't make such a big shadow.
+ else {
+ shadow_offset = 1.25 * Math.atan((this.lineWidth/2.5))/0.785398163;
+ }
+ }
+
+ var sopts = {lineJoin:this.lineJoin, lineCap:this.lineCap, fill:this.fill, isarc:false, angle:this.shadowAngle, offset:shadow_offset, alpha:this.shadowAlpha, depth:this.shadowDepth, lineWidth:this.lineWidth, linePattern:this.linePattern, closePath:this.fill};
+ this.renderer.shadowRenderer.init(sopts);
+ this._areaPoints = [];
+ this._boundingBox = [[],[]];
+
+ if (!this.isTrendline && this.fill || this.renderer.bands.show) {
+ // Group: Properties
+ //
+ // prop: highlightMouseOver
+ // True to highlight area on a filled plot when moused over.
+ // This must be false to enable highlightMouseDown to highlight when clicking on an area on a filled plot.
+ this.highlightMouseOver = true;
+ // prop: highlightMouseDown
+ // True to highlight when a mouse button is pressed over an area on a filled plot.
+ // This will be disabled if highlightMouseOver is true.
+ this.highlightMouseDown = false;
+ // prop: highlightColor
+ // color to use when highlighting an area on a filled plot.
+ this.highlightColor = null;
+ // if user has passed in highlightMouseDown option and not set highlightMouseOver, disable highlightMouseOver
+ if (lopts.highlightMouseDown && lopts.highlightMouseOver == null) {
+ lopts.highlightMouseOver = false;
+ }
+
+ $.extend(true, this, {highlightMouseOver: lopts.highlightMouseOver, highlightMouseDown: lopts.highlightMouseDown, highlightColor: lopts.highlightColor});
+
+ if (!this.highlightColor) {
+ var fc = (this.renderer.bands.show) ? this.renderer.bands.fillColor : this.fillColor;
+ this.highlightColor = $.jqplot.computeHighlightColors(fc);
+ }
+ // turn off (disable) the highlighter plugin
+ if (this.highlighter) {
+ this.highlighter.show = false;
+ }
+ }
+
+ if (!this.isTrendline && plot) {
+ plot.plugins.lineRenderer = {};
+ plot.postInitHooks.addOnce(postInit);
+ plot.postDrawHooks.addOnce(postPlotDraw);
+ plot.eventListenerHooks.addOnce('jqplotMouseMove', handleMove);
+ plot.eventListenerHooks.addOnce('jqplotMouseDown', handleMouseDown);
+ plot.eventListenerHooks.addOnce('jqplotMouseUp', handleMouseUp);
+ plot.eventListenerHooks.addOnce('jqplotClick', handleClick);
+ plot.eventListenerHooks.addOnce('jqplotRightClick', handleRightClick);
+ }
+
+ };
+
+ $.jqplot.LineRenderer.prototype.initBands = function(options, plot) {
+ // use bandData if no data specified in bands option
+ //var bd = this.renderer.bandData;
+ var bd = options.bandData || [];
+ var bands = this.renderer.bands;
+ bands.hiData = [];
+ bands.lowData = [];
+ var data = this.data;
+ bands._max = null;
+ bands._min = null;
+ // If 2 arrays, and each array greater than 2 elements, assume it is hi and low data bands of y values.
+ if (bd.length == 2) {
+ // Do we have an array of x,y values?
+ // like [[[1,1], [2,4], [3,3]], [[1,3], [2,6], [3,5]]]
+ if ($.isArray(bd[0][0])) {
+ // since an arbitrary array of points, spin through all of them to determine max and min lines.
+
+ var p;
+ var bdminidx = 0, bdmaxidx = 0;
+ for (var i = 0, l = bd[0].length; i bands._max) || bands._max == null) {
+ bands._max = p[1];
+ }
+ if ((p[1] != null && p[1] < bands._min) || bands._min == null) {
+ bands._min = p[1];
+ }
+ }
+ for (var i = 0, l = bd[1].length; i bands._max) || bands._max == null) {
+ bands._max = p[1];
+ bdmaxidx = 1;
+ }
+ if ((p[1] != null && p[1] < bands._min) || bands._min == null) {
+ bands._min = p[1];
+ bdminidx = 1;
+ }
+ }
+
+ if (bdmaxidx === bdminidx) {
+ bands.show = false;
+ }
+
+ bands.hiData = bd[bdmaxidx];
+ bands.lowData = bd[bdminidx];
+ }
+ // else data is arrays of y values
+ // like [[1,4,3], [3,6,5]]
+ // must have same number of band data points as points in series
+ else if (bd[0].length === data.length && bd[1].length === data.length) {
+ var hi = (bd[0][0] > bd[1][0]) ? 0 : 1;
+ var low = (hi) ? 0 : 1;
+ for (var i=0, l=data.length; i < l; i++) {
+ bands.hiData.push([data[i][0], bd[hi][i]]);
+ bands.lowData.push([data[i][0], bd[low][i]]);
+ }
+ }
+
+ // we don't have proper data array, don't show bands.
+ else {
+ bands.show = false;
+ }
+ }
+
+ // if more than 2 arrays, have arrays of [ylow, yhi] values.
+ // note, can't distinguish case of [[ylow, yhi], [ylow, yhi]] from [[ylow, ylow], [yhi, yhi]]
+ // this is assumed to be of the latter form.
+ else if (bd.length > 2 && !$.isArray(bd[0][0])) {
+ var hi = (bd[0][0] > bd[0][1]) ? 0 : 1;
+ var low = (hi) ? 0 : 1;
+ for (var i=0, l=bd.length; i bands._max) || bands._max == null) {
+ bands._max = hd[i][1];
+ }
+ }
+ for (var i = 0, l = ld.length; i 0) {
+ slope2 = Math.abs((gd[i][1] - gd[i-1][1]) / (gd[i][0] - gd[i-1][0]));
+ }
+ temp = slope2/scale + shift;
+
+ a2 = stretch * tanh(temp) - stretch * tanh(shift) + min;
+
+ a = (a1 + a2)/2.0;
+
+ }
+ else {
+ a = tension;
+ }
+ for (t=0; t < steps; t++) {
+ s = t / steps;
+ h1 = (1 + 2*s)*Math.pow((1-s),2);
+ h2 = s*Math.pow((1-s),2);
+ h3 = Math.pow(s,2)*(3-2*s);
+ h4 = Math.pow(s,2)*(s-1);
+
+ if (gd[i-1]) {
+ TiX = a * (gd[i+1][0] - gd[i-1][0]);
+ TiY = a * (gd[i+1][1] - gd[i-1][1]);
+ } else {
+ TiX = a * (gd[i+1][0] - gd[i][0]);
+ TiY = a * (gd[i+1][1] - gd[i][1]);
+ }
+ if (gd[i+2]) {
+ Ti1X = a * (gd[i+2][0] - gd[i][0]);
+ Ti1Y = a * (gd[i+2][1] - gd[i][1]);
+ } else {
+ Ti1X = a * (gd[i+1][0] - gd[i][0]);
+ Ti1Y = a * (gd[i+1][1] - gd[i][1]);
+ }
+
+ pX = h1*gd[i][0] + h3*gd[i+1][0] + h2*TiX + h4*Ti1X;
+ pY = h1*gd[i][1] + h3*gd[i+1][1] + h2*TiY + h4*Ti1Y;
+ p = [pX, pY];
+
+ _smoothedData.push(p);
+ _smoothedPlotData.push([xp(pX), yp(pY)]);
+ }
+ }
+ _smoothedData.push(gd[l]);
+ _smoothedPlotData.push([xp(gd[l][0]), yp(gd[l][1])]);
+
+ return [_smoothedData, _smoothedPlotData];
+ }
+
+ // setGridData
+ // converts the user data values to grid coordinates and stores them
+ // in the gridData array.
+ // Called with scope of a series.
+ $.jqplot.LineRenderer.prototype.setGridData = function(plot) {
+ // recalculate the grid data
+ var xp = this._xaxis.series_u2p;
+ var yp = this._yaxis.series_u2p;
+ var data = this._plotData;
+ var pdata = this._prevPlotData;
+ this.gridData = [];
+ this._prevGridData = [];
+ this.renderer._smoothedData = [];
+ this.renderer._smoothedPlotData = [];
+ this.renderer._hiBandGridData = [];
+ this.renderer._lowBandGridData = [];
+ this.renderer._hiBandSmoothedData = [];
+ this.renderer._lowBandSmoothedData = [];
+ var bands = this.renderer.bands;
+ var hasNull = false;
+ for (var i=0, l=this.data.length; i < l; i++) {
+ // if not a line series or if no nulls in data, push the converted point onto the array.
+ if (data[i][0] != null && data[i][1] != null) {
+ this.gridData.push([xp.call(this._xaxis, data[i][0]), yp.call(this._yaxis, data[i][1])]);
+ }
+ // else if there is a null, preserve it.
+ else if (data[i][0] == null) {
+ hasNull = true;
+ this.gridData.push([null, yp.call(this._yaxis, data[i][1])]);
+ }
+ else if (data[i][1] == null) {
+ hasNull = true;
+ this.gridData.push([xp.call(this._xaxis, data[i][0]), null]);
+ }
+ // if not a line series or if no nulls in data, push the converted point onto the array.
+ if (pdata[i] != null && pdata[i][0] != null && pdata[i][1] != null) {
+ this._prevGridData.push([xp.call(this._xaxis, pdata[i][0]), yp.call(this._yaxis, pdata[i][1])]);
+ }
+ // else if there is a null, preserve it.
+ else if (pdata[i] != null && pdata[i][0] == null) {
+ this._prevGridData.push([null, yp.call(this._yaxis, pdata[i][1])]);
+ }
+ else if (pdata[i] != null && pdata[i][0] != null && pdata[i][1] == null) {
+ this._prevGridData.push([xp.call(this._xaxis, pdata[i][0]), null]);
+ }
+ }
+
+ // don't do smoothing or bands on broken lines.
+ if (hasNull) {
+ this.renderer.smooth = false;
+ if (this._type === 'line') {
+ bands.show = false;
+ }
+ }
+
+ if (this._type === 'line' && bands.show) {
+ for (var i=0, l=bands.hiData.length; i 2) {
+ var ret;
+ if (this.renderer.constrainSmoothing) {
+ ret = computeConstrainedSmoothedData.call(this, this.gridData);
+ this.renderer._smoothedData = ret[0];
+ this.renderer._smoothedPlotData = ret[1];
+
+ if (bands.show) {
+ ret = computeConstrainedSmoothedData.call(this, this.renderer._hiBandGridData);
+ this.renderer._hiBandSmoothedData = ret[0];
+ ret = computeConstrainedSmoothedData.call(this, this.renderer._lowBandGridData);
+ this.renderer._lowBandSmoothedData = ret[0];
+ }
+
+ ret = null;
+ }
+ else {
+ ret = computeHermiteSmoothedData.call(this, this.gridData);
+ this.renderer._smoothedData = ret[0];
+ this.renderer._smoothedPlotData = ret[1];
+
+ if (bands.show) {
+ ret = computeHermiteSmoothedData.call(this, this.renderer._hiBandGridData);
+ this.renderer._hiBandSmoothedData = ret[0];
+ ret = computeHermiteSmoothedData.call(this, this.renderer._lowBandGridData);
+ this.renderer._lowBandSmoothedData = ret[0];
+ }
+
+ ret = null;
+ }
+ }
+ };
+
+ // makeGridData
+ // converts any arbitrary data values to grid coordinates and
+ // returns them. This method exists so that plugins can use a series'
+ // linerenderer to generate grid data points without overwriting the
+ // grid data associated with that series.
+ // Called with scope of a series.
+ $.jqplot.LineRenderer.prototype.makeGridData = function(data, plot) {
+ // recalculate the grid data
+ var xp = this._xaxis.series_u2p;
+ var yp = this._yaxis.series_u2p;
+ var gd = [];
+ var pgd = [];
+ this.renderer._smoothedData = [];
+ this.renderer._smoothedPlotData = [];
+ this.renderer._hiBandGridData = [];
+ this.renderer._lowBandGridData = [];
+ this.renderer._hiBandSmoothedData = [];
+ this.renderer._lowBandSmoothedData = [];
+ var bands = this.renderer.bands;
+ var hasNull = false;
+ for (var i=0; i 2) {
+ var ret;
+ if (this.renderer.constrainSmoothing) {
+ ret = computeConstrainedSmoothedData.call(this, gd);
+ this.renderer._smoothedData = ret[0];
+ this.renderer._smoothedPlotData = ret[1];
+
+ if (bands.show) {
+ ret = computeConstrainedSmoothedData.call(this, this.renderer._hiBandGridData);
+ this.renderer._hiBandSmoothedData = ret[0];
+ ret = computeConstrainedSmoothedData.call(this, this.renderer._lowBandGridData);
+ this.renderer._lowBandSmoothedData = ret[0];
+ }
+
+ ret = null;
+ }
+ else {
+ ret = computeHermiteSmoothedData.call(this, gd);
+ this.renderer._smoothedData = ret[0];
+ this.renderer._smoothedPlotData = ret[1];
+
+ if (bands.show) {
+ ret = computeHermiteSmoothedData.call(this, this.renderer._hiBandGridData);
+ this.renderer._hiBandSmoothedData = ret[0];
+ ret = computeHermiteSmoothedData.call(this, this.renderer._lowBandGridData);
+ this.renderer._lowBandSmoothedData = ret[0];
+ }
+
+ ret = null;
+ }
+ }
+ return gd;
+ };
+
+
+ // called within scope of series.
+ $.jqplot.LineRenderer.prototype.draw = function(ctx, gd, options, plot) {
+ var i;
+ // get a copy of the options, so we don't modify the original object.
+ var opts = $.extend(true, {}, options);
+ var shadow = (opts.shadow != undefined) ? opts.shadow : this.shadow;
+ var showLine = (opts.showLine != undefined) ? opts.showLine : this.showLine;
+ var fill = (opts.fill != undefined) ? opts.fill : this.fill;
+ var fillAndStroke = (opts.fillAndStroke != undefined) ? opts.fillAndStroke : this.fillAndStroke;
+ var xmin, ymin, xmax, ymax;
+ ctx.save();
+ if (gd.length) {
+ if (showLine) {
+ // if we fill, we'll have to add points to close the curve.
+ if (fill) {
+ if (this.fillToZero) {
+ // have to break line up into shapes at axis crossings
+ var negativeColor = this.negativeColor;
+ if (! this.useNegativeColors) {
+ negativeColor = opts.fillStyle;
+ }
+ var isnegative = false;
+ var posfs = opts.fillStyle;
+
+ // if stoking line as well as filling, get a copy of line data.
+ if (fillAndStroke) {
+ var fasgd = gd.slice(0);
+ }
+ // if not stacked, fill down to axis
+ if (this.index == 0 || !this._stack) {
+
+ var tempgd = [];
+ var pd = (this.renderer.smooth) ? this.renderer._smoothedPlotData : this._plotData;
+ this._areaPoints = [];
+ var pyzero = this._yaxis.series_u2p(this.fillToValue);
+ var pxzero = this._xaxis.series_u2p(this.fillToValue);
+
+ opts.closePath = true;
+
+ if (this.fillAxis == 'y') {
+ tempgd.push([gd[0][0], pyzero]);
+ this._areaPoints.push([gd[0][0], pyzero]);
+
+ for (var i=0; i0; i--) {
+ gd.push(prev[i-1]);
+ // this._areaPoints.push(prev[i-1]);
+ }
+ if (shadow) {
+ this.renderer.shadowRenderer.draw(ctx, gd, opts);
+ }
+ this._areaPoints = gd;
+ this.renderer.shapeRenderer.draw(ctx, gd, opts);
+ }
+ }
+ /////////////////////////
+ // Not filled to zero
+ ////////////////////////
+ else {
+ // if stoking line as well as filling, get a copy of line data.
+ if (fillAndStroke) {
+ var fasgd = gd.slice(0);
+ }
+ // if not stacked, fill down to axis
+ if (this.index == 0 || !this._stack) {
+ // var gridymin = this._yaxis.series_u2p(this._yaxis.min) - this.gridBorderWidth / 2;
+ var gridymin = ctx.canvas.height;
+ // IE doesn't return new length on unshift
+ gd.unshift([gd[0][0], gridymin]);
+ var len = gd.length;
+ gd.push([gd[len - 1][0], gridymin]);
+ }
+ // if stacked, fill to line below
+ else {
+ var prev = this._prevGridData;
+ for (var i=prev.length; i>0; i--) {
+ gd.push(prev[i-1]);
+ }
+ }
+ this._areaPoints = gd;
+
+ if (shadow) {
+ this.renderer.shadowRenderer.draw(ctx, gd, opts);
+ }
+
+ this.renderer.shapeRenderer.draw(ctx, gd, opts);
+ }
+ if (fillAndStroke) {
+ var fasopts = $.extend(true, {}, opts, {fill:false, closePath:false});
+ this.renderer.shapeRenderer.draw(ctx, fasgd, fasopts);
+ //////////
+ // TODO: figure out some way to do shadows nicely
+ // if (shadow) {
+ // this.renderer.shadowRenderer.draw(ctx, fasgd, fasopts);
+ // }
+ // now draw the markers
+ if (this.markerRenderer.show) {
+ if (this.renderer.smooth) {
+ fasgd = this.gridData;
+ }
+ for (i=0; i p[0] || xmin == null) {
+ xmin = p[0];
+ }
+ if (ymax < p[1] || ymax == null) {
+ ymax = p[1];
+ }
+ if (xmax < p[0] || xmax == null) {
+ xmax = p[0];
+ }
+ if (ymin > p[1] || ymin == null) {
+ ymin = p[1];
+ }
+ }
+
+ if (this.type === 'line' && this.renderer.bands.show) {
+ ymax = this._yaxis.series_u2p(this.renderer.bands._min);
+ ymin = this._yaxis.series_u2p(this.renderer.bands._max);
+ }
+
+ this._boundingBox = [[xmin, ymax], [xmax, ymin]];
+
+ // now draw the markers
+ if (this.markerRenderer.show && !fill) {
+ if (this.renderer.smooth) {
+ gd = this.gridData;
+ }
+ for (i=0; i dim) {
+ dim = temp;
+ }
+ }
+ }
+ tick = null;
+ t = null;
+
+ if (lshow) {
+ w = this._label._elem.outerWidth(true);
+ h = this._label._elem.outerHeight(true);
+ }
+ if (this.name == 'xaxis') {
+ dim = dim + h;
+ this._elem.css({'height':dim+'px', left:'0px', bottom:'0px'});
+ }
+ else if (this.name == 'x2axis') {
+ dim = dim + h;
+ this._elem.css({'height':dim+'px', left:'0px', top:'0px'});
+ }
+ else if (this.name == 'yaxis') {
+ dim = dim + w;
+ this._elem.css({'width':dim+'px', left:'0px', top:'0px'});
+ if (lshow && this._label.constructor == $.jqplot.AxisLabelRenderer) {
+ this._label._elem.css('width', w+'px');
+ }
+ }
+ else {
+ dim = dim + w;
+ this._elem.css({'width':dim+'px', right:'0px', top:'0px'});
+ if (lshow && this._label.constructor == $.jqplot.AxisLabelRenderer) {
+ this._label._elem.css('width', w+'px');
+ }
+ }
+ }
+ };
+
+ // called with scope of axis
+ $.jqplot.LinearAxisRenderer.prototype.createTicks = function(plot) {
+ // we're are operating on an axis here
+ var ticks = this._ticks;
+ var userTicks = this.ticks;
+ var name = this.name;
+ // databounds were set on axis initialization.
+ var db = this._dataBounds;
+ var dim = (this.name.charAt(0) === 'x') ? this._plotDimensions.width : this._plotDimensions.height;
+ var interval;
+ var min, max;
+ var pos1, pos2;
+ var tt, i;
+ // get a copy of user's settings for min/max.
+ var userMin = this.min;
+ var userMax = this.max;
+ var userNT = this.numberTicks;
+ var userTI = this.tickInterval;
+
+ var threshold = 30;
+ this._scalefact = (Math.max(dim, threshold+1) - threshold)/300.0;
+
+ // if we already have ticks, use them.
+ // ticks must be in order of increasing value.
+
+ if (userTicks.length) {
+ // ticks could be 1D or 2D array of [val, val, ,,,] or [[val, label], [val, label], ...] or mixed
+ for (i=0; i this.breakPoints[0] && ut[0] <= this.breakPoints[1]) {
+ t.show = false;
+ t.showGridline = false;
+ t.label = ut[1];
+ }
+ else {
+ t.label = ut[1];
+ }
+ }
+ else {
+ t.label = ut[1];
+ }
+ t.setTick(ut[0], this.name);
+ this._ticks.push(t);
+ }
+
+ else if ($.isPlainObject(ut)) {
+ $.extend(true, t, ut);
+ t.axis = this.name;
+ this._ticks.push(t);
+ }
+
+ else {
+ t.value = ut;
+ if (this.breakPoints) {
+ if (ut == this.breakPoints[0]) {
+ t.label = this.breakTickLabel;
+ t._breakTick = true;
+ t.showGridline = false;
+ t.showMark = false;
+ }
+ else if (ut > this.breakPoints[0] && ut <= this.breakPoints[1]) {
+ t.show = false;
+ t.showGridline = false;
+ }
+ }
+ t.setTick(ut, this.name);
+ this._ticks.push(t);
+ }
+ }
+ this.numberTicks = userTicks.length;
+ this.min = this._ticks[0].value;
+ this.max = this._ticks[this.numberTicks-1].value;
+ this.tickInterval = (this.max - this.min) / (this.numberTicks - 1);
+ }
+
+ // we don't have any ticks yet, let's make some!
+ else {
+ if (name == 'xaxis' || name == 'x2axis') {
+ dim = this._plotDimensions.width;
+ }
+ else {
+ dim = this._plotDimensions.height;
+ }
+
+ var _numberTicks = this.numberTicks;
+
+ // if aligning this axis, use number of ticks from previous axis.
+ // Do I need to reset somehow if alignTicks is changed and then graph is replotted??
+ if (this.alignTicks) {
+ if (this.name === 'x2axis' && plot.axes.xaxis.show) {
+ _numberTicks = plot.axes.xaxis.numberTicks;
+ }
+ else if (this.name.charAt(0) === 'y' && this.name !== 'yaxis' && this.name !== 'yMidAxis' && plot.axes.yaxis.show) {
+ _numberTicks = plot.axes.yaxis.numberTicks;
+ }
+ }
+
+ min = ((this.min != null) ? this.min : db.min);
+ max = ((this.max != null) ? this.max : db.max);
+
+ var range = max - min;
+ var rmin, rmax;
+ var temp;
+
+ if (this.tickOptions == null || !this.tickOptions.formatString) {
+ this._overrideFormatString = true;
+ }
+
+ // Doing complete autoscaling
+ if (this.min == null && this.max == null && this.tickInterval == null && !this.autoscale) {
+ // Check if user must have tick at 0 or 100 and ensure they are in range.
+ // The autoscaling algorithm will always place ticks at 0 and 100 if they are in range.
+ if (this.forceTickAt0) {
+ if (min > 0) {
+ min = 0;
+ }
+ if (max < 0) {
+ max = 0;
+ }
+ }
+
+ if (this.forceTickAt100) {
+ if (min > 100) {
+ min = 100;
+ }
+ if (max < 100) {
+ max = 100;
+ }
+ }
+
+ // var threshold = 30;
+ // var tdim = Math.max(dim, threshold+1);
+ // this._scalefact = (tdim-threshold)/300.0;
+ var ret = $.jqplot.LinearTickGenerator(min, max, this._scalefact, _numberTicks);
+ // calculate a padded max and min, points should be less than these
+ // so that they aren't too close to the edges of the plot.
+ // User can adjust how much padding is allowed with pad, padMin and PadMax options.
+ var tumin = min + range*(this.padMin - 1);
+ var tumax = max - range*(this.padMax - 1);
+
+ // if they're equal, we shouldn't have to do anything, right?
+ // if (min <=tumin || max >= tumax) {
+ if (min tumax) {
+ tumin = min - range*(this.padMin - 1);
+ tumax = max + range*(this.padMax - 1);
+ ret = $.jqplot.LinearTickGenerator(tumin, tumax, this._scalefact, _numberTicks);
+ }
+
+ this.min = ret[0];
+ this.max = ret[1];
+ // if numberTicks specified, it should return the same.
+ this.numberTicks = ret[2];
+ this._autoFormatString = ret[3];
+ this.tickInterval = ret[4];
+ }
+
+ // User has specified some axis scale related option, can use auto algorithm
+ else {
+
+ // if min and max are same, space them out a bit
+ if (min == max) {
+ var adj = 0.05;
+ if (min > 0) {
+ adj = Math.max(Math.log(min)/Math.LN10, 0.05);
+ }
+ min -= adj;
+ max += adj;
+ }
+
+ // autoscale. Can't autoscale if min or max is supplied.
+ // Will use numberTicks and tickInterval if supplied. Ticks
+ // across multiple axes may not line up depending on how
+ // bars are to be plotted.
+ if (this.autoscale && this.min == null && this.max == null) {
+ var rrange, ti, margin;
+ var forceMinZero = false;
+ var forceZeroLine = false;
+ var intervals = {min:null, max:null, average:null, stddev:null};
+ // if any series are bars, or if any are fill to zero, and if this
+ // is the axis to fill toward, check to see if we can start axis at zero.
+ for (var i=0; i vmax) {
+ vmax = vals[j];
+ }
+ }
+ var dp = (vmax - vmin) / vmax;
+ // is this sries a bar?
+ if (s.renderer.constructor == $.jqplot.BarRenderer) {
+ // if no negative values and could also check range.
+ if (vmin >= 0 && (s.fillToZero || dp > 0.1)) {
+ forceMinZero = true;
+ }
+ else {
+ forceMinZero = false;
+ if (s.fill && s.fillToZero && vmin < 0 && vmax > 0) {
+ forceZeroLine = true;
+ }
+ else {
+ forceZeroLine = false;
+ }
+ }
+ }
+
+ // if not a bar and filling, use appropriate method.
+ else if (s.fill) {
+ if (vmin >= 0 && (s.fillToZero || dp > 0.1)) {
+ forceMinZero = true;
+ }
+ else if (vmin < 0 && vmax > 0 && s.fillToZero) {
+ forceMinZero = false;
+ forceZeroLine = true;
+ }
+ else {
+ forceMinZero = false;
+ forceZeroLine = false;
+ }
+ }
+
+ // if not a bar and not filling, only change existing state
+ // if it doesn't make sense
+ else if (vmin < 0) {
+ forceMinZero = false;
+ }
+ }
+ }
+
+ // check if we need make axis min at 0.
+ if (forceMinZero) {
+ // compute number of ticks
+ this.numberTicks = 2 + Math.ceil((dim-(this.tickSpacing-1))/this.tickSpacing);
+ this.min = 0;
+ userMin = 0;
+ // what order is this range?
+ // what tick interval does that give us?
+ ti = max/(this.numberTicks-1);
+ temp = Math.pow(10, Math.abs(Math.floor(Math.log(ti)/Math.LN10)));
+ if (ti/temp == parseInt(ti/temp, 10)) {
+ ti += temp;
+ }
+ this.tickInterval = Math.ceil(ti/temp) * temp;
+ this.max = this.tickInterval * (this.numberTicks - 1);
+ }
+
+ // check if we need to make sure there is a tick at 0.
+ else if (forceZeroLine) {
+ // compute number of ticks
+ this.numberTicks = 2 + Math.ceil((dim-(this.tickSpacing-1))/this.tickSpacing);
+ var ntmin = Math.ceil(Math.abs(min)/range*(this.numberTicks-1));
+ var ntmax = this.numberTicks - 1 - ntmin;
+ ti = Math.max(Math.abs(min/ntmin), Math.abs(max/ntmax));
+ temp = Math.pow(10, Math.abs(Math.floor(Math.log(ti)/Math.LN10)));
+ this.tickInterval = Math.ceil(ti/temp) * temp;
+ this.max = this.tickInterval * ntmax;
+ this.min = -this.tickInterval * ntmin;
+ }
+
+ // if nothing else, do autoscaling which will try to line up ticks across axes.
+ else {
+ if (this.numberTicks == null){
+ if (this.tickInterval) {
+ this.numberTicks = 3 + Math.ceil(range / this.tickInterval);
+ }
+ else {
+ this.numberTicks = 2 + Math.ceil((dim-(this.tickSpacing-1))/this.tickSpacing);
+ }
+ }
+
+ if (this.tickInterval == null) {
+ // get a tick interval
+ ti = range/(this.numberTicks - 1);
+
+ if (ti < 1) {
+ temp = Math.pow(10, Math.abs(Math.floor(Math.log(ti)/Math.LN10)));
+ }
+ else {
+ temp = 1;
+ }
+ this.tickInterval = Math.ceil(ti*temp*this.pad)/temp;
+ }
+ else {
+ temp = 1 / this.tickInterval;
+ }
+
+ // try to compute a nicer, more even tick interval
+ // temp = Math.pow(10, Math.floor(Math.log(ti)/Math.LN10));
+ // this.tickInterval = Math.ceil(ti/temp) * temp;
+ rrange = this.tickInterval * (this.numberTicks - 1);
+ margin = (rrange - range)/2;
+
+ if (this.min == null) {
+ this.min = Math.floor(temp*(min-margin))/temp;
+ }
+ if (this.max == null) {
+ this.max = this.min + rrange;
+ }
+ }
+
+ // Compute a somewhat decent format string if it is needed.
+ // get precision of interval and determine a format string.
+ var sf = $.jqplot.getSignificantFigures(this.tickInterval);
+
+ var fstr;
+
+ // if we have only a whole number, use integer formatting
+ if (sf.digitsLeft >= sf.significantDigits) {
+ fstr = '%d';
+ }
+
+ else {
+ var temp = Math.max(0, 5 - sf.digitsLeft);
+ temp = Math.min(temp, sf.digitsRight);
+ fstr = '%.'+ temp + 'f';
+ }
+
+ this._autoFormatString = fstr;
+ }
+
+ // Use the default algorithm which pads each axis to make the chart
+ // centered nicely on the grid.
+ else {
+
+ rmin = (this.min != null) ? this.min : min - range*(this.padMin - 1);
+ rmax = (this.max != null) ? this.max : max + range*(this.padMax - 1);
+ range = rmax - rmin;
+
+ if (this.numberTicks == null){
+ // if tickInterval is specified by user, we will ignore computed maximum.
+ // max will be equal or greater to fit even # of ticks.
+ if (this.tickInterval != null) {
+ this.numberTicks = Math.ceil((rmax - rmin)/this.tickInterval)+1;
+ }
+ else if (dim > 100) {
+ this.numberTicks = parseInt(3+(dim-100)/75, 10);
+ }
+ else {
+ this.numberTicks = 2;
+ }
+ }
+
+ if (this.tickInterval == null) {
+ this.tickInterval = range / (this.numberTicks-1);
+ }
+
+ if (this.max == null) {
+ rmax = rmin + this.tickInterval*(this.numberTicks - 1);
+ }
+ if (this.min == null) {
+ rmin = rmax - this.tickInterval*(this.numberTicks - 1);
+ }
+
+ // get precision of interval and determine a format string.
+ var sf = $.jqplot.getSignificantFigures(this.tickInterval);
+
+ var fstr;
+
+ // if we have only a whole number, use integer formatting
+ if (sf.digitsLeft >= sf.significantDigits) {
+ fstr = '%d';
+ }
+
+ else {
+ var temp = Math.max(0, 5 - sf.digitsLeft);
+ temp = Math.min(temp, sf.digitsRight);
+ fstr = '%.'+ temp + 'f';
+ }
+
+
+ this._autoFormatString = fstr;
+
+ this.min = rmin;
+ this.max = rmax;
+ }
+
+ if (this.renderer.constructor == $.jqplot.LinearAxisRenderer && this._autoFormatString == '') {
+ // fix for misleading tick display with small range and low precision.
+ range = this.max - this.min;
+ // figure out precision
+ var temptick = new this.tickRenderer(this.tickOptions);
+ // use the tick formatString or, the default.
+ var fs = temptick.formatString || $.jqplot.config.defaultTickFormatString;
+ var fs = fs.match($.jqplot.sprintf.regex)[0];
+ var precision = 0;
+ if (fs) {
+ if (fs.search(/[fFeEgGpP]/) > -1) {
+ var m = fs.match(/\%\.(\d{0,})?[eEfFgGpP]/);
+ if (m) {
+ precision = parseInt(m[1], 10);
+ }
+ else {
+ precision = 6;
+ }
+ }
+ else if (fs.search(/[di]/) > -1) {
+ precision = 0;
+ }
+ // fact will be <= 1;
+ var fact = Math.pow(10, -precision);
+ if (this.tickInterval < fact) {
+ // need to correct underrange
+ if (userNT == null && userTI == null) {
+ this.tickInterval = fact;
+ if (userMax == null && userMin == null) {
+ // this.min = Math.floor((this._dataBounds.min - this.tickInterval)/fact) * fact;
+ this.min = Math.floor(this._dataBounds.min/fact) * fact;
+ if (this.min == this._dataBounds.min) {
+ this.min = this._dataBounds.min - this.tickInterval;
+ }
+ // this.max = Math.ceil((this._dataBounds.max + this.tickInterval)/fact) * fact;
+ this.max = Math.ceil(this._dataBounds.max/fact) * fact;
+ if (this.max == this._dataBounds.max) {
+ this.max = this._dataBounds.max + this.tickInterval;
+ }
+ var n = (this.max - this.min)/this.tickInterval;
+ n = n.toFixed(11);
+ n = Math.ceil(n);
+ this.numberTicks = n + 1;
+ }
+ else if (userMax == null) {
+ // add one tick for top of range.
+ var n = (this._dataBounds.max - this.min) / this.tickInterval;
+ n = n.toFixed(11);
+ this.numberTicks = Math.ceil(n) + 2;
+ this.max = this.min + this.tickInterval * (this.numberTicks-1);
+ }
+ else if (userMin == null) {
+ // add one tick for bottom of range.
+ var n = (this.max - this._dataBounds.min) / this.tickInterval;
+ n = n.toFixed(11);
+ this.numberTicks = Math.ceil(n) + 2;
+ this.min = this.max - this.tickInterval * (this.numberTicks-1);
+ }
+ else {
+ // calculate a number of ticks so max is within axis scale
+ this.numberTicks = Math.ceil((userMax - userMin)/this.tickInterval) + 1;
+ // if user's min and max don't fit evenly in ticks, adjust.
+ // This takes care of cases such as user min set to 0, max set to 3.5 but tick
+ // format string set to %d (integer ticks)
+ this.min = Math.floor(userMin*Math.pow(10, precision))/Math.pow(10, precision);
+ this.max = Math.ceil(userMax*Math.pow(10, precision))/Math.pow(10, precision);
+ // this.max = this.min + this.tickInterval*(this.numberTicks-1);
+ this.numberTicks = Math.ceil((this.max - this.min)/this.tickInterval) + 1;
+ }
+ }
+ }
+ }
+ }
+
+ }
+
+ if (this._overrideFormatString && this._autoFormatString != '') {
+ this.tickOptions = this.tickOptions || {};
+ this.tickOptions.formatString = this._autoFormatString;
+ }
+
+ var t, to;
+ for (var i=0; i plot.axes.yaxis.renderer.resetTickValues.call(plot.axes.yaxis, yarr);
+ //
+ $.jqplot.LinearAxisRenderer.prototype.resetTickValues = function(opts) {
+ if ($.isArray(opts) && opts.length == this._ticks.length) {
+ var t;
+ for (var i=0; i this.breakPoints[0] && u < this.breakPoints[1]){
+ u = this.breakPoints[0];
+ }
+ if (u <= this.breakPoints[0]) {
+ return (u - min) * pixellength / unitlength + offmin;
+ }
+ else {
+ return (u - this.breakPoints[1] + this.breakPoints[0] - min) * pixellength / unitlength + offmin;
+ }
+ };
+
+ if (this.name.charAt(0) == 'x'){
+ this.series_u2p = function(u){
+ if (u > this.breakPoints[0] && u < this.breakPoints[1]){
+ u = this.breakPoints[0];
+ }
+ if (u <= this.breakPoints[0]) {
+ return (u - min) * pixellength / unitlength;
+ }
+ else {
+ return (u - this.breakPoints[1] + this.breakPoints[0] - min) * pixellength / unitlength;
+ }
+ };
+ this.series_p2u = function(p){
+ return p * unitlength / pixellength + min;
+ };
+ }
+
+ else {
+ this.series_u2p = function(u){
+ if (u > this.breakPoints[0] && u < this.breakPoints[1]){
+ u = this.breakPoints[0];
+ }
+ if (u >= this.breakPoints[1]) {
+ return (u - max) * pixellength / unitlength;
+ }
+ else {
+ return (u + this.breakPoints[1] - this.breakPoints[0] - max) * pixellength / unitlength;
+ }
+ };
+ this.series_p2u = function(p){
+ return p * unitlength / pixellength + max;
+ };
+ }
+ }
+ else {
+ this.p2u = function(p){
+ return (p - offmin) * unitlength / pixellength + min;
+ };
+
+ this.u2p = function(u){
+ return (u - min) * pixellength / unitlength + offmin;
+ };
+
+ if (this.name == 'xaxis' || this.name == 'x2axis'){
+ this.series_u2p = function(u){
+ return (u - min) * pixellength / unitlength;
+ };
+ this.series_p2u = function(p){
+ return p * unitlength / pixellength + min;
+ };
+ }
+
+ else {
+ this.series_u2p = function(u){
+ return (u - max) * pixellength / unitlength;
+ };
+ this.series_p2u = function(p){
+ return p * unitlength / pixellength + max;
+ };
+ }
+ }
+
+ if (this.show) {
+ if (this.name == 'xaxis' || this.name == 'x2axis') {
+ for (var i=0; i 0) {
+ shim = -t._textRenderer.height * Math.cos(-t._textRenderer.angle) / 2;
+ }
+ else {
+ shim = -t.getHeight() + t._textRenderer.height * Math.cos(t._textRenderer.angle) / 2;
+ }
+ break;
+ case 'middle':
+ // if (t.angle > 0) {
+ // shim = -t.getHeight()/2 + t._textRenderer.height * Math.sin(-t._textRenderer.angle) / 2;
+ // }
+ // else {
+ // shim = -t.getHeight()/2 - t._textRenderer.height * Math.sin(t._textRenderer.angle) / 2;
+ // }
+ shim = -t.getHeight()/2;
+ break;
+ default:
+ shim = -t.getHeight()/2;
+ break;
+ }
+ }
+ else {
+ shim = -t.getHeight()/2;
+ }
+
+ var val = this.u2p(t.value) + shim + 'px';
+ t._elem.css('top', val);
+ t.pack();
+ }
+ }
+ if (lshow) {
+ var h = this._label._elem.outerHeight(true);
+ this._label._elem.css('top', offmax - pixellength/2 - h/2 + 'px');
+ if (this.name == 'yaxis') {
+ this._label._elem.css('left', '0px');
+ }
+ else {
+ this._label._elem.css('right', '0px');
+ }
+ this._label.pack();
+ }
+ }
+ }
+
+ ticks = null;
+ };
+
+
+ /**
+ * The following code was generaously given to me a while back by Scott Prahl.
+ * He did a good job at computing axes min, max and number of ticks for the
+ * case where the user has not set any scale related parameters (tickInterval,
+ * numberTicks, min or max). I had ignored this use case for a long time,
+ * focusing on the more difficult case where user has set some option controlling
+ * tick generation. Anyway, about time I got this into jqPlot.
+ * Thanks Scott!!
+ */
+
+ /**
+ * Copyright (c) 2010 Scott Prahl
+ * The next three routines are currently available for use in all personal
+ * or commercial projects under both the MIT and GPL version 2.0 licenses.
+ * This means that you can choose the license that best suits your project
+ * and use it accordingly.
+ */
+
+ // A good format string depends on the interval. If the interval is greater
+ // than 1 then there is no need to show any decimal digits. If it is < 1.0, then
+ // use the magnitude of the interval to determine the number of digits to show.
+ function bestFormatString (interval)
+ {
+ var fstr;
+ interval = Math.abs(interval);
+ if (interval >= 10) {
+ fstr = '%d';
+ }
+
+ else if (interval > 1) {
+ if (interval === parseInt(interval, 10)) {
+ fstr = '%d';
+ }
+ else {
+ fstr = '%.1f';
+ }
+ }
+
+ else {
+ var expv = -Math.floor(Math.log(interval)/Math.LN10);
+ fstr = '%.' + expv + 'f';
+ }
+
+ return fstr;
+ }
+
+ var _factors = [0.1, 0.2, 0.3, 0.4, 0.5, 0.8, 1, 2, 3, 4, 5];
+
+ var _getLowerFactor = function(f) {
+ var i = _factors.indexOf(f);
+ if (i > 0) {
+ return _factors[i-1];
+ }
+ else {
+ return _factors[_factors.length - 1] / 100;
+ }
+ };
+
+ var _getHigherFactor = function(f) {
+ var i = _factors.indexOf(f);
+ if (i < _factors.length-1) {
+ return _factors[i+1];
+ }
+ else {
+ return _factors[0] * 100;
+ }
+ };
+
+ // Given a fixed minimum and maximum and a target number ot ticks
+ // figure out the best interval and
+ // return min, max, number ticks, format string and tick interval
+ function bestConstrainedInterval(min, max, nttarget) {
+ // run through possible number to ticks and see which interval is best
+ var low = Math.floor(nttarget/2);
+ var hi = Math.ceil(nttarget*1.5);
+ var badness = Number.MAX_VALUE;
+ var r = (max - min);
+ var temp;
+ var sd;
+ var bestNT;
+ var fsd;
+ var fs;
+ var gsf = $.jqplot.getSignificantFigures;
+ var currentNT;
+ var bestPrec;
+
+ for (var i=0, l=hi-low+1; i 5) {
+ interval = 10 * magnitude;
+ }
+ else if (residual > 2) {
+ interval = 5 * magnitude;
+ }
+ else if (residual > 1) {
+ interval = 2 * magnitude;
+ }
+ else {
+ interval = magnitude;
+ }
+ }
+ // for large ranges (whole integers), allow intervals like 3, 4 or powers of these.
+ // this helps a lot with poor choices for number of ticks.
+ else {
+ if (residual > 5) {
+ interval = 10 * magnitude;
+ }
+ else if (residual > 4) {
+ interval = 5 * magnitude;
+ }
+ else if (residual > 3) {
+ interval = 4 * magnitude;
+ }
+ else if (residual > 2) {
+ interval = 3 * magnitude;
+ }
+ else if (residual > 1) {
+ interval = 2 * magnitude;
+ }
+ else {
+ interval = magnitude;
+ }
+ }
+
+ return interval;
+ }
+
+ // This will return an interval of form 2 * 10^n, 5 * 10^n or 10 * 10^n
+ // it is based soley on the range of data, number of ticks must be computed later.
+ function bestLinearInterval(range, scalefact) {
+ scalefact = scalefact || 1;
+ var expv = Math.floor(Math.log(range)/Math.LN10);
+ var magnitude = Math.pow(10, expv);
+ // 0 < f < 10
+ var f = range / magnitude;
+ var fact;
+ // for large plots, scalefact will decrease f and increase number of ticks.
+ // for small plots, scalefact will increase f and decrease number of ticks.
+ f = f/scalefact;
+
+ // for large plots, smaller interval, more ticks.
+ if (f<=0.38) {
+ fact = 0.1;
+ }
+ else if (f<=1.6) {
+ fact = 0.2;
+ }
+ else if (f<=4.0) {
+ fact = 0.5;
+ }
+ else if (f<=8.0) {
+ fact = 1.0;
+ }
+ // for very small plots, larger interval, less ticks in number ticks
+ else if (f<=16.0) {
+ fact = 2;
+ }
+ else {
+ fact = 5;
+ }
+
+ return fact*magnitude;
+ }
+
+ function bestLinearComponents(range, scalefact) {
+ var expv = Math.floor(Math.log(range)/Math.LN10);
+ var magnitude = Math.pow(10, expv);
+ // 0 < f < 10
+ var f = range / magnitude;
+ var interval;
+ var fact;
+ // for large plots, scalefact will decrease f and increase number of ticks.
+ // for small plots, scalefact will increase f and decrease number of ticks.
+ f = f/scalefact;
+
+ // for large plots, smaller interval, more ticks.
+ if (f<=0.38) {
+ fact = 0.1;
+ }
+ else if (f<=1.6) {
+ fact = 0.2;
+ }
+ else if (f<=4.0) {
+ fact = 0.5;
+ }
+ else if (f<=8.0) {
+ fact = 1.0;
+ }
+ // for very small plots, larger interval, less ticks in number ticks
+ else if (f<=16.0) {
+ fact = 2;
+ }
+ // else if (f<=20.0) {
+ // fact = 3;
+ // }
+ // else if (f<=24.0) {
+ // fact = 4;
+ // }
+ else {
+ fact = 5;
+ }
+
+ interval = fact * magnitude;
+
+ return [interval, fact, magnitude];
+ }
+
+ // Given the min and max for a dataset, return suitable endpoints
+ // for the graphing, a good number for the number of ticks, and a
+ // format string so that extraneous digits are not displayed.
+ // returned is an array containing [min, max, nTicks, format]
+ $.jqplot.LinearTickGenerator = function(axis_min, axis_max, scalefact, numberTicks) {
+ // if endpoints are equal try to include zero otherwise include one
+ if (axis_min === axis_max) {
+ axis_max = (axis_max) ? 0 : 1;
+ }
+
+ scalefact = scalefact || 1.0;
+
+ // make sure range is positive
+ if (axis_max < axis_min) {
+ var a = axis_max;
+ axis_max = axis_min;
+ axis_min = a;
+ }
+
+ var r = [];
+ var ss = bestLinearInterval(axis_max - axis_min, scalefact);
+
+ if (numberTicks == null) {
+
+ // Figure out the axis min, max and number of ticks
+ // the min and max will be some multiple of the tick interval,
+ // 1*10^n, 2*10^n or 5*10^n. This gaurantees that, if the
+ // axis min is negative, 0 will be a tick.
+ r[0] = Math.floor(axis_min / ss) * ss; // min
+ r[1] = Math.ceil(axis_max / ss) * ss; // max
+ r[2] = Math.round((r[1]-r[0])/ss+1.0); // number of ticks
+ r[3] = bestFormatString(ss); // format string
+ r[4] = ss; // tick Interval
+ }
+
+ else {
+ var tempr = [];
+
+ // Figure out the axis min, max and number of ticks
+ // the min and max will be some multiple of the tick interval,
+ // 1*10^n, 2*10^n or 5*10^n. This gaurantees that, if the
+ // axis min is negative, 0 will be a tick.
+ tempr[0] = Math.floor(axis_min / ss) * ss; // min
+ tempr[1] = Math.ceil(axis_max / ss) * ss; // max
+ tempr[2] = Math.round((tempr[1]-tempr[0])/ss+1.0); // number of ticks
+ tempr[3] = bestFormatString(ss); // format string
+ tempr[4] = ss; // tick Interval
+
+ // first, see if we happen to get the right number of ticks
+ if (tempr[2] === numberTicks) {
+ r = tempr;
+ }
+
+ else {
+
+ var newti = bestInterval(tempr[1] - tempr[0], numberTicks);
+
+ r[0] = tempr[0];
+ r[2] = numberTicks;
+ r[4] = newti;
+ r[3] = bestFormatString(newti);
+ r[1] = r[0] + (r[2] - 1) * r[4]; // max
+ }
+ }
+
+ return r;
+ };
+
+ $.jqplot.LinearTickGenerator.bestLinearInterval = bestLinearInterval;
+ $.jqplot.LinearTickGenerator.bestInterval = bestInterval;
+ $.jqplot.LinearTickGenerator.bestLinearComponents = bestLinearComponents;
+ $.jqplot.LinearTickGenerator.bestConstrainedInterval = bestConstrainedInterval;
+
+
+ // class: $.jqplot.MarkerRenderer
+ // The default jqPlot marker renderer, rendering the points on the line.
+ $.jqplot.MarkerRenderer = function(options){
+ // Group: Properties
+
+ // prop: show
+ // wether or not to show the marker.
+ this.show = true;
+ // prop: style
+ // One of diamond, circle, square, x, plus, dash, filledDiamond, filledCircle, filledSquare
+ this.style = 'filledCircle';
+ // prop: lineWidth
+ // size of the line for non-filled markers.
+ this.lineWidth = 2;
+ // prop: size
+ // Size of the marker (diameter or circle, length of edge of square, etc.)
+ this.size = 9.0;
+ // prop: color
+ // color of marker. Will be set to color of series by default on init.
+ this.color = '#666666';
+ // prop: shadow
+ // wether or not to draw a shadow on the line
+ this.shadow = true;
+ // prop: shadowAngle
+ // Shadow angle in degrees
+ this.shadowAngle = 45;
+ // prop: shadowOffset
+ // Shadow offset from line in pixels
+ this.shadowOffset = 1;
+ // prop: shadowDepth
+ // Number of times shadow is stroked, each stroke offset shadowOffset from the last.
+ this.shadowDepth = 3;
+ // prop: shadowAlpha
+ // Alpha channel transparency of shadow. 0 = transparent.
+ this.shadowAlpha = '0.07';
+ // prop: shadowRenderer
+ // Renderer that will draws the shadows on the marker.
+ this.shadowRenderer = new $.jqplot.ShadowRenderer();
+ // prop: shapeRenderer
+ // Renderer that will draw the marker.
+ this.shapeRenderer = new $.jqplot.ShapeRenderer();
+
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ var sdopt = {angle:this.shadowAngle, offset:this.shadowOffset, alpha:this.shadowAlpha, lineWidth:this.lineWidth, depth:this.shadowDepth, closePath:true};
+ if (this.style.indexOf('filled') != -1) {
+ sdopt.fill = true;
+ }
+ if (this.style.indexOf('ircle') != -1) {
+ sdopt.isarc = true;
+ sdopt.closePath = false;
+ }
+ this.shadowRenderer.init(sdopt);
+
+ var shopt = {fill:false, isarc:false, strokeStyle:this.color, fillStyle:this.color, lineWidth:this.lineWidth, closePath:true};
+ if (this.style.indexOf('filled') != -1) {
+ shopt.fill = true;
+ }
+ if (this.style.indexOf('ircle') != -1) {
+ shopt.isarc = true;
+ shopt.closePath = false;
+ }
+ this.shapeRenderer.init(shopt);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawDiamond = function(x, y, ctx, fill, options) {
+ var stretch = 1.2;
+ var dx = this.size/2/stretch;
+ var dy = this.size/2*stretch;
+ var points = [[x-dx, y], [x, y+dy], [x+dx, y], [x, y-dy]];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points);
+ }
+ this.shapeRenderer.draw(ctx, points, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawPlus = function(x, y, ctx, fill, options) {
+ var stretch = 1.0;
+ var dx = this.size/2*stretch;
+ var dy = this.size/2*stretch;
+ var points1 = [[x, y-dy], [x, y+dy]];
+ var points2 = [[x+dx, y], [x-dx, y]];
+ var opts = $.extend(true, {}, this.options, {closePath:false});
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points1, {closePath:false});
+ this.shadowRenderer.draw(ctx, points2, {closePath:false});
+ }
+ this.shapeRenderer.draw(ctx, points1, opts);
+ this.shapeRenderer.draw(ctx, points2, opts);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawX = function(x, y, ctx, fill, options) {
+ var stretch = 1.0;
+ var dx = this.size/2*stretch;
+ var dy = this.size/2*stretch;
+ var opts = $.extend(true, {}, this.options, {closePath:false});
+ var points1 = [[x-dx, y-dy], [x+dx, y+dy]];
+ var points2 = [[x-dx, y+dy], [x+dx, y-dy]];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points1, {closePath:false});
+ this.shadowRenderer.draw(ctx, points2, {closePath:false});
+ }
+ this.shapeRenderer.draw(ctx, points1, opts);
+ this.shapeRenderer.draw(ctx, points2, opts);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawDash = function(x, y, ctx, fill, options) {
+ var stretch = 1.0;
+ var dx = this.size/2*stretch;
+ var dy = this.size/2*stretch;
+ var points = [[x-dx, y], [x+dx, y]];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points);
+ }
+ this.shapeRenderer.draw(ctx, points, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawLine = function(p1, p2, ctx, fill, options) {
+ var points = [p1, p2];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points);
+ }
+ this.shapeRenderer.draw(ctx, points, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawSquare = function(x, y, ctx, fill, options) {
+ var stretch = 1.0;
+ var dx = this.size/2/stretch;
+ var dy = this.size/2*stretch;
+ var points = [[x-dx, y-dy], [x-dx, y+dy], [x+dx, y+dy], [x+dx, y-dy]];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points);
+ }
+ this.shapeRenderer.draw(ctx, points, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.drawCircle = function(x, y, ctx, fill, options) {
+ var radius = this.size/2;
+ var end = 2*Math.PI;
+ var points = [x, y, radius, 0, end, true];
+ if (this.shadow) {
+ this.shadowRenderer.draw(ctx, points);
+ }
+ this.shapeRenderer.draw(ctx, points, options);
+ };
+
+ $.jqplot.MarkerRenderer.prototype.draw = function(x, y, ctx, options) {
+ options = options || {};
+ // hack here b/c shape renderer uses canvas based color style options
+ // and marker uses css style names.
+ if (options.show == null || options.show != false) {
+ if (options.color && !options.fillStyle) {
+ options.fillStyle = options.color;
+ }
+ if (options.color && !options.strokeStyle) {
+ options.strokeStyle = options.color;
+ }
+ switch (this.style) {
+ case 'diamond':
+ this.drawDiamond(x,y,ctx, false, options);
+ break;
+ case 'filledDiamond':
+ this.drawDiamond(x,y,ctx, true, options);
+ break;
+ case 'circle':
+ this.drawCircle(x,y,ctx, false, options);
+ break;
+ case 'filledCircle':
+ this.drawCircle(x,y,ctx, true, options);
+ break;
+ case 'square':
+ this.drawSquare(x,y,ctx, false, options);
+ break;
+ case 'filledSquare':
+ this.drawSquare(x,y,ctx, true, options);
+ break;
+ case 'x':
+ this.drawX(x,y,ctx, true, options);
+ break;
+ case 'plus':
+ this.drawPlus(x,y,ctx, true, options);
+ break;
+ case 'dash':
+ this.drawDash(x,y,ctx, true, options);
+ break;
+ case 'line':
+ this.drawLine(x, y, ctx, false, options);
+ break;
+ default:
+ this.drawDiamond(x,y,ctx, false, options);
+ break;
+ }
+ }
+ };
+
+ // class: $.jqplot.shadowRenderer
+ // The default jqPlot shadow renderer, rendering shadows behind shapes.
+ $.jqplot.ShadowRenderer = function(options){
+ // Group: Properties
+
+ // prop: angle
+ // Angle of the shadow in degrees. Measured counter-clockwise from the x axis.
+ this.angle = 45;
+ // prop: offset
+ // Pixel offset at the given shadow angle of each shadow stroke from the last stroke.
+ this.offset = 1;
+ // prop: alpha
+ // alpha transparency of shadow stroke.
+ this.alpha = 0.07;
+ // prop: lineWidth
+ // width of the shadow line stroke.
+ this.lineWidth = 1.5;
+ // prop: lineJoin
+ // How line segments of the shadow are joined.
+ this.lineJoin = 'miter';
+ // prop: lineCap
+ // how ends of the shadow line are rendered.
+ this.lineCap = 'round';
+ // prop; closePath
+ // whether line path segment is closed upon itself.
+ this.closePath = false;
+ // prop: fill
+ // whether to fill the shape.
+ this.fill = false;
+ // prop: depth
+ // how many times the shadow is stroked. Each stroke will be offset by offset at angle degrees.
+ this.depth = 3;
+ this.strokeStyle = 'rgba(0,0,0,0.1)';
+ // prop: isarc
+ // wether the shadow is an arc or not.
+ this.isarc = false;
+
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.ShadowRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ };
+
+ // function: draw
+ // draws an transparent black (i.e. gray) shadow.
+ //
+ // ctx - canvas drawing context
+ // points - array of points or [x, y, radius, start angle (rad), end angle (rad)]
+ $.jqplot.ShadowRenderer.prototype.draw = function(ctx, points, options) {
+ ctx.save();
+ var opts = (options != null) ? options : {};
+ var fill = (opts.fill != null) ? opts.fill : this.fill;
+ var fillRect = (opts.fillRect != null) ? opts.fillRect : this.fillRect;
+ var closePath = (opts.closePath != null) ? opts.closePath : this.closePath;
+ var offset = (opts.offset != null) ? opts.offset : this.offset;
+ var alpha = (opts.alpha != null) ? opts.alpha : this.alpha;
+ var depth = (opts.depth != null) ? opts.depth : this.depth;
+ var isarc = (opts.isarc != null) ? opts.isarc : this.isarc;
+ var linePattern = (opts.linePattern != null) ? opts.linePattern : this.linePattern;
+ ctx.lineWidth = (opts.lineWidth != null) ? opts.lineWidth : this.lineWidth;
+ ctx.lineJoin = (opts.lineJoin != null) ? opts.lineJoin : this.lineJoin;
+ ctx.lineCap = (opts.lineCap != null) ? opts.lineCap : this.lineCap;
+ ctx.strokeStyle = opts.strokeStyle || this.strokeStyle || 'rgba(0,0,0,'+alpha+')';
+ ctx.fillStyle = opts.fillStyle || this.fillStyle || 'rgba(0,0,0,'+alpha+')';
+ for (var j=0; j'+
+ // '
');
+ // elem.appendTo(tr);
+ if (this.escapeHtml) {
+ td.text(label);
+ }
+ else {
+ td.html(label);
+ }
+ }
+ td = null;
+ div0 = null;
+ div1 = null;
+ tr = null;
+ elem = null;
+ };
+
+ // called with scope of legend
+ $.jqplot.TableLegendRenderer.prototype.draw = function() {
+ if (this._elem) {
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ if (this.show) {
+ var series = this._series;
+ // make a table. one line label per row.
+ var elem = document.createElement('table');
+ this._elem = $(elem);
+ this._elem.addClass('jqplot-table-legend');
+
+ var ss = {position:'absolute'};
+ if (this.background) {
+ ss['background'] = this.background;
+ }
+ if (this.border) {
+ ss['border'] = this.border;
+ }
+ if (this.fontSize) {
+ ss['fontSize'] = this.fontSize;
+ }
+ if (this.fontFamily) {
+ ss['fontFamily'] = this.fontFamily;
+ }
+ if (this.textColor) {
+ ss['textColor'] = this.textColor;
+ }
+ if (this.marginTop != null) {
+ ss['marginTop'] = this.marginTop;
+ }
+ if (this.marginBottom != null) {
+ ss['marginBottom'] = this.marginBottom;
+ }
+ if (this.marginLeft != null) {
+ ss['marginLeft'] = this.marginLeft;
+ }
+ if (this.marginRight != null) {
+ ss['marginRight'] = this.marginRight;
+ }
+
+
+ var pad = false,
+ reverse = false,
+ s;
+ for (var i = 0; i< series.length; i++) {
+ s = series[i];
+ if (s._stack || s.renderer.constructor == $.jqplot.BezierCurveRenderer){
+ reverse = true;
+ }
+ if (s.show && s.showLabel) {
+ var lt = this.labels[i] || s.label.toString();
+ if (lt) {
+ var color = s.color;
+ if (reverse && i < series.length - 1){
+ pad = true;
+ }
+ else if (reverse && i == series.length - 1){
+ pad = false;
+ }
+ this.renderer.addrow.call(this, lt, color, pad, reverse);
+ pad = true;
+ }
+ // let plugins add more rows to legend. Used by trend line plugin.
+ for (var j=0; j<$.jqplot.addLegendRowHooks.length; j++) {
+ var item = $.jqplot.addLegendRowHooks[j].call(this, s);
+ if (item) {
+ this.renderer.addrow.call(this, item.label, item.color, pad);
+ pad = true;
+ }
+ }
+ lt = null;
+ }
+ }
+ }
+ return this._elem;
+ };
+
+ $.jqplot.TableLegendRenderer.prototype.pack = function(offsets) {
+ if (this.show) {
+ if (this.placement == 'insideGrid') {
+ switch (this.location) {
+ case 'nw':
+ var a = offsets.left;
+ var b = offsets.top;
+ this._elem.css('left', a);
+ this._elem.css('top', b);
+ break;
+ case 'n':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ var b = offsets.top;
+ this._elem.css('left', a);
+ this._elem.css('top', b);
+ break;
+ case 'ne':
+ var a = offsets.right;
+ var b = offsets.top;
+ this._elem.css({right:a, top:b});
+ break;
+ case 'e':
+ var a = offsets.right;
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({right:a, top:b});
+ break;
+ case 'se':
+ var a = offsets.right;
+ var b = offsets.bottom;
+ this._elem.css({right:a, bottom:b});
+ break;
+ case 's':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ var b = offsets.bottom;
+ this._elem.css({left:a, bottom:b});
+ break;
+ case 'sw':
+ var a = offsets.left;
+ var b = offsets.bottom;
+ this._elem.css({left:a, bottom:b});
+ break;
+ case 'w':
+ var a = offsets.left;
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({left:a, top:b});
+ break;
+ default: // same as 'se'
+ var a = offsets.right;
+ var b = offsets.bottom;
+ this._elem.css({right:a, bottom:b});
+ break;
+ }
+
+ }
+ else if (this.placement == 'outside'){
+ switch (this.location) {
+ case 'nw':
+ var a = this._plotDimensions.width - offsets.left;
+ var b = offsets.top;
+ this._elem.css('right', a);
+ this._elem.css('top', b);
+ break;
+ case 'n':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ var b = this._plotDimensions.height - offsets.top;
+ this._elem.css('left', a);
+ this._elem.css('bottom', b);
+ break;
+ case 'ne':
+ var a = this._plotDimensions.width - offsets.right;
+ var b = offsets.top;
+ this._elem.css({left:a, top:b});
+ break;
+ case 'e':
+ var a = this._plotDimensions.width - offsets.right;
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({left:a, top:b});
+ break;
+ case 'se':
+ var a = this._plotDimensions.width - offsets.right;
+ var b = offsets.bottom;
+ this._elem.css({left:a, bottom:b});
+ break;
+ case 's':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ var b = this._plotDimensions.height - offsets.bottom;
+ this._elem.css({left:a, top:b});
+ break;
+ case 'sw':
+ var a = this._plotDimensions.width - offsets.left;
+ var b = offsets.bottom;
+ this._elem.css({right:a, bottom:b});
+ break;
+ case 'w':
+ var a = this._plotDimensions.width - offsets.left;
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({right:a, top:b});
+ break;
+ default: // same as 'se'
+ var a = offsets.right;
+ var b = offsets.bottom;
+ this._elem.css({right:a, bottom:b});
+ break;
+ }
+ }
+ else {
+ switch (this.location) {
+ case 'nw':
+ this._elem.css({left:0, top:offsets.top});
+ break;
+ case 'n':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ this._elem.css({left: a, top:offsets.top});
+ break;
+ case 'ne':
+ this._elem.css({right:0, top:offsets.top});
+ break;
+ case 'e':
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({right:offsets.right, top:b});
+ break;
+ case 'se':
+ this._elem.css({right:offsets.right, bottom:offsets.bottom});
+ break;
+ case 's':
+ var a = (offsets.left + (this._plotDimensions.width - offsets.right))/2 - this.getWidth()/2;
+ this._elem.css({left: a, bottom:offsets.bottom});
+ break;
+ case 'sw':
+ this._elem.css({left:offsets.left, bottom:offsets.bottom});
+ break;
+ case 'w':
+ var b = (offsets.top + (this._plotDimensions.height - offsets.bottom))/2 - this.getHeight()/2;
+ this._elem.css({left:offsets.left, top:b});
+ break;
+ default: // same as 'se'
+ this._elem.css({right:offsets.right, bottom:offsets.bottom});
+ break;
+ }
+ }
+ }
+ };
+
+ /**
+ * Class: $.jqplot.ThemeEngine
+ * Theme Engine provides a programatic way to change some of the more
+ * common jqplot styling options such as fonts, colors and grid options.
+ * A theme engine instance is created with each plot. The theme engine
+ * manages a collection of themes which can be modified, added to, or
+ * applied to the plot.
+ *
+ * The themeEngine class is not instantiated directly.
+ * When a plot is initialized, the current plot options are scanned
+ * an a default theme named "Default" is created. This theme is
+ * used as the basis for other themes added to the theme engine and
+ * is always available.
+ *
+ * A theme is a simple javascript object with styling parameters for
+ * various entities of the plot. A theme has the form:
+ *
+ *
+ * > {
+ * > _name:f "Default",
+ * > target: {
+ * > backgroundColor: "transparent"
+ * > },
+ * > legend: {
+ * > textColor: null,
+ * > fontFamily: null,
+ * > fontSize: null,
+ * > border: null,
+ * > background: null
+ * > },
+ * > title: {
+ * > textColor: "rgb(102, 102, 102)",
+ * > fontFamily: "'Trebuchet MS',Arial,Helvetica,sans-serif",
+ * > fontSize: "19.2px",
+ * > textAlign: "center"
+ * > },
+ * > seriesStyles: {},
+ * > series: [{
+ * > color: "#4bb2c5",
+ * > lineWidth: 2.5,
+ * > linePattern: "solid",
+ * > shadow: true,
+ * > fillColor: "#4bb2c5",
+ * > showMarker: true,
+ * > markerOptions: {
+ * > color: "#4bb2c5",
+ * > show: true,
+ * > style: 'filledCircle',
+ * > lineWidth: 1.5,
+ * > size: 4,
+ * > shadow: true
+ * > }
+ * > }],
+ * > grid: {
+ * > drawGridlines: true,
+ * > gridLineColor: "#cccccc",
+ * > gridLineWidth: 1,
+ * > backgroundColor: "#fffdf6",
+ * > borderColor: "#999999",
+ * > borderWidth: 2,
+ * > shadow: true
+ * > },
+ * > axesStyles: {
+ * > label: {},
+ * > ticks: {}
+ * > },
+ * > axes: {
+ * > xaxis: {
+ * > borderColor: "#999999",
+ * > borderWidth: 2,
+ * > ticks: {
+ * > show: true,
+ * > showGridline: true,
+ * > showLabel: true,
+ * > showMark: true,
+ * > size: 4,
+ * > textColor: "",
+ * > whiteSpace: "nowrap",
+ * > fontSize: "12px",
+ * > fontFamily: "'Trebuchet MS',Arial,Helvetica,sans-serif"
+ * > },
+ * > label: {
+ * > textColor: "rgb(102, 102, 102)",
+ * > whiteSpace: "normal",
+ * > fontSize: "14.6667px",
+ * > fontFamily: "'Trebuchet MS',Arial,Helvetica,sans-serif",
+ * > fontWeight: "400"
+ * > }
+ * > },
+ * > yaxis: {
+ * > borderColor: "#999999",
+ * > borderWidth: 2,
+ * > ticks: {
+ * > show: true,
+ * > showGridline: true,
+ * > showLabel: true,
+ * > showMark: true,
+ * > size: 4,
+ * > textColor: "",
+ * > whiteSpace: "nowrap",
+ * > fontSize: "12px",
+ * > fontFamily: "'Trebuchet MS',Arial,Helvetica,sans-serif"
+ * > },
+ * > label: {
+ * > textColor: null,
+ * > whiteSpace: null,
+ * > fontSize: null,
+ * > fontFamily: null,
+ * > fontWeight: null
+ * > }
+ * > },
+ * > x2axis: {...
+ * > },
+ * > ...
+ * > y9axis: {...
+ * > }
+ * > }
+ * > }
+ *
+ * "seriesStyles" is a style object that will be applied to all series in the plot.
+ * It will forcibly override any styles applied on the individual series. "axesStyles" is
+ * a style object that will be applied to all axes in the plot. It will also forcibly
+ * override any styles on the individual axes.
+ *
+ * The example shown above has series options for a line series. Options for other
+ * series types are shown below:
+ *
+ * Bar Series:
+ *
+ * > {
+ * > color: "#4bb2c5",
+ * > seriesColors: ["#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"],
+ * > lineWidth: 2.5,
+ * > shadow: true,
+ * > barPadding: 2,
+ * > barMargin: 10,
+ * > barWidth: 15.09375,
+ * > highlightColors: ["rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)", "rgb(129,201,214)"]
+ * > }
+ *
+ * Pie Series:
+ *
+ * > {
+ * > seriesColors: ["#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"],
+ * > padding: 20,
+ * > sliceMargin: 0,
+ * > fill: true,
+ * > shadow: true,
+ * > startAngle: 0,
+ * > lineWidth: 2.5,
+ * > highlightColors: ["rgb(129,201,214)", "rgb(240,189,104)", "rgb(214,202,165)", "rgb(137,180,158)", "rgb(168,180,137)", "rgb(180,174,89)", "rgb(180,113,161)", "rgb(129,141,236)", "rgb(227,205,120)", "rgb(255,138,76)", "rgb(76,169,219)", "rgb(215,126,190)", "rgb(220,232,135)", "rgb(200,167,96)", "rgb(103,202,235)", "rgb(208,154,215)"]
+ * > }
+ *
+ * Funnel Series:
+ *
+ * > {
+ * > color: "#4bb2c5",
+ * > lineWidth: 2,
+ * > shadow: true,
+ * > padding: {
+ * > top: 20,
+ * > right: 20,
+ * > bottom: 20,
+ * > left: 20
+ * > },
+ * > sectionMargin: 6,
+ * > seriesColors: ["#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"],
+ * > highlightColors: ["rgb(147,208,220)", "rgb(242,199,126)", "rgb(220,210,178)", "rgb(154,191,172)", "rgb(180,191,154)", "rgb(191,186,112)", "rgb(191,133,174)", "rgb(147,157,238)", "rgb(231,212,139)", "rgb(255,154,102)", "rgb(102,181,224)", "rgb(221,144,199)", "rgb(225,235,152)", "rgb(200,167,96)", "rgb(124,210,238)", "rgb(215,169,221)"]
+ * > }
+ *
+ */
+ $.jqplot.ThemeEngine = function(){
+ // Group: Properties
+ //
+ // prop: themes
+ // hash of themes managed by the theme engine.
+ // Indexed by theme name.
+ this.themes = {};
+ // prop: activeTheme
+ // Pointer to currently active theme
+ this.activeTheme=null;
+
+ };
+
+ // called with scope of plot
+ $.jqplot.ThemeEngine.prototype.init = function() {
+ // get the Default theme from the current plot settings.
+ var th = new $.jqplot.Theme({_name:'Default'});
+ var n, i, nn;
+
+ for (n in th.target) {
+ if (n == "textColor") {
+ th.target[n] = this.target.css('color');
+ }
+ else {
+ th.target[n] = this.target.css(n);
+ }
+ }
+
+ if (this.title.show && this.title._elem) {
+ for (n in th.title) {
+ if (n == "textColor") {
+ th.title[n] = this.title._elem.css('color');
+ }
+ else {
+ th.title[n] = this.title._elem.css(n);
+ }
+ }
+ }
+
+ for (n in th.grid) {
+ th.grid[n] = this.grid[n];
+ }
+ if (th.grid.backgroundColor == null && this.grid.background != null) {
+ th.grid.backgroundColor = this.grid.background;
+ }
+ if (this.legend.show && this.legend._elem) {
+ for (n in th.legend) {
+ if (n == 'textColor') {
+ th.legend[n] = this.legend._elem.css('color');
+ }
+ else {
+ th.legend[n] = this.legend._elem.css(n);
+ }
+ }
+ }
+ var s;
+
+ for (i=0; i w) {
+ w = tempright;
+ }
+ if (tempbottom > h) {
+ h = tempbottom;
+ }
+ });
+ }
+
+ newCanvas.width = w + Number(x_offset);
+ newCanvas.height = h + Number(y_offset);
+
+ var newContext = newCanvas.getContext("2d");
+
+ newContext.save();
+ newContext.fillStyle = backgroundColor;
+ newContext.fillRect(0,0, newCanvas.width, newCanvas.height);
+ newContext.restore();
+
+ newContext.translate(transx, transy);
+ newContext.textAlign = 'left';
+ newContext.textBaseline = 'top';
+
+ function getLineheight(el) {
+ var lineheight = parseInt($(el).css('line-height'), 10);
+
+ if (isNaN(lineheight)) {
+ lineheight = parseInt($(el).css('font-size'), 10) * 1.2;
+ }
+ return lineheight;
+ }
+
+ function writeWrappedText (el, context, text, left, top, canvasWidth) {
+ var lineheight = getLineheight(el);
+ var tagwidth = $(el).innerWidth();
+ var tagheight = $(el).innerHeight();
+ var words = text.split(/\s+/);
+ var wl = words.length;
+ var w = '';
+ var breaks = [];
+ var temptop = top;
+ var templeft = left;
+
+ for (var i=0; i tagwidth) {
+ breaks.push(i);
+ w = '';
+ }
+ }
+ if (breaks.length === 0) {
+ // center text if necessary
+ if ($(el).css('textAlign') === 'center') {
+ templeft = left + (canvasWidth - context.measureText(w).width)/2 - transx;
+ }
+ context.fillText(text, templeft, top);
+ }
+ else {
+ w = words.slice(0, breaks[0]).join(' ');
+ // center text if necessary
+ if ($(el).css('textAlign') === 'center') {
+ templeft = left + (canvasWidth - context.measureText(w).width)/2 - transx;
+ }
+ context.fillText(w, templeft, temptop);
+ temptop += lineheight;
+ for (var i=1, l=breaks.length; i 0) {
+ newContext.strokeRect(left, top, $(el).innerWidth(), $(el).innerHeight());
+ }
+
+ // find all the swatches
+ $(el).find('div.jqplot-table-legend-swatch-outline').each(function() {
+ // get the first div and stroke it
+ var elem = $(this);
+ newContext.strokeStyle = elem.css('border-top-color');
+ var l = left + elem.position().left;
+ var t = top + elem.position().top;
+ newContext.strokeRect(l, t, elem.innerWidth(), elem.innerHeight());
+
+ // now fill the swatch
+
+ l += parseInt(elem.css('padding-left'), 10);
+ t += parseInt(elem.css('padding-top'), 10);
+ var h = elem.innerHeight() - 2 * parseInt(elem.css('padding-top'), 10);
+ var w = elem.innerWidth() - 2 * parseInt(elem.css('padding-left'), 10);
+
+ var swatch = elem.children('div.jqplot-table-legend-swatch');
+ newContext.fillStyle = swatch.css('background-color');
+ newContext.fillRect(l, t, w, h);
+ });
+
+ // now add text
+
+ $(el).find('td.jqplot-table-legend-label').each(function(){
+ var elem = $(this);
+ var l = left + elem.position().left;
+ var t = top + elem.position().top + parseInt(elem.css('padding-top'), 10);
+ newContext.font = elem.jqplotGetComputedFontStyle();
+ newContext.fillStyle = elem.css('color');
+ newContext.fillText(elem.text(), l, t);
+ });
+
+ var elem = null;
+ }
+
+ else if (tagname == 'canvas') {
+ newContext.drawImage(el, left, top);
+ }
+ }
+ $(this).children().each(function() {
+ _jqpToImage(this, x_offset, y_offset);
+ });
+ return newCanvas;
+ };
+
+ $.fn.jqplotToImageStr = function(options) {
+ var imgCanvas = $(this).jqplotToImageCanvas(options);
+ if (imgCanvas) {
+ return imgCanvas.toDataURL("image/png");
+ }
+ else {
+ return null;
+ }
+ };
+
+ // create an element and return it.
+ // Should work on canvas supporting browsers.
+ $.fn.jqplotToImageElem = function(options) {
+ var elem = document.createElement("img");
+ var str = $(this).jqplotToImageStr(options);
+ elem.src = str;
+ return elem;
+ };
+
+ // create an element and return it.
+ // Should work on canvas supporting browsers.
+ $.fn.jqplotToImageElemStr = function(options) {
+ var str = '';
+ return str;
+ };
+
+ // Not gauranteed to work, even on canvas supporting browsers due to
+ // limitations with location.href and browser support.
+ $.fn.jqplotSaveImage = function() {
+ var imgData = $(this).jqplotToImageStr({});
+ if (imgData) {
+ window.location.href = imgData.replace("image/png", "image/octet-stream");
+ }
+
+ };
+
+ // Not gauranteed to work, even on canvas supporting browsers due to
+ // limitations with window.open and arbitrary data.
+ $.fn.jqplotViewImage = function() {
+ var imgStr = $(this).jqplotToImageElemStr({});
+ var imgData = $(this).jqplotToImageStr({});
+ if (imgStr) {
+ var w = window.open('');
+ w.document.open("image/png");
+ w.document.write(imgStr);
+ w.document.close();
+ w = null;
+ }
+ };
+
+
+
+ /**
+ * @description
+ *
Object with extended date parsing and formatting capabilities.
+ * This library borrows many concepts and ideas from the Date Instance
+ * Methods by Ken Snyder along with some parts of Ken's actual code.
+ *
+ *
jsDate takes a different approach by not extending the built-in
+ * Date Object, improving date parsing, allowing for multiple formatting
+ * syntaxes and multiple and more easily expandable localization.
+ *
+ * @author Chris Leonello
+ * @date #date#
+ * @version #VERSION#
+ * @copyright (c) 2010 Chris Leonello
+ * jsDate is currently available for use in all personal or commercial projects
+ * under both the MIT and GPL version 2.0 licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ *
Ken's origianl Date Instance Methods and copyright notice:
+ *
+ * Ken Snyder (ken d snyder at gmail dot com)
+ * 2008-09-10
+ * version 2.0.2 (http://kendsnyder.com/sandbox/date/)
+ * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/)
+ *
+ *
+ * @class
+ * @name jsDate
+ * @param {String | Number | Array | Date Object | Options Object} arguments Optional arguments, either a parsable date/time string,
+ * a JavaScript timestamp, an array of numbers of form [year, month, day, hours, minutes, seconds, milliseconds],
+ * a Date object, or an options object of form {syntax: "perl", date:some Date} where all options are optional.
+ */
+
+ var jsDate = function () {
+
+ this.syntax = jsDate.config.syntax;
+ this._type = "jsDate";
+ this.proxy = new Date();
+ this.options = {};
+ this.locale = jsDate.regional.getLocale();
+ this.formatString = '';
+ this.defaultCentury = jsDate.config.defaultCentury;
+
+ switch ( arguments.length ) {
+ case 0:
+ break;
+ case 1:
+ // other objects either won't have a _type property or,
+ // if they do, it shouldn't be set to "jsDate", so
+ // assume it is an options argument.
+ if (get_type(arguments[0]) == "[object Object]" && arguments[0]._type != "jsDate") {
+ var opts = this.options = arguments[0];
+ this.syntax = opts.syntax || this.syntax;
+ this.defaultCentury = opts.defaultCentury || this.defaultCentury;
+ this.proxy = jsDate.createDate(opts.date);
+ }
+ else {
+ this.proxy = jsDate.createDate(arguments[0]);
+ }
+ break;
+ default:
+ var a = [];
+ for ( var i=0; i 0 ? 'floor' : 'ceil'](unitDiff));
+ };
+
+ /**
+ * Get the abbreviated name of the current week day
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getAbbrDayName = function() {
+ return jsDate.regional[this.locale]["dayNamesShort"][this.proxy.getDay()];
+ };
+
+ /**
+ * Get the abbreviated name of the current month
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getAbbrMonthName = function() {
+ return jsDate.regional[this.locale]["monthNamesShort"][this.proxy.getMonth()];
+ };
+
+ /**
+ * Get UPPER CASE AM or PM for the current time
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getAMPM = function() {
+ return this.proxy.getHours() >= 12 ? 'PM' : 'AM';
+ };
+
+ /**
+ * Get lower case am or pm for the current time
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getAmPm = function() {
+ return this.proxy.getHours() >= 12 ? 'pm' : 'am';
+ };
+
+ /**
+ * Get the century (19 for 20th Century)
+ *
+ * @returns {Integer} Century (19 for 20th century).
+ */
+ jsDate.prototype.getCentury = function() {
+ return parseInt(this.proxy.getFullYear()/100, 10);
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getDate = function() {
+ return this.proxy.getDate();
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getDay = function() {
+ return this.proxy.getDay();
+ };
+
+ /**
+ * Get the Day of week 1 (Monday) thru 7 (Sunday)
+ *
+ * @returns {Integer} Day of week 1 (Monday) thru 7 (Sunday)
+ */
+ jsDate.prototype.getDayOfWeek = function() {
+ var dow = this.proxy.getDay();
+ return dow===0?7:dow;
+ };
+
+ /**
+ * Get the day of the year
+ *
+ * @returns {Integer} 1 - 366, day of the year
+ */
+ jsDate.prototype.getDayOfYear = function() {
+ var d = this.proxy;
+ var ms = d - new Date('' + d.getFullYear() + '/1/1 GMT');
+ ms += d.getTimezoneOffset()*60000;
+ d = null;
+ return parseInt(ms/60000/60/24, 10)+1;
+ };
+
+ /**
+ * Get the name of the current week day
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getDayName = function() {
+ return jsDate.regional[this.locale]["dayNames"][this.proxy.getDay()];
+ };
+
+ /**
+ * Get the week number of the given year, starting with the first Sunday as the first week
+ * @returns {Integer} Week number (13 for the 13th full week of the year).
+ */
+ jsDate.prototype.getFullWeekOfYear = function() {
+ var d = this.proxy;
+ var doy = this.getDayOfYear();
+ var rdow = 6-d.getDay();
+ var woy = parseInt((doy+rdow)/7, 10);
+ return woy;
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getFullYear = function() {
+ return this.proxy.getFullYear();
+ };
+
+ /**
+ * Get the GMT offset in hours and minutes (e.g. +06:30)
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getGmtOffset = function() {
+ // divide the minutes offset by 60
+ var hours = this.proxy.getTimezoneOffset() / 60;
+ // decide if we are ahead of or behind GMT
+ var prefix = hours < 0 ? '+' : '-';
+ // remove the negative sign if any
+ hours = Math.abs(hours);
+ // add the +/- to the padded number of hours to : to the padded minutes
+ return prefix + addZeros(Math.floor(hours), 2) + ':' + addZeros((hours % 1) * 60, 2);
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getHours = function() {
+ return this.proxy.getHours();
+ };
+
+ /**
+ * Get the current hour on a 12-hour scheme
+ *
+ * @returns {Integer}
+ */
+
+ jsDate.prototype.getHours12 = function() {
+ var hours = this.proxy.getHours();
+ return hours > 12 ? hours - 12 : (hours == 0 ? 12 : hours);
+ };
+
+
+ jsDate.prototype.getIsoWeek = function() {
+ var d = this.proxy;
+ var woy = d.getWeekOfYear();
+ var dow1_1 = (new Date('' + d.getFullYear() + '/1/1')).getDay();
+ // First week is 01 and not 00 as in the case of %U and %W,
+ // so we add 1 to the final result except if day 1 of the year
+ // is a Monday (then %W returns 01).
+ // We also need to subtract 1 if the day 1 of the year is
+ // Friday-Sunday, so the resulting equation becomes:
+ var idow = woy + (dow1_1 > 4 || dow1_1 <= 1 ? 0 : 1);
+ if(idow == 53 && (new Date('' + d.getFullYear() + '/12/31')).getDay() < 4)
+ {
+ idow = 1;
+ }
+ else if(idow === 0)
+ {
+ d = new jsDate(new Date('' + (d.getFullYear()-1) + '/12/31'));
+ idow = d.getIsoWeek();
+ }
+ d = null;
+ return idow;
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getMilliseconds = function() {
+ return this.proxy.getMilliseconds();
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getMinutes = function() {
+ return this.proxy.getMinutes();
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getMonth = function() {
+ return this.proxy.getMonth();
+ };
+
+ /**
+ * Get the name of the current month
+ *
+ * @returns {String}
+ */
+
+ jsDate.prototype.getMonthName = function() {
+ return jsDate.regional[this.locale]["monthNames"][this.proxy.getMonth()];
+ };
+
+ /**
+ * Get the number of the current month, 1-12
+ *
+ * @returns {Integer}
+ */
+
+ jsDate.prototype.getMonthNumber = function() {
+ return this.proxy.getMonth() + 1;
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getSeconds = function() {
+ return this.proxy.getSeconds();
+ };
+
+ /**
+ * Return a proper two-digit year integer
+ *
+ * @returns {Integer}
+ */
+
+ jsDate.prototype.getShortYear = function() {
+ return this.proxy.getYear() % 100;
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getTime = function() {
+ return this.proxy.getTime();
+ };
+
+ /**
+ * Get the timezone abbreviation
+ *
+ * @returns {String} Abbreviation for the timezone
+ */
+ jsDate.prototype.getTimezoneAbbr = function() {
+ return this.proxy.toString().replace(/^.*\(([^)]+)\)$/, '$1');
+ };
+
+ /**
+ * Get the browser-reported name for the current timezone (e.g. MDT, Mountain Daylight Time)
+ *
+ * @returns {String}
+ */
+ jsDate.prototype.getTimezoneName = function() {
+ var match = /(?:\((.+)\)$| ([A-Z]{3}) )/.exec(this.toString());
+ return match[1] || match[2] || 'GMT' + this.getGmtOffset();
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getTimezoneOffset = function() {
+ return this.proxy.getTimezoneOffset();
+ };
+
+
+ /**
+ * Get the week number of the given year, starting with the first Monday as the first week
+ * @returns {Integer} Week number (13 for the 13th week of the year).
+ */
+ jsDate.prototype.getWeekOfYear = function() {
+ var doy = this.getDayOfYear();
+ var rdow = 7 - this.getDayOfWeek();
+ var woy = parseInt((doy+rdow)/7, 10);
+ return woy;
+ };
+
+ /**
+ * Get the current date as a Unix timestamp
+ *
+ * @returns {Integer}
+ */
+
+ jsDate.prototype.getUnix = function() {
+ return Math.round(this.proxy.getTime() / 1000, 0);
+ };
+
+ /**
+ * Implements Date functionality
+ */
+ jsDate.prototype.getYear = function() {
+ return this.proxy.getYear();
+ };
+
+ /**
+ * Return a date one day ahead (or any other unit)
+ *
+ * @param {String} unit Optional, year | month | day | week | hour | minute | second | millisecond
+ * @returns {jsDate}
+ */
+
+ jsDate.prototype.next = function(unit) {
+ unit = unit || 'day';
+ return this.clone().add(1, unit);
+ };
+
+ /**
+ * Set the jsDate instance to a new date.
+ *
+ * @param {String | Number | Array | Date Object | jsDate Object | Options Object} arguments Optional arguments,
+ * either a parsable date/time string,
+ * a JavaScript timestamp, an array of numbers of form [year, month, day, hours, minutes, seconds, milliseconds],
+ * a Date object, jsDate Object or an options object of form {syntax: "perl", date:some Date} where all options are optional.
+ */
+ jsDate.prototype.set = function() {
+ switch ( arguments.length ) {
+ case 0:
+ this.proxy = new Date();
+ break;
+ case 1:
+ // other objects either won't have a _type property or,
+ // if they do, it shouldn't be set to "jsDate", so
+ // assume it is an options argument.
+ if (get_type(arguments[0]) == "[object Object]" && arguments[0]._type != "jsDate") {
+ var opts = this.options = arguments[0];
+ this.syntax = opts.syntax || this.syntax;
+ this.defaultCentury = opts.defaultCentury || this.defaultCentury;
+ this.proxy = jsDate.createDate(opts.date);
+ }
+ else {
+ this.proxy = jsDate.createDate(arguments[0]);
+ }
+ break;
+ default:
+ var a = [];
+ for ( var i=0; ijsDate attempts to detect locale when loaded and defaults to 'en'.
+ * If a localization is detected which is not available, jsDate defaults to 'en'.
+ * Additional localizations can be added after jsDate loads. After adding a localization,
+ * call the jsDate.regional.getLocale() method. Currently, en, fr and de are defined.
+ *
+ *
Localizations must be an object and have the following properties defined: monthNames, monthNamesShort, dayNames, dayNamesShort and Localizations are added like:
+ *
+ * jsDate.regional['en'] = {
+ * monthNames : 'January February March April May June July August September October November December'.split(' '),
+ * monthNamesShort : 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' '),
+ * dayNames : 'Sunday Monday Tuesday Wednesday Thursday Friday Saturday'.split(' '),
+ * dayNamesShort : 'Sun Mon Tue Wed Thu Fri Sat'.split(' ')
+ * };
+ *
+ *
After adding localizations, call jsDate.regional.getLocale(); to update the locale setting with the
+ * new localizations.
+ */
+
+ jsDate.regional = {
+ 'en': {
+ monthNames: ['January','February','March','April','May','June','July','August','September','October','November','December'],
+ monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun','Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
+ dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
+ dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'fr': {
+ monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
+ monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun','Jul','Aoû','Sep','Oct','Nov','Déc'],
+ dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
+ dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'de': {
+ monthNames: ['Januar','Februar','März','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
+ monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Dez'],
+ dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
+ dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'es': {
+ monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
+ monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', 'Jul','Ago','Sep','Oct','Nov','Dic'],
+ dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
+ dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'ru': {
+ monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь','Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
+ monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн','Июл','Авг','Сен','Окт','Ноя','Дек'],
+ dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
+ dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'ar': {
+ monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'آذار', 'حزيران','تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],
+ monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
+ dayNames: ['السبت', 'الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة'],
+ dayNamesShort: ['سبت', 'أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'pt': {
+ monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
+ monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez'],
+ dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
+ dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ },
+
+ 'pt-BR': {
+ monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
+ monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez'],
+ dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
+ dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
+ formatString: '%Y-%m-%d %H:%M:%S'
+ }
+
+
+ };
+
+ // Set english variants to 'en'
+ jsDate.regional['en-US'] = jsDate.regional['en-GB'] = jsDate.regional['en'];
+
+ /**
+ * Try to determine the users locale based on the lang attribute of the html page. Defaults to 'en'
+ * if it cannot figure out a locale of if the locale does not have a localization defined.
+ * @returns {String} locale
+ */
+
+ jsDate.regional.getLocale = function () {
+ var l = jsDate.config.defaultLocale;
+
+ if ( document && document.getElementsByTagName('html') && document.getElementsByTagName('html')[0].lang ) {
+ l = document.getElementsByTagName('html')[0].lang;
+ if (!jsDate.regional.hasOwnProperty(l)) {
+ l = jsDate.config.defaultLocale;
+ }
+ }
+
+ return l;
+ };
+
+ // ms in day
+ var day = 24 * 60 * 60 * 1000;
+
+ // padd a number with zeros
+ var addZeros = function(num, digits) {
+ num = String(num);
+ var i = digits - num.length;
+ var s = String(Math.pow(10, i)).slice(1);
+ return s.concat(num);
+ };
+
+ // representations used for calculating differences between dates.
+ // This borrows heavily from Ken Snyder's work.
+ var multipliers = {
+ millisecond: 1,
+ second: 1000,
+ minute: 60 * 1000,
+ hour: 60 * 60 * 1000,
+ day: day,
+ week: 7 * day,
+ month: {
+ // add a number of months
+ add: function(d, number) {
+ // add any years needed (increments of 12)
+ multipliers.year.add(d, Math[number > 0 ? 'floor' : 'ceil'](number / 12));
+ // ensure that we properly wrap betwen December and January
+ // 11 % 12 = 11
+ // 12 % 12 = 0
+ var prevMonth = d.getMonth() + (number % 12);
+ if (prevMonth == 12) {
+ prevMonth = 0;
+ d.setYear(d.getFullYear() + 1);
+ } else if (prevMonth == -1) {
+ prevMonth = 11;
+ d.setYear(d.getFullYear() - 1);
+ }
+ d.setMonth(prevMonth);
+ },
+ // get the number of months between two Date objects (decimal to the nearest day)
+ diff: function(d1, d2) {
+ // get the number of years
+ var diffYears = d1.getFullYear() - d2.getFullYear();
+ // get the number of remaining months
+ var diffMonths = d1.getMonth() - d2.getMonth() + (diffYears * 12);
+ // get the number of remaining days
+ var diffDays = d1.getDate() - d2.getDate();
+ // return the month difference with the days difference as a decimal
+ return diffMonths + (diffDays / 30);
+ }
+ },
+ year: {
+ // add a number of years
+ add: function(d, number) {
+ d.setYear(d.getFullYear() + Math[number > 0 ? 'floor' : 'ceil'](number));
+ },
+ // get the number of years between two Date objects (decimal to the nearest day)
+ diff: function(d1, d2) {
+ return multipliers.month.diff(d1, d2) / 12;
+ }
+ }
+ };
+ //
+ // Alias each multiplier with an 's' to allow 'year' and 'years' for example.
+ // This comes from Ken Snyders work.
+ //
+ for (var unit in multipliers) {
+ if (unit.substring(unit.length - 1) != 's') { // IE will iterate newly added properties :|
+ multipliers[unit + 's'] = multipliers[unit];
+ }
+ }
+
+ //
+ // take a jsDate instance and a format code and return the formatted value.
+ // This is a somewhat modified version of Ken Snyder's method.
+ //
+ var format = function(d, code, syntax) {
+ // if shorcut codes are used, recursively expand those.
+ if (jsDate.formats[syntax]["shortcuts"][code]) {
+ return jsDate.strftime(d, jsDate.formats[syntax]["shortcuts"][code], syntax);
+ } else {
+ // get the format code function and addZeros() argument
+ var getter = (jsDate.formats[syntax]["codes"][code] || '').split('.');
+ var nbr = d['get' + getter[0]] ? d['get' + getter[0]]() : '';
+ if (getter[1]) {
+ nbr = addZeros(nbr, getter[1]);
+ }
+ return nbr;
+ }
+ };
+
+ /**
+ * @static
+ * Static function for convert a date to a string according to a given format. Also acts as namespace for strftime format codes.
+ *
strftime formatting can be accomplished without creating a jsDate object by calling jsDate.strftime():
+ * @param {String | Number | Array | jsDate Object | Date Object} date A parsable date string, JavaScript time stamp, Array of form [year, month, day, hours, minutes, seconds, milliseconds], jsDate Object or Date object.
+ * @param {String} formatString String with embedded date formatting codes.
+ * See: {@link jsDate.formats}.
+ * @param {String} syntax Optional syntax to use [default perl].
+ * @param {String} locale Optional locale to use.
+ * @returns {String} Formatted representation of the date.
+ */
+ //
+ // Logic as implemented here is very similar to Ken Snyder's Date Instance Methods.
+ //
+ jsDate.strftime = function(d, formatString, syntax, locale) {
+ var syn = 'perl';
+ var loc = jsDate.regional.getLocale();
+
+ // check if syntax and locale are available or reversed
+ if (syntax && jsDate.formats.hasOwnProperty(syntax)) {
+ syn = syntax;
+ }
+ else if (syntax && jsDate.regional.hasOwnProperty(syntax)) {
+ loc = syntax;
+ }
+
+ if (locale && jsDate.formats.hasOwnProperty(locale)) {
+ syn = locale;
+ }
+ else if (locale && jsDate.regional.hasOwnProperty(locale)) {
+ loc = locale;
+ }
+
+ if (get_type(d) != "[object Object]" || d._type != "jsDate") {
+ d = new jsDate(d);
+ d.locale = loc;
+ }
+ if (!formatString) {
+ formatString = d.formatString || jsDate.regional[loc]['formatString'];
+ }
+ // default the format string to year-month-day
+ var source = formatString || '%Y-%m-%d',
+ result = '',
+ match;
+ // replace each format code
+ while (source.length > 0) {
+ if (match = source.match(jsDate.formats[syn].codes.matcher)) {
+ result += source.slice(0, match.index);
+ result += (match[1] || '') + format(d, match[2], syn);
+ source = source.slice(match.index + match[0].length);
+ } else {
+ result += source;
+ source = '';
+ }
+ }
+ return result;
+ };
+
+ /**
+ * @namespace
+ * Namespace to hold format codes and format shortcuts. "perl" and "php" format codes
+ * and shortcuts are defined by default. Additional codes and shortcuts can be
+ * added like:
+ *
+ *
+ * jsDate.formats["perl"] = {
+ * "codes": {
+ * matcher: /someregex/,
+ * Y: "fullYear", // name of "get" method without the "get",
+ * ..., // more codes
+ * },
+ * "shortcuts": {
+ * F: '%Y-%m-%d',
+ * ..., // more shortcuts
+ * }
+ * };
+ *
+ *
+ *
Additionally, ISO and SQL shortcuts are defined and can be accesses via:
+ * jsDate.formats.ISO and jsDate.formats.SQL
+ */
+
+ jsDate.formats = {
+ ISO:'%Y-%m-%dT%H:%M:%S.%N%G',
+ SQL:'%Y-%m-%d %H:%M:%S'
+ };
+
+ /**
+ * Perl format codes and shortcuts for strftime.
+ *
+ * A hash (object) of codes where each code must be an array where the first member is
+ * the name of a Date.prototype or jsDate.prototype function to call
+ * and optionally a second member indicating the number to pass to addZeros()
+ *
+ *
The following format codes are defined:
+ *
+ *
+ * Code Result Description
+ * == Years ==
+ * %Y 2008 Four-digit year
+ * %y 08 Two-digit year
+ *
+ * == Months ==
+ * %m 09 Two-digit month
+ * %#m 9 One or two-digit month
+ * %B September Full month name
+ * %b Sep Abbreviated month name
+ *
+ * == Days ==
+ * %d 05 Two-digit day of month
+ * %#d 5 One or two-digit day of month
+ * %e 5 One or two-digit day of month
+ * %A Sunday Full name of the day of the week
+ * %a Sun Abbreviated name of the day of the week
+ * %w 0 Number of the day of the week (0 = Sunday, 6 = Saturday)
+ *
+ * == Hours ==
+ * %H 23 Hours in 24-hour format (two digits)
+ * %#H 3 Hours in 24-hour integer format (one or two digits)
+ * %I 11 Hours in 12-hour format (two digits)
+ * %#I 3 Hours in 12-hour integer format (one or two digits)
+ * %p PM AM or PM
+ *
+ * == Minutes ==
+ * %M 09 Minutes (two digits)
+ * %#M 9 Minutes (one or two digits)
+ *
+ * == Seconds ==
+ * %S 02 Seconds (two digits)
+ * %#S 2 Seconds (one or two digits)
+ * %s 1206567625723 Unix timestamp (Seconds past 1970-01-01 00:00:00)
+ *
+ * == Milliseconds ==
+ * %N 008 Milliseconds (three digits)
+ * %#N 8 Milliseconds (one to three digits)
+ *
+ * == Timezone ==
+ * %O 360 difference in minutes between local time and GMT
+ * %Z Mountain Standard Time Name of timezone as reported by browser
+ * %G 06:00 Hours and minutes between GMT
+ *
+ * == Shortcuts ==
+ * %F 2008-03-26 %Y-%m-%d
+ * %T 05:06:30 %H:%M:%S
+ * %X 05:06:30 %H:%M:%S
+ * %x 03/26/08 %m/%d/%y
+ * %D 03/26/08 %m/%d/%y
+ * %#c Wed Mar 26 15:31:00 2008 %a %b %e %H:%M:%S %Y
+ * %v 3-Sep-2008 %e-%b-%Y
+ * %R 15:31 %H:%M
+ * %r 03:31:00 PM %I:%M:%S %p
+ *
+ * == Characters ==
+ * %n \n Newline
+ * %t \t Tab
+ * %% % Percent Symbol
+ *
+ *
+ *
Formatting shortcuts that will be translated into their longer version.
+ * Be sure that format shortcuts do not refer to themselves: this will cause an infinite loop.
+ *
+ *
Format codes and format shortcuts can be redefined after the jsDate
+ * module is imported.
+ *
+ *
Note that if you redefine the whole hash (object), you must supply a "matcher"
+ * regex for the parser. The default matcher is:
+ *
+ * /()%(#?(%|[a-z]))/i
+ *
+ *
which corresponds to the Perl syntax used by default.
+ *
+ *
By customizing the matcher and format codes, nearly any strftime functionality is possible.
+ */
+
+ jsDate.formats.perl = {
+ codes: {
+ //
+ // 2-part regex matcher for format codes
+ //
+ // first match must be the character before the code (to account for escaping)
+ // second match must be the format code character(s)
+ //
+ matcher: /()%(#?(%|[a-z]))/i,
+ // year
+ Y: 'FullYear',
+ y: 'ShortYear.2',
+ // month
+ m: 'MonthNumber.2',
+ '#m': 'MonthNumber',
+ B: 'MonthName',
+ b: 'AbbrMonthName',
+ // day
+ d: 'Date.2',
+ '#d': 'Date',
+ e: 'Date',
+ A: 'DayName',
+ a: 'AbbrDayName',
+ w: 'Day',
+ // hours
+ H: 'Hours.2',
+ '#H': 'Hours',
+ I: 'Hours12.2',
+ '#I': 'Hours12',
+ p: 'AMPM',
+ // minutes
+ M: 'Minutes.2',
+ '#M': 'Minutes',
+ // seconds
+ S: 'Seconds.2',
+ '#S': 'Seconds',
+ s: 'Unix',
+ // milliseconds
+ N: 'Milliseconds.3',
+ '#N': 'Milliseconds',
+ // timezone
+ O: 'TimezoneOffset',
+ Z: 'TimezoneName',
+ G: 'GmtOffset'
+ },
+
+ shortcuts: {
+ // date
+ F: '%Y-%m-%d',
+ // time
+ T: '%H:%M:%S',
+ X: '%H:%M:%S',
+ // local format date
+ x: '%m/%d/%y',
+ D: '%m/%d/%y',
+ // local format extended
+ '#c': '%a %b %e %H:%M:%S %Y',
+ // local format short
+ v: '%e-%b-%Y',
+ R: '%H:%M',
+ r: '%I:%M:%S %p',
+ // tab and newline
+ t: '\t',
+ n: '\n',
+ '%': '%'
+ }
+ };
+
+ /**
+ * PHP format codes and shortcuts for strftime.
+ *
+ * A hash (object) of codes where each code must be an array where the first member is
+ * the name of a Date.prototype or jsDate.prototype function to call
+ * and optionally a second member indicating the number to pass to addZeros()
+ *
+ *
The following format codes are defined:
+ *
+ *
+ * Code Result Description
+ * === Days ===
+ * %a Sun through Sat An abbreviated textual representation of the day
+ * %A Sunday - Saturday A full textual representation of the day
+ * %d 01 to 31 Two-digit day of the month (with leading zeros)
+ * %e 1 to 31 Day of the month, with a space preceding single digits.
+ * %j 001 to 366 Day of the year, 3 digits with leading zeros
+ * %u 1 - 7 (Mon - Sun) ISO-8601 numeric representation of the day of the week
+ * %w 0 - 6 (Sun - Sat) Numeric representation of the day of the week
+ *
+ * === Week ===
+ * %U 13 Full Week number, starting with the first Sunday as the first week
+ * %V 01 through 53 ISO-8601:1988 week number, starting with the first week of the year
+ * with at least 4 weekdays, with Monday being the start of the week
+ * %W 46 A numeric representation of the week of the year,
+ * starting with the first Monday as the first week
+ * === Month ===
+ * %b Jan through Dec Abbreviated month name, based on the locale
+ * %B January - December Full month name, based on the locale
+ * %h Jan through Dec Abbreviated month name, based on the locale (an alias of %b)
+ * %m 01 - 12 (Jan - Dec) Two digit representation of the month
+ *
+ * === Year ===
+ * %C 19 Two digit century (year/100, truncated to an integer)
+ * %y 09 for 2009 Two digit year
+ * %Y 2038 Four digit year
+ *
+ * === Time ===
+ * %H 00 through 23 Two digit representation of the hour in 24-hour format
+ * %I 01 through 12 Two digit representation of the hour in 12-hour format
+ * %l 1 through 12 Hour in 12-hour format, with a space preceeding single digits
+ * %M 00 through 59 Two digit representation of the minute
+ * %p AM/PM UPPER-CASE 'AM' or 'PM' based on the given time
+ * %P am/pm lower-case 'am' or 'pm' based on the given time
+ * %r 09:34:17 PM Same as %I:%M:%S %p
+ * %R 00:35 Same as %H:%M
+ * %S 00 through 59 Two digit representation of the second
+ * %T 21:34:17 Same as %H:%M:%S
+ * %X 03:59:16 Preferred time representation based on locale, without the date
+ * %z -0500 or EST Either the time zone offset from UTC or the abbreviation
+ * %Z -0500 or EST The time zone offset/abbreviation option NOT given by %z
+ *
+ * === Time and Date ===
+ * %D 02/05/09 Same as %m/%d/%y
+ * %F 2009-02-05 Same as %Y-%m-%d (commonly used in database datestamps)
+ * %s 305815200 Unix Epoch Time timestamp (same as the time() function)
+ * %x 02/05/09 Preferred date representation, without the time
+ *
+ * === Miscellaneous ===
+ * %n --- A newline character (\n)
+ * %t --- A Tab character (\t)
+ * %% --- A literal percentage character (%)
+ *
+ */
+
+ jsDate.formats.php = {
+ codes: {
+ //
+ // 2-part regex matcher for format codes
+ //
+ // first match must be the character before the code (to account for escaping)
+ // second match must be the format code character(s)
+ //
+ matcher: /()%((%|[a-z]))/i,
+ // day
+ a: 'AbbrDayName',
+ A: 'DayName',
+ d: 'Date.2',
+ e: 'Date',
+ j: 'DayOfYear.3',
+ u: 'DayOfWeek',
+ w: 'Day',
+ // week
+ U: 'FullWeekOfYear.2',
+ V: 'IsoWeek.2',
+ W: 'WeekOfYear.2',
+ // month
+ b: 'AbbrMonthName',
+ B: 'MonthName',
+ m: 'MonthNumber.2',
+ h: 'AbbrMonthName',
+ // year
+ C: 'Century.2',
+ y: 'ShortYear.2',
+ Y: 'FullYear',
+ // time
+ H: 'Hours.2',
+ I: 'Hours12.2',
+ l: 'Hours12',
+ p: 'AMPM',
+ P: 'AmPm',
+ M: 'Minutes.2',
+ S: 'Seconds.2',
+ s: 'Unix',
+ O: 'TimezoneOffset',
+ z: 'GmtOffset',
+ Z: 'TimezoneAbbr'
+ },
+
+ shortcuts: {
+ D: '%m/%d/%y',
+ F: '%Y-%m-%d',
+ T: '%H:%M:%S',
+ X: '%H:%M:%S',
+ x: '%m/%d/%y',
+ R: '%H:%M',
+ r: '%I:%M:%S %p',
+ t: '\t',
+ n: '\n',
+ '%': '%'
+ }
+ };
+ //
+ // Conceptually, the logic implemented here is similar to Ken Snyder's Date Instance Methods.
+ // I use his idea of a set of parsers which can be regular expressions or functions,
+ // iterating through those, and then seeing if Date.parse() will create a date.
+ // The parser expressions and functions are a little different and some bugs have been
+ // worked out. Also, a lot of "pre-parsing" is done to fix implementation
+ // variations of Date.parse() between browsers.
+ //
+ jsDate.createDate = function(date) {
+ // if passing in multiple arguments, try Date constructor
+ if (date == null) {
+ return new Date();
+ }
+ // If the passed value is already a date object, return it
+ if (date instanceof Date) {
+ return date;
+ }
+ // if (typeof date == 'number') return new Date(date * 1000);
+ // If the passed value is an integer, interpret it as a javascript timestamp
+ if (typeof date == 'number') {
+ return new Date(date);
+ }
+
+ // Before passing strings into Date.parse(), have to normalize them for certain conditions.
+ // If strings are not formatted staccording to the EcmaScript spec, results from Date parse will be implementation dependent.
+ //
+ // For example:
+ // * FF and Opera assume 2 digit dates are pre y2k, Chome assumes <50 is pre y2k, 50+ is 21st century.
+ // * Chrome will correctly parse '1984-1-25' into localtime, FF and Opera will not parse.
+ // * Both FF, Chrome and Opera will parse '1984/1/25' into localtime.
+
+ // remove leading and trailing spaces
+ var parsable = String(date).replace(/^\s*(.+)\s*$/g, '$1');
+
+ // replace dahses (-) with slashes (/) in dates like n[nnn]/n[n]/n[nnn]
+ parsable = parsable.replace(/^([0-9]{1,4})-([0-9]{1,2})-([0-9]{1,4})/, "$1/$2/$3");
+
+ /////////
+ // Need to check for '15-Dec-09' also.
+ // FF will not parse, but Chrome will.
+ // Chrome will set date to 2009 as well.
+ /////////
+
+ // first check for 'dd-mmm-yyyy' or 'dd/mmm/yyyy' like '15-Dec-2010'
+ parsable = parsable.replace(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{4})/i, "$1 $2 $3");
+
+ // Now check for 'dd-mmm-yy' or 'dd/mmm/yy' and normalize years to default century.
+ var match = parsable.match(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{2})\D*/i);
+ if (match && match.length > 3) {
+ var m3 = parseFloat(match[3]);
+ var ny = jsDate.config.defaultCentury + m3;
+ ny = String(ny);
+
+ // now replace 2 digit year with 4 digit year
+ parsable = parsable.replace(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{2})\D*/i, match[1] +' '+ match[2] +' '+ ny);
+
+ }
+
+ // Check for '1/19/70 8:14PM'
+ // where starts with mm/dd/yy or yy/mm/dd and have something after
+ // Check if 1st postiion is greater than 31, assume it is year.
+ // Assme all 2 digit years are 1900's.
+ // Finally, change them into US style mm/dd/yyyy representations.
+ match = parsable.match(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})[^0-9]/);
+
+ function h1(parsable, match) {
+ var m1 = parseFloat(match[1]);
+ var m2 = parseFloat(match[2]);
+ var m3 = parseFloat(match[3]);
+ var cent = jsDate.config.defaultCentury;
+ var ny, nd, nm, str;
+
+ if (m1 > 31) { // first number is a year
+ nd = m3;
+ nm = m2;
+ ny = cent + m1;
+ }
+
+ else { // last number is the year
+ nd = m2;
+ nm = m1;
+ ny = cent + m3;
+ }
+
+ str = nm+'/'+nd+'/'+ny;
+
+ // now replace 2 digit year with 4 digit year
+ return parsable.replace(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})/, str);
+
+ }
+
+ if (match && match.length > 3) {
+ parsable = h1(parsable, match);
+ }
+
+ // Now check for '1/19/70' with nothing after and do as above
+ var match = parsable.match(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})$/);
+
+ if (match && match.length > 3) {
+ parsable = h1(parsable, match);
+ }
+
+
+ var i = 0;
+ var length = jsDate.matchers.length;
+ var pattern,
+ ms,
+ current = parsable,
+ obj;
+ while (i < length) {
+ ms = Date.parse(current);
+ if (!isNaN(ms)) {
+ return new Date(ms);
+ }
+ pattern = jsDate.matchers[i];
+ if (typeof pattern == 'function') {
+ obj = pattern.call(jsDate, current);
+ if (obj instanceof Date) {
+ return obj;
+ }
+ } else {
+ current = parsable.replace(pattern[0], pattern[1]);
+ }
+ i++;
+ }
+ return NaN;
+ };
+
+
+ /**
+ * @static
+ * Handy static utility function to return the number of days in a given month.
+ * @param {Integer} year Year
+ * @param {Integer} month Month (1-12)
+ * @returns {Integer} Number of days in the month.
+ */
+ //
+ // handy utility method Borrowed right from Ken Snyder's Date Instance Mehtods.
+ //
+ jsDate.daysInMonth = function(year, month) {
+ if (month == 2) {
+ return new Date(year, 1, 29).getDate() == 29 ? 29 : 28;
+ }
+ return [undefined,31,undefined,31,30,31,30,31,31,30,31,30,31][month];
+ };
+
+
+ //
+ // An Array of regular expressions or functions that will attempt to match the date string.
+ // Functions are called with scope of a jsDate instance.
+ //
+ jsDate.matchers = [
+ // convert dd.mmm.yyyy to mm/dd/yyyy (world date to US date).
+ [/(3[01]|[0-2]\d)\s*\.\s*(1[0-2]|0\d)\s*\.\s*([1-9]\d{3})/, '$2/$1/$3'],
+ // convert yyyy-mm-dd to mm/dd/yyyy (ISO date to US date).
+ [/([1-9]\d{3})\s*-\s*(1[0-2]|0\d)\s*-\s*(3[01]|[0-2]\d)/, '$2/$3/$1'],
+ // Handle 12 hour or 24 hour time with milliseconds am/pm and optional date part.
+ function(str) {
+ var match = str.match(/^(?:(.+)\s+)?([012]?\d)(?:\s*\:\s*(\d\d))?(?:\s*\:\s*(\d\d(\.\d*)?))?\s*(am|pm)?\s*$/i);
+ // opt. date hour opt. minute opt. second opt. msec opt. am or pm
+ if (match) {
+ if (match[1]) {
+ var d = this.createDate(match[1]);
+ if (isNaN(d)) {
+ return;
+ }
+ } else {
+ var d = new Date();
+ d.setMilliseconds(0);
+ }
+ var hour = parseFloat(match[2]);
+ if (match[6]) {
+ hour = match[6].toLowerCase() == 'am' ? (hour == 12 ? 0 : hour) : (hour == 12 ? 12 : hour + 12);
+ }
+ d.setHours(hour, parseInt(match[3] || 0, 10), parseInt(match[4] || 0, 10), ((parseFloat(match[5] || 0)) || 0)*1000);
+ return d;
+ }
+ else {
+ return str;
+ }
+ },
+ // Handle ISO timestamp with time zone.
+ function(str) {
+ var match = str.match(/^(?:(.+))[T|\s+]([012]\d)(?:\:(\d\d))(?:\:(\d\d))(?:\.\d+)([\+\-]\d\d\:\d\d)$/i);
+ if (match) {
+ if (match[1]) {
+ var d = this.createDate(match[1]);
+ if (isNaN(d)) {
+ return;
+ }
+ } else {
+ var d = new Date();
+ d.setMilliseconds(0);
+ }
+ var hour = parseFloat(match[2]);
+ d.setHours(hour, parseInt(match[3], 10), parseInt(match[4], 10), parseFloat(match[5])*1000);
+ return d;
+ }
+ else {
+ return str;
+ }
+ },
+ // Try to match ambiguous strings like 12/8/22.
+ // Use FF date assumption that 2 digit years are 20th century (i.e. 1900's).
+ // This may be redundant with pre processing of date already performed.
+ function(str) {
+ var match = str.match(/^([0-3]?\d)\s*[-\/.\s]{1}\s*([a-zA-Z]{3,9})\s*[-\/.\s]{1}\s*([0-3]?\d)$/);
+ if (match) {
+ var d = new Date();
+ var cent = jsDate.config.defaultCentury;
+ var m1 = parseFloat(match[1]);
+ var m3 = parseFloat(match[3]);
+ var ny, nd, nm;
+ if (m1 > 31) { // first number is a year
+ nd = m3;
+ ny = cent + m1;
+ }
+
+ else { // last number is the year
+ nd = m1;
+ ny = cent + m3;
+ }
+
+ var nm = inArray(match[2], jsDate.regional[jsDate.regional.getLocale()]["monthNamesShort"]);
+
+ if (nm == -1) {
+ nm = inArray(match[2], jsDate.regional[jsDate.regional.getLocale()]["monthNames"]);
+ }
+
+ d.setFullYear(ny, nm, nd);
+ d.setHours(0,0,0,0);
+ return d;
+ }
+
+ else {
+ return str;
+ }
+ }
+ ];
+
+ //
+ // I think John Reisig published this method on his blog, ejohn.
+ //
+ function inArray( elem, array ) {
+ if ( array.indexOf ) {
+ return array.indexOf( elem );
+ }
+
+ for ( var i = 0, length = array.length; i < length; i++ ) {
+ if ( array[ i ] === elem ) {
+ return i;
+ }
+ }
+
+ return -1;
+ }
+
+ //
+ // Thanks to Kangax, Christian Sciberras and Stack Overflow for this method.
+ //
+ function get_type(thing){
+ if(thing===null) return "[object Null]"; // special case
+ return Object.prototype.toString.call(thing);
+ }
+
+ $.jsDate = jsDate;
+
+
+ /**
+ * JavaScript printf/sprintf functions.
+ *
+ * This code has been adapted from the publicly available sprintf methods
+ * by Ash Searle. His original header follows:
+ *
+ * This code is unrestricted: you are free to use it however you like.
+ *
+ * The functions should work as expected, performing left or right alignment,
+ * truncating strings, outputting numbers with a required precision etc.
+ *
+ * For complex cases, these functions follow the Perl implementations of
+ * (s)printf, allowing arguments to be passed out-of-order, and to set the
+ * precision or length of the output based on arguments instead of fixed
+ * numbers.
+ *
+ * See http://perldoc.perl.org/functions/sprintf.html for more information.
+ *
+ * Implemented:
+ * - zero and space-padding
+ * - right and left-alignment,
+ * - base X prefix (binary, octal and hex)
+ * - positive number prefix
+ * - (minimum) width
+ * - precision / truncation / maximum width
+ * - out of order arguments
+ *
+ * Not implemented (yet):
+ * - vector flag
+ * - size (bytes, words, long-words etc.)
+ *
+ * Will not implement:
+ * - %n or %p (no pass-by-reference in JavaScript)
+ *
+ * @version 2007.04.27
+ * @author Ash Searle
+ *
+ * You can see the original work and comments on his blog:
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ */
+
+ /**
+ * @Modifications 2009.05.26
+ * @author Chris Leonello
+ *
+ * Added %p %P specifier
+ * Acts like %g or %G but will not add more significant digits to the output than present in the input.
+ * Example:
+ * Format: '%.3p', Input: 0.012, Output: 0.012
+ * Format: '%.3g', Input: 0.012, Output: 0.0120
+ * Format: '%.4p', Input: 12.0, Output: 12.0
+ * Format: '%.4g', Input: 12.0, Output: 12.00
+ * Format: '%.4p', Input: 4.321e-5, Output: 4.321e-5
+ * Format: '%.4g', Input: 4.321e-5, Output: 4.3210e-5
+ *
+ * Example:
+ * >>> $.jqplot.sprintf('%.2f, %d', 23.3452, 43.23)
+ * "23.35, 43"
+ * >>> $.jqplot.sprintf("no value: %n, decimal with thousands separator: %'d", 23.3452, 433524)
+ * "no value: , decimal with thousands separator: 433,524"
+ */
+ $.jqplot.sprintf = function() {
+ function pad(str, len, chr, leftJustify) {
+ var padding = (str.length >= len) ? '' : Array(1 + len - str.length >>> 0).join(chr);
+ return leftJustify ? str + padding : padding + str;
+
+ }
+
+ function thousand_separate(value) {
+ var value_str = new String(value);
+ for (var i=10; i>0; i--) {
+ if (value_str == (value_str = value_str.replace(/^(\d+)(\d{3})/, "$1"+$.jqplot.sprintf.thousandsSeparator+"$2"))) break;
+ }
+ return value_str;
+ }
+
+ function justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace) {
+ var diff = minWidth - value.length;
+ if (diff > 0) {
+ var spchar = ' ';
+ if (htmlSpace) { spchar = ' '; }
+ if (leftJustify || !zeroPad) {
+ value = pad(value, minWidth, spchar, leftJustify);
+ } else {
+ value = value.slice(0, prefix.length) + pad('', diff, '0', true) + value.slice(prefix.length);
+ }
+ }
+ return value;
+ }
+
+ function formatBaseX(value, base, prefix, leftJustify, minWidth, precision, zeroPad, htmlSpace) {
+ // Note: casts negative numbers to positive ones
+ var number = value >>> 0;
+ prefix = prefix && number && {'2': '0b', '8': '0', '16': '0x'}[base] || '';
+ value = prefix + pad(number.toString(base), precision || 0, '0', false);
+ return justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace);
+ }
+
+ function formatString(value, leftJustify, minWidth, precision, zeroPad, htmlSpace) {
+ if (precision != null) {
+ value = value.slice(0, precision);
+ }
+ return justify(value, '', leftJustify, minWidth, zeroPad, htmlSpace);
+ }
+
+ var a = arguments, i = 0, format = a[i++];
+
+ return format.replace($.jqplot.sprintf.regex, function(substring, valueIndex, flags, minWidth, _, precision, type) {
+ if (substring == '%%') { return '%'; }
+
+ // parse flags
+ var leftJustify = false, positivePrefix = '', zeroPad = false, prefixBaseX = false, htmlSpace = false, thousandSeparation = false;
+ for (var j = 0; flags && j < flags.length; j++) switch (flags.charAt(j)) {
+ case ' ': positivePrefix = ' '; break;
+ case '+': positivePrefix = '+'; break;
+ case '-': leftJustify = true; break;
+ case '0': zeroPad = true; break;
+ case '#': prefixBaseX = true; break;
+ case '&': htmlSpace = true; break;
+ case '\'': thousandSeparation = true; break;
+ }
+
+ // parameters may be null, undefined, empty-string or real valued
+ // we want to ignore null, undefined and empty-string values
+
+ if (!minWidth) {
+ minWidth = 0;
+ }
+ else if (minWidth == '*') {
+ minWidth = +a[i++];
+ }
+ else if (minWidth.charAt(0) == '*') {
+ minWidth = +a[minWidth.slice(1, -1)];
+ }
+ else {
+ minWidth = +minWidth;
+ }
+
+ // Note: undocumented perl feature:
+ if (minWidth < 0) {
+ minWidth = -minWidth;
+ leftJustify = true;
+ }
+
+ if (!isFinite(minWidth)) {
+ throw new Error('$.jqplot.sprintf: (minimum-)width must be finite');
+ }
+
+ if (!precision) {
+ precision = 'fFeE'.indexOf(type) > -1 ? 6 : (type == 'd') ? 0 : void(0);
+ }
+ else if (precision == '*') {
+ precision = +a[i++];
+ }
+ else if (precision.charAt(0) == '*') {
+ precision = +a[precision.slice(1, -1)];
+ }
+ else {
+ precision = +precision;
+ }
+
+ // grab value using valueIndex if required?
+ var value = valueIndex ? a[valueIndex.slice(0, -1)] : a[i++];
+
+ switch (type) {
+ case 's': {
+ if (value == null) {
+ return '';
+ }
+ return formatString(String(value), leftJustify, minWidth, precision, zeroPad, htmlSpace);
+ }
+ case 'c': return formatString(String.fromCharCode(+value), leftJustify, minWidth, precision, zeroPad, htmlSpace);
+ case 'b': return formatBaseX(value, 2, prefixBaseX, leftJustify, minWidth, precision, zeroPad,htmlSpace);
+ case 'o': return formatBaseX(value, 8, prefixBaseX, leftJustify, minWidth, precision, zeroPad, htmlSpace);
+ case 'x': return formatBaseX(value, 16, prefixBaseX, leftJustify, minWidth, precision, zeroPad, htmlSpace);
+ case 'X': return formatBaseX(value, 16, prefixBaseX, leftJustify, minWidth, precision, zeroPad, htmlSpace).toUpperCase();
+ case 'u': return formatBaseX(value, 10, prefixBaseX, leftJustify, minWidth, precision, zeroPad, htmlSpace);
+ case 'i': {
+ var number = parseInt(+value, 10);
+ if (isNaN(number)) {
+ return '';
+ }
+ var prefix = number < 0 ? '-' : positivePrefix;
+ var number_str = thousandSeparation ? thousand_separate(String(Math.abs(number))): String(Math.abs(number));
+ value = prefix + pad(number_str, precision, '0', false);
+ //value = prefix + pad(String(Math.abs(number)), precision, '0', false);
+ return justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace);
+ }
+ case 'd': {
+ var number = Math.round(+value);
+ if (isNaN(number)) {
+ return '';
+ }
+ var prefix = number < 0 ? '-' : positivePrefix;
+ var number_str = thousandSeparation ? thousand_separate(String(Math.abs(number))): String(Math.abs(number));
+ value = prefix + pad(number_str, precision, '0', false);
+ return justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace);
+ }
+ case 'e':
+ case 'E':
+ case 'f':
+ case 'F':
+ case 'g':
+ case 'G':
+ {
+ var number = +value;
+ if (isNaN(number)) {
+ return '';
+ }
+ var prefix = number < 0 ? '-' : positivePrefix;
+ var method = ['toExponential', 'toFixed', 'toPrecision']['efg'.indexOf(type.toLowerCase())];
+ var textTransform = ['toString', 'toUpperCase']['eEfFgG'.indexOf(type) % 2];
+ var number_str = Math.abs(number)[method](precision);
+ number_str = thousandSeparation ? thousand_separate(number_str): number_str;
+ value = prefix + number_str;
+ return justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace)[textTransform]();
+ }
+ case 'p':
+ case 'P':
+ {
+ // make sure number is a number
+ var number = +value;
+ if (isNaN(number)) {
+ return '';
+ }
+ var prefix = number < 0 ? '-' : positivePrefix;
+
+ var parts = String(Number(Math.abs(number)).toExponential()).split(/e|E/);
+ var sd = (parts[0].indexOf('.') != -1) ? parts[0].length - 1 : parts[0].length;
+ var zeros = (parts[1] < 0) ? -parts[1] - 1 : 0;
+
+ if (Math.abs(number) < 1) {
+ if (sd + zeros <= precision) {
+ value = prefix + Math.abs(number).toPrecision(sd);
+ }
+ else {
+ if (sd <= precision - 1) {
+ value = prefix + Math.abs(number).toExponential(sd-1);
+ }
+ else {
+ value = prefix + Math.abs(number).toExponential(precision-1);
+ }
+ }
+ }
+ else {
+ var prec = (sd <= precision) ? sd : precision;
+ value = prefix + Math.abs(number).toPrecision(prec);
+ }
+ var textTransform = ['toString', 'toUpperCase']['pP'.indexOf(type) % 2];
+ return justify(value, prefix, leftJustify, minWidth, zeroPad, htmlSpace)[textTransform]();
+ }
+ case 'n': return '';
+ default: return substring;
+ }
+ });
+ };
+
+ $.jqplot.sprintf.thousandsSeparator = ',';
+
+ $.jqplot.sprintf.regex = /%%|%(\d+\$)?([-+#0&\' ]*)(\*\d+\$|\*|\d+)?(\.(\*\d+\$|\*|\d+))?([nAscboxXuidfegpEGP])/g;
+
+ $.jqplot.getSignificantFigures = function(number) {
+ var parts = String(Number(Math.abs(number)).toExponential()).split(/e|E/);
+ // total significant digits
+ var sd = (parts[0].indexOf('.') != -1) ? parts[0].length - 1 : parts[0].length;
+ var zeros = (parts[1] < 0) ? -parts[1] - 1 : 0;
+ // exponent
+ var expn = parseInt(parts[1], 10);
+ // digits to the left of the decimal place
+ var dleft = (expn + 1 > 0) ? expn + 1 : 0;
+ // digits to the right of the decimal place
+ var dright = (sd <= dleft) ? 0 : sd - expn - 1;
+ return {significantDigits: sd, digitsLeft: dleft, digitsRight: dright, zeros: zeros, exponent: expn} ;
+ };
+
+ $.jqplot.getPrecision = function(number) {
+ return $.jqplot.getSignificantFigures(number).digitsRight;
+ };
+
+})(jQuery);
+
+
+ var backCompat = $.uiBackCompat !== false;
+
+ $.jqplot.effects = {
+ effect: {}
+ };
+
+ // prefix used for storing data on .data()
+ var dataSpace = "jqplot.storage.";
+
+ /******************************************************************************/
+ /*********************************** EFFECTS **********************************/
+ /******************************************************************************/
+
+ $.extend( $.jqplot.effects, {
+ version: "1.9pre",
+
+ // Saves a set of properties in a data storage
+ save: function( element, set ) {
+ for( var i=0; i < set.length; i++ ) {
+ if ( set[ i ] !== null ) {
+ element.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );
+ }
+ }
+ },
+
+ // Restores a set of previously saved properties from a data storage
+ restore: function( element, set ) {
+ for( var i=0; i < set.length; i++ ) {
+ if ( set[ i ] !== null ) {
+ element.css( set[ i ], element.data( dataSpace + set[ i ] ) );
+ }
+ }
+ },
+
+ setMode: function( el, mode ) {
+ if (mode === "toggle") {
+ mode = el.is( ":hidden" ) ? "show" : "hide";
+ }
+ return mode;
+ },
+
+ // Wraps the element around a wrapper that copies position properties
+ createWrapper: function( element ) {
+
+ // if the element is already wrapped, return it
+ if ( element.parent().is( ".ui-effects-wrapper" )) {
+ return element.parent();
+ }
+
+ // wrap the element
+ var props = {
+ width: element.outerWidth(true),
+ height: element.outerHeight(true),
+ "float": element.css( "float" )
+ },
+ wrapper = $( "" )
+ .addClass( "ui-effects-wrapper" )
+ .css({
+ fontSize: "100%",
+ background: "transparent",
+ border: "none",
+ margin: 0,
+ padding: 0
+ }),
+ // Store the size in case width/height are defined in % - Fixes #5245
+ size = {
+ width: element.width(),
+ height: element.height()
+ },
+ active = document.activeElement;
+
+ element.wrap( wrapper );
+
+ // Fixes #7595 - Elements lose focus when wrapped.
+ if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
+ $( active ).focus();
+ }
+
+ wrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually loose the reference to the wrapped element
+
+ // transfer positioning properties to the wrapper
+ if ( element.css( "position" ) === "static" ) {
+ wrapper.css({ position: "relative" });
+ element.css({ position: "relative" });
+ } else {
+ $.extend( props, {
+ position: element.css( "position" ),
+ zIndex: element.css( "z-index" )
+ });
+ $.each([ "top", "left", "bottom", "right" ], function(i, pos) {
+ props[ pos ] = element.css( pos );
+ if ( isNaN( parseInt( props[ pos ], 10 ) ) ) {
+ props[ pos ] = "auto";
+ }
+ });
+ element.css({
+ position: "relative",
+ top: 0,
+ left: 0,
+ right: "auto",
+ bottom: "auto"
+ });
+ }
+ element.css(size);
+
+ return wrapper.css( props ).show();
+ },
+
+ removeWrapper: function( element ) {
+ var active = document.activeElement;
+
+ if ( element.parent().is( ".ui-effects-wrapper" ) ) {
+ element.parent().replaceWith( element );
+
+ // Fixes #7595 - Elements lose focus when wrapped.
+ if ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {
+ $( active ).focus();
+ }
+ }
+
+
+ return element;
+ }
+ });
+
+ // return an effect options object for the given parameters:
+ function _normalizeArguments( effect, options, speed, callback ) {
+
+ // short path for passing an effect options object:
+ if ( $.isPlainObject( effect ) ) {
+ return effect;
+ }
+
+ // convert to an object
+ effect = { effect: effect };
+
+ // catch (effect)
+ if ( options === undefined ) {
+ options = {};
+ }
+
+ // catch (effect, callback)
+ if ( $.isFunction( options ) ) {
+ callback = options;
+ speed = null;
+ options = {};
+ }
+
+ // catch (effect, speed, ?)
+ if ( $.type( options ) === "number" || $.fx.speeds[ options ]) {
+ callback = speed;
+ speed = options;
+ options = {};
+ }
+
+ // catch (effect, options, callback)
+ if ( $.isFunction( speed ) ) {
+ callback = speed;
+ speed = null;
+ }
+
+ // add options to effect
+ if ( options ) {
+ $.extend( effect, options );
+ }
+
+ speed = speed || options.duration;
+ effect.duration = $.fx.off ? 0 : typeof speed === "number"
+ ? speed : speed in $.fx.speeds ? $.fx.speeds[ speed ] : $.fx.speeds._default;
+
+ effect.complete = callback || options.complete;
+
+ return effect;
+ }
+
+ function standardSpeed( speed ) {
+ // valid standard speeds
+ if ( !speed || typeof speed === "number" || $.fx.speeds[ speed ] ) {
+ return true;
+ }
+
+ // invalid strings - treat as "normal" speed
+ if ( typeof speed === "string" && !$.jqplot.effects.effect[ speed ] ) {
+ // TODO: remove in 2.0 (#7115)
+ if ( backCompat && $.jqplot.effects[ speed ] ) {
+ return false;
+ }
+ return true;
+ }
+
+ return false;
+ }
+
+ $.fn.extend({
+ jqplotEffect: function( effect, options, speed, callback ) {
+ var args = _normalizeArguments.apply( this, arguments ),
+ mode = args.mode,
+ queue = args.queue,
+ effectMethod = $.jqplot.effects.effect[ args.effect ],
+
+ // DEPRECATED: remove in 2.0 (#7115)
+ oldEffectMethod = !effectMethod && backCompat && $.jqplot.effects[ args.effect ];
+
+ if ( $.fx.off || !( effectMethod || oldEffectMethod ) ) {
+ // delegate to the original method (e.g., .show()) if possible
+ if ( mode ) {
+ return this[ mode ]( args.duration, args.complete );
+ } else {
+ return this.each( function() {
+ if ( args.complete ) {
+ args.complete.call( this );
+ }
+ });
+ }
+ }
+
+ function run( next ) {
+ var elem = $( this ),
+ complete = args.complete,
+ mode = args.mode;
+
+ function done() {
+ if ( $.isFunction( complete ) ) {
+ complete.call( elem[0] );
+ }
+ if ( $.isFunction( next ) ) {
+ next();
+ }
+ }
+
+ // if the element is hiddden and mode is hide,
+ // or element is visible and mode is show
+ if ( elem.is( ":hidden" ) ? mode === "hide" : mode === "show" ) {
+ done();
+ } else {
+ effectMethod.call( elem[0], args, done );
+ }
+ }
+
+ // TODO: remove this check in 2.0, effectMethod will always be true
+ if ( effectMethod ) {
+ return queue === false ? this.each( run ) : this.queue( queue || "fx", run );
+ } else {
+ // DEPRECATED: remove in 2.0 (#7115)
+ return oldEffectMethod.call(this, {
+ options: args,
+ duration: args.duration,
+ callback: args.complete,
+ mode: args.mode
+ });
+ }
+ }
+ });
+
+
+
+
+ var rvertical = /up|down|vertical/,
+ rpositivemotion = /up|left|vertical|horizontal/;
+
+ $.jqplot.effects.effect.blind = function( o, done ) {
+ // Create element
+ var el = $( this ),
+ props = [ "position", "top", "bottom", "left", "right", "height", "width" ],
+ mode = $.jqplot.effects.setMode( el, o.mode || "hide" ),
+ direction = o.direction || "up",
+ vertical = rvertical.test( direction ),
+ ref = vertical ? "height" : "width",
+ ref2 = vertical ? "top" : "left",
+ motion = rpositivemotion.test( direction ),
+ animation = {},
+ show = mode === "show",
+ wrapper, distance, top;
+
+ // // if already wrapped, the wrapper's properties are my property. #6245
+ if ( el.parent().is( ".ui-effects-wrapper" ) ) {
+ $.jqplot.effects.save( el.parent(), props );
+ } else {
+ $.jqplot.effects.save( el, props );
+ }
+ el.show();
+ top = parseInt(el.css('top'), 10);
+ wrapper = $.jqplot.effects.createWrapper( el ).css({
+ overflow: "hidden"
+ });
+
+ distance = vertical ? wrapper[ ref ]() + top : wrapper[ ref ]();
+
+ animation[ ref ] = show ? String(distance) : '0';
+ if ( !motion ) {
+ el
+ .css( vertical ? "bottom" : "right", 0 )
+ .css( vertical ? "top" : "left", "" )
+ .css({ position: "absolute" });
+ animation[ ref2 ] = show ? '0' : String(distance);
+ }
+
+ // // start at 0 if we are showing
+ if ( show ) {
+ wrapper.css( ref, 0 );
+ if ( ! motion ) {
+ wrapper.css( ref2, distance );
+ }
+ }
+
+ // // Animate
+ wrapper.animate( animation, {
+ duration: o.duration,
+ easing: o.easing,
+ queue: false,
+ complete: function() {
+ if ( mode === "hide" ) {
+ el.hide();
+ }
+ $.jqplot.effects.restore( el, props );
+ $.jqplot.effects.removeWrapper( el );
+ done();
+ }
+ });
+
+ };
+
+
diff --git a/js/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js b/js/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js
new file mode 100644
index 0000000000..462f47ecd5
--- /dev/null
+++ b/js/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js
@@ -0,0 +1,202 @@
+/**
+ * jqPlot
+ * Pure JavaScript plotting plugin using jQuery
+ *
+ * Version: 1.0.0b2_r1012
+ *
+ * Copyright (c) 2009-2011 Chris Leonello
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * Although not required, the author would appreciate an email letting him
+ * know of any substantial use of jqPlot. You can reach the author at:
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
+ *
+ * If you are feeling kind and generous, consider supporting the project by
+ * making a donation at: http://www.jqplot.com/donate.php .
+ *
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
+ *
+ * version 2007.04.27
+ * author Ash Searle
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ * The author (Ash Searle) has placed this code in the public domain:
+ * "This code is unrestricted: you are free to use it however you like."
+ *
+ */
+(function($) {
+ /**
+ * Class: $.jqplot.CanvasAxisLabelRenderer
+ * Renderer to draw axis labels with a canvas element to support advanced
+ * featrues such as rotated text. This renderer uses a separate rendering engine
+ * to draw the text on the canvas. Two modes of rendering the text are available.
+ * If the browser has native font support for canvas fonts (currently Mozila 3.5
+ * and Safari 4), you can enable text rendering with the canvas fillText method.
+ * You do so by setting the "enableFontSupport" option to true.
+ *
+ * Browsers lacking native font support will have the text drawn on the canvas
+ * using the Hershey font metrics. Even if the "enableFontSupport" option is true
+ * non-supporting browsers will still render with the Hershey font.
+ *
+ */
+ $.jqplot.CanvasAxisLabelRenderer = function(options) {
+ // Group: Properties
+
+ // prop: angle
+ // angle of text, measured clockwise from x axis.
+ this.angle = 0;
+ // name of the axis associated with this tick
+ this.axis;
+ // prop: show
+ // wether or not to show the tick (mark and label).
+ this.show = true;
+ // prop: showLabel
+ // wether or not to show the label.
+ this.showLabel = true;
+ // prop: label
+ // label for the axis.
+ this.label = '';
+ // prop: fontFamily
+ // CSS spec for the font-family css attribute.
+ // Applies only to browsers supporting native font rendering in the
+ // canvas tag. Currently Mozilla 3.5 and Safari 4.
+ this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif';
+ // prop: fontSize
+ // CSS spec for font size.
+ this.fontSize = '11pt';
+ // prop: fontWeight
+ // CSS spec for fontWeight: normal, bold, bolder, lighter or a number 100 - 900
+ this.fontWeight = 'normal';
+ // prop: fontStretch
+ // Multiplier to condense or expand font width.
+ // Applies only to browsers which don't support canvas native font rendering.
+ this.fontStretch = 1.0;
+ // prop: textColor
+ // css spec for the color attribute.
+ this.textColor = '#666666';
+ // prop: enableFontSupport
+ // true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
+ // If true, label will be drawn with canvas tag native support for fonts.
+ // If false, label will be drawn with Hershey font metrics.
+ this.enableFontSupport = true;
+ // prop: pt2px
+ // Point to pixel scaling factor, used for computing height of bounding box
+ // around a label. The labels text renderer has a default setting of 1.4, which
+ // should be suitable for most fonts. Leave as null to use default. If tops of
+ // letters appear clipped, increase this. If bounding box seems too big, decrease.
+ // This is an issue only with the native font renderering capabilities of Mozilla
+ // 3.5 and Safari 4 since they do not provide a method to determine the font height.
+ this.pt2px = null;
+
+ this._elem;
+ this._ctx;
+ this._plotWidth;
+ this._plotHeight;
+ this._plotDimensions = {height:null, width:null};
+
+ $.extend(true, this, options);
+
+ if (options.angle == null && this.axis != 'xaxis' && this.axis != 'x2axis') {
+ this.angle = -90;
+ }
+
+ var ropts = {fontSize:this.fontSize, fontWeight:this.fontWeight, fontStretch:this.fontStretch, fillStyle:this.textColor, angle:this.getAngleRad(), fontFamily:this.fontFamily};
+ if (this.pt2px) {
+ ropts.pt2px = this.pt2px;
+ }
+
+ if (this.enableFontSupport) {
+ if ($.jqplot.support_canvas_text()) {
+ this._textRenderer = new $.jqplot.CanvasFontRenderer(ropts);
+ }
+
+ else {
+ this._textRenderer = new $.jqplot.CanvasTextRenderer(ropts);
+ }
+ }
+ else {
+ this._textRenderer = new $.jqplot.CanvasTextRenderer(ropts);
+ }
+ };
+
+ $.jqplot.CanvasAxisLabelRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ this._textRenderer.init({fontSize:this.fontSize, fontWeight:this.fontWeight, fontStretch:this.fontStretch, fillStyle:this.textColor, angle:this.getAngleRad(), fontFamily:this.fontFamily});
+ };
+
+ // return width along the x axis
+ // will check first to see if an element exists.
+ // if not, will return the computed text box width.
+ $.jqplot.CanvasAxisLabelRenderer.prototype.getWidth = function(ctx) {
+ if (this._elem) {
+ return this._elem.outerWidth(true);
+ }
+ else {
+ var tr = this._textRenderer;
+ var l = tr.getWidth(ctx);
+ var h = tr.getHeight(ctx);
+ var w = Math.abs(Math.sin(tr.angle)*h) + Math.abs(Math.cos(tr.angle)*l);
+ return w;
+ }
+ };
+
+ // return height along the y axis.
+ $.jqplot.CanvasAxisLabelRenderer.prototype.getHeight = function(ctx) {
+ if (this._elem) {
+ return this._elem.outerHeight(true);
+ }
+ else {
+ var tr = this._textRenderer;
+ var l = tr.getWidth(ctx);
+ var h = tr.getHeight(ctx);
+ var w = Math.abs(Math.cos(tr.angle)*h) + Math.abs(Math.sin(tr.angle)*l);
+ return w;
+ }
+ };
+
+ $.jqplot.CanvasAxisLabelRenderer.prototype.getAngleRad = function() {
+ var a = this.angle * Math.PI/180;
+ return a;
+ };
+
+ $.jqplot.CanvasAxisLabelRenderer.prototype.draw = function(ctx, plot) {
+ // Memory Leaks patch
+ if (this._elem) {
+ if ($.jqplot.use_excanvas && window.G_vmlCanvasManager.uninitElement !== undefined) {
+ window.G_vmlCanvasManager.uninitElement(this._elem.get(0));
+ }
+
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+
+ // create a canvas here, but can't draw on it untill it is appended
+ // to dom for IE compatability.
+ var elem = plot.canvasManager.getCanvas();
+
+ this._textRenderer.setText(this.label, ctx);
+ var w = this.getWidth(ctx);
+ var h = this.getHeight(ctx);
+ elem.width = w;
+ elem.height = h;
+ elem.style.width = w;
+ elem.style.height = h;
+
+ elem = plot.canvasManager.initCanvas(elem);
+
+ this._elem = $(elem);
+ this._elem.css({ position: 'absolute'});
+ this._elem.addClass('jqplot-'+this.axis+'-label');
+
+ elem = null;
+ return this._elem;
+ };
+
+ $.jqplot.CanvasAxisLabelRenderer.prototype.pack = function() {
+ this._textRenderer.draw(this._elem.get(0).getContext("2d"), this.label);
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/js/jqplot/plugins/jqplot.canvasTextRenderer.js b/js/jqplot/plugins/jqplot.canvasTextRenderer.js
new file mode 100644
index 0000000000..9e90c8c8f5
--- /dev/null
+++ b/js/jqplot/plugins/jqplot.canvasTextRenderer.js
@@ -0,0 +1,448 @@
+/**
+ * jqPlot
+ * Pure JavaScript plotting plugin using jQuery
+ *
+ * Version: 1.0.0b2_r1012
+ *
+ * Copyright (c) 2009-2011 Chris Leonello
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * Although not required, the author would appreciate an email letting him
+ * know of any substantial use of jqPlot. You can reach the author at:
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
+ *
+ * If you are feeling kind and generous, consider supporting the project by
+ * making a donation at: http://www.jqplot.com/donate.php .
+ *
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
+ *
+ * version 2007.04.27
+ * author Ash Searle
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ * The author (Ash Searle) has placed this code in the public domain:
+ * "This code is unrestricted: you are free to use it however you like."
+ *
+ * included jsDate library by Chris Leonello:
+ *
+ * Copyright (c) 2010-2011 Chris Leonello
+ *
+ * jsDate is currently available for use in all personal or commercial projects
+ * under both the MIT and GPL version 2.0 licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * jsDate borrows many concepts and ideas from the Date Instance
+ * Methods by Ken Snyder along with some parts of Ken's actual code.
+ *
+ * Ken's origianl Date Instance Methods and copyright notice:
+ *
+ * Ken Snyder (ken d snyder at gmail dot com)
+ * 2008-09-10
+ * version 2.0.2 (http://kendsnyder.com/sandbox/date/)
+ * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/)
+ *
+ * jqplotToImage function based on Larry Siden's export-jqplot-to-png.js.
+ * Larry has generously given permission to adapt his code for inclusion
+ * into jqPlot.
+ *
+ * Larry's original code can be found here:
+ *
+ * https://github.com/lsiden/export-jqplot-to-png
+ *
+ *
+ */
+
+(function($) {
+ // This code is a modified version of the canvastext.js code, copyright below:
+ //
+ // This code is released to the public domain by Jim Studt, 2007.
+ // He may keep some sort of up to date copy at http://www.federated.com/~jim/canvastext/
+ //
+ $.jqplot.CanvasTextRenderer = function(options){
+ this.fontStyle = 'normal'; // normal, italic, oblique [not implemented]
+ this.fontVariant = 'normal'; // normal, small caps [not implemented]
+ this.fontWeight = 'normal'; // normal, bold, bolder, lighter, 100 - 900
+ this.fontSize = '10px';
+ this.fontFamily = 'sans-serif';
+ this.fontStretch = 1.0;
+ this.fillStyle = '#666666';
+ this.angle = 0;
+ this.textAlign = 'start';
+ this.textBaseline = 'alphabetic';
+ this.text;
+ this.width;
+ this.height;
+ this.pt2px = 1.28;
+
+ $.extend(true, this, options);
+ this.normalizedFontSize = this.normalizeFontSize(this.fontSize);
+ this.setHeight();
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.init = function(options) {
+ $.extend(true, this, options);
+ this.normalizedFontSize = this.normalizeFontSize(this.fontSize);
+ this.setHeight();
+ };
+
+ // convert css spec into point size
+ // returns float
+ $.jqplot.CanvasTextRenderer.prototype.normalizeFontSize = function(sz) {
+ sz = String(sz);
+ var n = parseFloat(sz);
+ if (sz.indexOf('px') > -1) {
+ return n/this.pt2px;
+ }
+ else if (sz.indexOf('pt') > -1) {
+ return n;
+ }
+ else if (sz.indexOf('em') > -1) {
+ return n*12;
+ }
+ else if (sz.indexOf('%') > -1) {
+ return n*12/100;
+ }
+ // default to pixels;
+ else {
+ return n/this.pt2px;
+ }
+ };
+
+
+ $.jqplot.CanvasTextRenderer.prototype.fontWeight2Float = function(w) {
+ // w = normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
+ // return values adjusted for Hershey font.
+ if (Number(w)) {
+ return w/400;
+ }
+ else {
+ switch (w) {
+ case 'normal':
+ return 1;
+ break;
+ case 'bold':
+ return 1.75;
+ break;
+ case 'bolder':
+ return 2.25;
+ break;
+ case 'lighter':
+ return 0.75;
+ break;
+ default:
+ return 1;
+ break;
+ }
+ }
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.getText = function() {
+ return this.text;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.setText = function(t, ctx) {
+ this.text = t;
+ this.setWidth(ctx);
+ return this;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.getWidth = function(ctx) {
+ return this.width;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.setWidth = function(ctx, w) {
+ if (!w) {
+ this.width = this.measure(ctx, this.text);
+ }
+ else {
+ this.width = w;
+ }
+ return this;
+ };
+
+ // return height in pixels.
+ $.jqplot.CanvasTextRenderer.prototype.getHeight = function(ctx) {
+ return this.height;
+ };
+
+ // w - height in pt
+ // set heigh in px
+ $.jqplot.CanvasTextRenderer.prototype.setHeight = function(w) {
+ if (!w) {
+ //height = this.fontSize /0.75;
+ this.height = this.normalizedFontSize * this.pt2px;
+ }
+ else {
+ this.height = w;
+ }
+ return this;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.letter = function (ch)
+ {
+ return this.letters[ch];
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.ascent = function()
+ {
+ return this.normalizedFontSize;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.descent = function()
+ {
+ return 7.0*this.normalizedFontSize/25.0;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.measure = function(ctx, str)
+ {
+ var total = 0;
+ var len = str.length;
+
+ for (var i = 0; i < len; i++) {
+ var c = this.letter(str.charAt(i));
+ if (c) {
+ total += c.width * this.normalizedFontSize / 25.0 * this.fontStretch;
+ }
+ }
+ return total;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.draw = function(ctx,str)
+ {
+ var x = 0;
+ // leave room at bottom for descenders.
+ var y = this.height*0.72;
+ var total = 0;
+ var len = str.length;
+ var mag = this.normalizedFontSize / 25.0;
+
+ ctx.save();
+ var tx, ty;
+
+ // 1st quadrant
+ if ((-Math.PI/2 <= this.angle && this.angle <= 0) || (Math.PI*3/2 <= this.angle && this.angle <= Math.PI*2)) {
+ tx = 0;
+ ty = -Math.sin(this.angle) * this.width;
+ }
+ // 4th quadrant
+ else if ((0 < this.angle && this.angle <= Math.PI/2) || (-Math.PI*2 <= this.angle && this.angle <= -Math.PI*3/2)) {
+ tx = Math.sin(this.angle) * this.height;
+ ty = 0;
+ }
+ // 2nd quadrant
+ else if ((-Math.PI < this.angle && this.angle < -Math.PI/2) || (Math.PI <= this.angle && this.angle <= Math.PI*3/2)) {
+ tx = -Math.cos(this.angle) * this.width;
+ ty = -Math.sin(this.angle) * this.width - Math.cos(this.angle) * this.height;
+ }
+ // 3rd quadrant
+ else if ((-Math.PI*3/2 < this.angle && this.angle < Math.PI) || (Math.PI/2 < this.angle && this.angle < Math.PI)) {
+ tx = Math.sin(this.angle) * this.height - Math.cos(this.angle)*this.width;
+ ty = -Math.cos(this.angle) * this.height;
+ }
+
+ ctx.strokeStyle = this.fillStyle;
+ ctx.fillStyle = this.fillStyle;
+ ctx.translate(tx, ty);
+ ctx.rotate(this.angle);
+ ctx.lineCap = "round";
+ // multiplier was 2.0
+ var fact = (this.normalizedFontSize > 30) ? 2.0 : 2 + (30 - this.normalizedFontSize)/20;
+ ctx.lineWidth = fact * mag * this.fontWeight2Float(this.fontWeight);
+
+ for ( var i = 0; i < len; i++) {
+ var c = this.letter( str.charAt(i));
+ if ( !c) {
+ continue;
+ }
+
+ ctx.beginPath();
+
+ var penUp = 1;
+ var needStroke = 0;
+ for ( var j = 0; j < c.points.length; j++) {
+ var a = c.points[j];
+ if ( a[0] == -1 && a[1] == -1) {
+ penUp = 1;
+ continue;
+ }
+ if ( penUp) {
+ ctx.moveTo( x + a[0]*mag*this.fontStretch, y - a[1]*mag);
+ penUp = false;
+ } else {
+ ctx.lineTo( x + a[0]*mag*this.fontStretch, y - a[1]*mag);
+ }
+ }
+ ctx.stroke();
+ x += c.width*mag*this.fontStretch;
+ }
+ ctx.restore();
+ return total;
+ };
+
+ $.jqplot.CanvasTextRenderer.prototype.letters = {
+ ' ': { width: 16, points: [] },
+ '!': { width: 10, points: [[5,21],[5,7],[-1,-1],[5,2],[4,1],[5,0],[6,1],[5,2]] },
+ '"': { width: 16, points: [[4,21],[4,14],[-1,-1],[12,21],[12,14]] },
+ '#': { width: 21, points: [[11,25],[4,-7],[-1,-1],[17,25],[10,-7],[-1,-1],[4,12],[18,12],[-1,-1],[3,6],[17,6]] },
+ '$': { width: 20, points: [[8,25],[8,-4],[-1,-1],[12,25],[12,-4],[-1,-1],[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]] },
+ '%': { width: 24, points: [[21,21],[3,0],[-1,-1],[8,21],[10,19],[10,17],[9,15],[7,14],[5,14],[3,16],[3,18],[4,20],[6,21],[8,21],[10,20],[13,19],[16,19],[19,20],[21,21],[-1,-1],[17,7],[15,6],[14,4],[14,2],[16,0],[18,0],[20,1],[21,3],[21,5],[19,7],[17,7]] },
+ '&': { width: 26, points: [[23,12],[23,13],[22,14],[21,14],[20,13],[19,11],[17,6],[15,3],[13,1],[11,0],[7,0],[5,1],[4,2],[3,4],[3,6],[4,8],[5,9],[12,13],[13,14],[14,16],[14,18],[13,20],[11,21],[9,20],[8,18],[8,16],[9,13],[11,10],[16,3],[18,1],[20,0],[22,0],[23,1],[23,2]] },
+ '\'': { width: 10, points: [[5,19],[4,20],[5,21],[6,20],[6,18],[5,16],[4,15]] },
+ '(': { width: 14, points: [[11,25],[9,23],[7,20],[5,16],[4,11],[4,7],[5,2],[7,-2],[9,-5],[11,-7]] },
+ ')': { width: 14, points: [[3,25],[5,23],[7,20],[9,16],[10,11],[10,7],[9,2],[7,-2],[5,-5],[3,-7]] },
+ '*': { width: 16, points: [[8,21],[8,9],[-1,-1],[3,18],[13,12],[-1,-1],[13,18],[3,12]] },
+ '+': { width: 26, points: [[13,18],[13,0],[-1,-1],[4,9],[22,9]] },
+ ',': { width: 10, points: [[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]] },
+ '-': { width: 18, points: [[6,9],[12,9]] },
+ '.': { width: 10, points: [[5,2],[4,1],[5,0],[6,1],[5,2]] },
+ '/': { width: 22, points: [[20,25],[2,-7]] },
+ '0': { width: 20, points: [[9,21],[6,20],[4,17],[3,12],[3,9],[4,4],[6,1],[9,0],[11,0],[14,1],[16,4],[17,9],[17,12],[16,17],[14,20],[11,21],[9,21]] },
+ '1': { width: 20, points: [[6,17],[8,18],[11,21],[11,0]] },
+ '2': { width: 20, points: [[4,16],[4,17],[5,19],[6,20],[8,21],[12,21],[14,20],[15,19],[16,17],[16,15],[15,13],[13,10],[3,0],[17,0]] },
+ '3': { width: 20, points: [[5,21],[16,21],[10,13],[13,13],[15,12],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]] },
+ '4': { width: 20, points: [[13,21],[3,7],[18,7],[-1,-1],[13,21],[13,0]] },
+ '5': { width: 20, points: [[15,21],[5,21],[4,12],[5,13],[8,14],[11,14],[14,13],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]] },
+ '6': { width: 20, points: [[16,18],[15,20],[12,21],[10,21],[7,20],[5,17],[4,12],[4,7],[5,3],[7,1],[10,0],[11,0],[14,1],[16,3],[17,6],[17,7],[16,10],[14,12],[11,13],[10,13],[7,12],[5,10],[4,7]] },
+ '7': { width: 20, points: [[17,21],[7,0],[-1,-1],[3,21],[17,21]] },
+ '8': { width: 20, points: [[8,21],[5,20],[4,18],[4,16],[5,14],[7,13],[11,12],[14,11],[16,9],[17,7],[17,4],[16,2],[15,1],[12,0],[8,0],[5,1],[4,2],[3,4],[3,7],[4,9],[6,11],[9,12],[13,13],[15,14],[16,16],[16,18],[15,20],[12,21],[8,21]] },
+ '9': { width: 20, points: [[16,14],[15,11],[13,9],[10,8],[9,8],[6,9],[4,11],[3,14],[3,15],[4,18],[6,20],[9,21],[10,21],[13,20],[15,18],[16,14],[16,9],[15,4],[13,1],[10,0],[8,0],[5,1],[4,3]] },
+ ':': { width: 10, points: [[5,14],[4,13],[5,12],[6,13],[5,14],[-1,-1],[5,2],[4,1],[5,0],[6,1],[5,2]] },
+ ';': { width: 10, points: [[5,14],[4,13],[5,12],[6,13],[5,14],[-1,-1],[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]] },
+ '<': { width: 24, points: [[20,18],[4,9],[20,0]] },
+ '=': { width: 26, points: [[4,12],[22,12],[-1,-1],[4,6],[22,6]] },
+ '>': { width: 24, points: [[4,18],[20,9],[4,0]] },
+ '?': { width: 18, points: [[3,16],[3,17],[4,19],[5,20],[7,21],[11,21],[13,20],[14,19],[15,17],[15,15],[14,13],[13,12],[9,10],[9,7],[-1,-1],[9,2],[8,1],[9,0],[10,1],[9,2]] },
+ '@': { width: 27, points: [[18,13],[17,15],[15,16],[12,16],[10,15],[9,14],[8,11],[8,8],[9,6],[11,5],[14,5],[16,6],[17,8],[-1,-1],[12,16],[10,14],[9,11],[9,8],[10,6],[11,5],[-1,-1],[18,16],[17,8],[17,6],[19,5],[21,5],[23,7],[24,10],[24,12],[23,15],[22,17],[20,19],[18,20],[15,21],[12,21],[9,20],[7,19],[5,17],[4,15],[3,12],[3,9],[4,6],[5,4],[7,2],[9,1],[12,0],[15,0],[18,1],[20,2],[21,3],[-1,-1],[19,16],[18,8],[18,6],[19,5]] },
+ 'A': { width: 18, points: [[9,21],[1,0],[-1,-1],[9,21],[17,0],[-1,-1],[4,7],[14,7]] },
+ 'B': { width: 21, points: [[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[-1,-1],[4,11],[13,11],[16,10],[17,9],[18,7],[18,4],[17,2],[16,1],[13,0],[4,0]] },
+ 'C': { width: 21, points: [[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5]] },
+ 'D': { width: 21, points: [[4,21],[4,0],[-1,-1],[4,21],[11,21],[14,20],[16,18],[17,16],[18,13],[18,8],[17,5],[16,3],[14,1],[11,0],[4,0]] },
+ 'E': { width: 19, points: [[4,21],[4,0],[-1,-1],[4,21],[17,21],[-1,-1],[4,11],[12,11],[-1,-1],[4,0],[17,0]] },
+ 'F': { width: 18, points: [[4,21],[4,0],[-1,-1],[4,21],[17,21],[-1,-1],[4,11],[12,11]] },
+ 'G': { width: 21, points: [[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[18,8],[-1,-1],[13,8],[18,8]] },
+ 'H': { width: 22, points: [[4,21],[4,0],[-1,-1],[18,21],[18,0],[-1,-1],[4,11],[18,11]] },
+ 'I': { width: 8, points: [[4,21],[4,0]] },
+ 'J': { width: 16, points: [[12,21],[12,5],[11,2],[10,1],[8,0],[6,0],[4,1],[3,2],[2,5],[2,7]] },
+ 'K': { width: 21, points: [[4,21],[4,0],[-1,-1],[18,21],[4,7],[-1,-1],[9,12],[18,0]] },
+ 'L': { width: 17, points: [[4,21],[4,0],[-1,-1],[4,0],[16,0]] },
+ 'M': { width: 24, points: [[4,21],[4,0],[-1,-1],[4,21],[12,0],[-1,-1],[20,21],[12,0],[-1,-1],[20,21],[20,0]] },
+ 'N': { width: 22, points: [[4,21],[4,0],[-1,-1],[4,21],[18,0],[-1,-1],[18,21],[18,0]] },
+ 'O': { width: 22, points: [[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21]] },
+ 'P': { width: 21, points: [[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,14],[17,12],[16,11],[13,10],[4,10]] },
+ 'Q': { width: 22, points: [[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21],[-1,-1],[12,4],[18,-2]] },
+ 'R': { width: 21, points: [[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[4,11],[-1,-1],[11,11],[18,0]] },
+ 'S': { width: 20, points: [[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]] },
+ 'T': { width: 16, points: [[8,21],[8,0],[-1,-1],[1,21],[15,21]] },
+ 'U': { width: 22, points: [[4,21],[4,6],[5,3],[7,1],[10,0],[12,0],[15,1],[17,3],[18,6],[18,21]] },
+ 'V': { width: 18, points: [[1,21],[9,0],[-1,-1],[17,21],[9,0]] },
+ 'W': { width: 24, points: [[2,21],[7,0],[-1,-1],[12,21],[7,0],[-1,-1],[12,21],[17,0],[-1,-1],[22,21],[17,0]] },
+ 'X': { width: 20, points: [[3,21],[17,0],[-1,-1],[17,21],[3,0]] },
+ 'Y': { width: 18, points: [[1,21],[9,11],[9,0],[-1,-1],[17,21],[9,11]] },
+ 'Z': { width: 20, points: [[17,21],[3,0],[-1,-1],[3,21],[17,21],[-1,-1],[3,0],[17,0]] },
+ '[': { width: 14, points: [[4,25],[4,-7],[-1,-1],[5,25],[5,-7],[-1,-1],[4,25],[11,25],[-1,-1],[4,-7],[11,-7]] },
+ '\\': { width: 14, points: [[0,21],[14,-3]] },
+ ']': { width: 14, points: [[9,25],[9,-7],[-1,-1],[10,25],[10,-7],[-1,-1],[3,25],[10,25],[-1,-1],[3,-7],[10,-7]] },
+ '^': { width: 16, points: [[6,15],[8,18],[10,15],[-1,-1],[3,12],[8,17],[13,12],[-1,-1],[8,17],[8,0]] },
+ '_': { width: 16, points: [[0,-2],[16,-2]] },
+ '`': { width: 10, points: [[6,21],[5,20],[4,18],[4,16],[5,15],[6,16],[5,17]] },
+ 'a': { width: 19, points: [[15,14],[15,0],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'b': { width: 19, points: [[4,21],[4,0],[-1,-1],[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]] },
+ 'c': { width: 18, points: [[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'd': { width: 19, points: [[15,21],[15,0],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'e': { width: 18, points: [[3,8],[15,8],[15,10],[14,12],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'f': { width: 12, points: [[10,21],[8,21],[6,20],[5,17],[5,0],[-1,-1],[2,14],[9,14]] },
+ 'g': { width: 19, points: [[15,14],[15,-2],[14,-5],[13,-6],[11,-7],[8,-7],[6,-6],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'h': { width: 19, points: [[4,21],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]] },
+ 'i': { width: 8, points: [[3,21],[4,20],[5,21],[4,22],[3,21],[-1,-1],[4,14],[4,0]] },
+ 'j': { width: 10, points: [[5,21],[6,20],[7,21],[6,22],[5,21],[-1,-1],[6,14],[6,-3],[5,-6],[3,-7],[1,-7]] },
+ 'k': { width: 17, points: [[4,21],[4,0],[-1,-1],[14,14],[4,4],[-1,-1],[8,8],[15,0]] },
+ 'l': { width: 8, points: [[4,21],[4,0]] },
+ 'm': { width: 30, points: [[4,14],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0],[-1,-1],[15,10],[18,13],[20,14],[23,14],[25,13],[26,10],[26,0]] },
+ 'n': { width: 19, points: [[4,14],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]] },
+ 'o': { width: 19, points: [[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3],[16,6],[16,8],[15,11],[13,13],[11,14],[8,14]] },
+ 'p': { width: 19, points: [[4,14],[4,-7],[-1,-1],[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]] },
+ 'q': { width: 19, points: [[15,14],[15,-7],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
+ 'r': { width: 13, points: [[4,14],[4,0],[-1,-1],[4,8],[5,11],[7,13],[9,14],[12,14]] },
+ 's': { width: 17, points: [[14,11],[13,13],[10,14],[7,14],[4,13],[3,11],[4,9],[6,8],[11,7],[13,6],[14,4],[14,3],[13,1],[10,0],[7,0],[4,1],[3,3]] },
+ 't': { width: 12, points: [[5,21],[5,4],[6,1],[8,0],[10,0],[-1,-1],[2,14],[9,14]] },
+ 'u': { width: 19, points: [[4,14],[4,4],[5,1],[7,0],[10,0],[12,1],[15,4],[-1,-1],[15,14],[15,0]] },
+ 'v': { width: 16, points: [[2,14],[8,0],[-1,-1],[14,14],[8,0]] },
+ 'w': { width: 22, points: [[3,14],[7,0],[-1,-1],[11,14],[7,0],[-1,-1],[11,14],[15,0],[-1,-1],[19,14],[15,0]] },
+ 'x': { width: 17, points: [[3,14],[14,0],[-1,-1],[14,14],[3,0]] },
+ 'y': { width: 16, points: [[2,14],[8,0],[-1,-1],[14,14],[8,0],[6,-4],[4,-6],[2,-7],[1,-7]] },
+ 'z': { width: 17, points: [[14,14],[3,0],[-1,-1],[3,14],[14,14],[-1,-1],[3,0],[14,0]] },
+ '{': { width: 14, points: [[9,25],[7,24],[6,23],[5,21],[5,19],[6,17],[7,16],[8,14],[8,12],[6,10],[-1,-1],[7,24],[6,22],[6,20],[7,18],[8,17],[9,15],[9,13],[8,11],[4,9],[8,7],[9,5],[9,3],[8,1],[7,0],[6,-2],[6,-4],[7,-6],[-1,-1],[6,8],[8,6],[8,4],[7,2],[6,1],[5,-1],[5,-3],[6,-5],[7,-6],[9,-7]] },
+ '|': { width: 8, points: [[4,25],[4,-7]] },
+ '}': { width: 14, points: [[5,25],[7,24],[8,23],[9,21],[9,19],[8,17],[7,16],[6,14],[6,12],[8,10],[-1,-1],[7,24],[8,22],[8,20],[7,18],[6,17],[5,15],[5,13],[6,11],[10,9],[6,7],[5,5],[5,3],[6,1],[7,0],[8,-2],[8,-4],[7,-6],[-1,-1],[8,8],[6,6],[6,4],[7,2],[8,1],[9,-1],[9,-3],[8,-5],[7,-6],[5,-7]] },
+ '~': { width: 24, points: [[3,6],[3,8],[4,11],[6,12],[8,12],[10,11],[14,8],[16,7],[18,7],[20,8],[21,10],[-1,-1],[3,8],[4,10],[6,11],[8,11],[10,10],[14,7],[16,6],[18,6],[20,7],[21,10],[21,12]] }
+ };
+
+ $.jqplot.CanvasFontRenderer = function(options) {
+ options = options || {};
+ if (!options.pt2px) {
+ options.pt2px = 1.5;
+ }
+ $.jqplot.CanvasTextRenderer.call(this, options);
+ };
+
+ $.jqplot.CanvasFontRenderer.prototype = new $.jqplot.CanvasTextRenderer({});
+ $.jqplot.CanvasFontRenderer.prototype.constructor = $.jqplot.CanvasFontRenderer;
+
+ $.jqplot.CanvasFontRenderer.prototype.measure = function(ctx, str)
+ {
+ // var fstyle = this.fontStyle+' '+this.fontVariant+' '+this.fontWeight+' '+this.fontSize+' '+this.fontFamily;
+ var fstyle = this.fontSize+' '+this.fontFamily;
+ ctx.save();
+ ctx.font = fstyle;
+ var w = ctx.measureText(str).width;
+ ctx.restore();
+ return w;
+ };
+
+ $.jqplot.CanvasFontRenderer.prototype.draw = function(ctx, str)
+ {
+ var x = 0;
+ // leave room at bottom for descenders.
+ var y = this.height*0.72;
+ //var y = 12;
+
+ ctx.save();
+ var tx, ty;
+
+ // 1st quadrant
+ if ((-Math.PI/2 <= this.angle && this.angle <= 0) || (Math.PI*3/2 <= this.angle && this.angle <= Math.PI*2)) {
+ tx = 0;
+ ty = -Math.sin(this.angle) * this.width;
+ }
+ // 4th quadrant
+ else if ((0 < this.angle && this.angle <= Math.PI/2) || (-Math.PI*2 <= this.angle && this.angle <= -Math.PI*3/2)) {
+ tx = Math.sin(this.angle) * this.height;
+ ty = 0;
+ }
+ // 2nd quadrant
+ else if ((-Math.PI < this.angle && this.angle < -Math.PI/2) || (Math.PI <= this.angle && this.angle <= Math.PI*3/2)) {
+ tx = -Math.cos(this.angle) * this.width;
+ ty = -Math.sin(this.angle) * this.width - Math.cos(this.angle) * this.height;
+ }
+ // 3rd quadrant
+ else if ((-Math.PI*3/2 < this.angle && this.angle < Math.PI) || (Math.PI/2 < this.angle && this.angle < Math.PI)) {
+ tx = Math.sin(this.angle) * this.height - Math.cos(this.angle)*this.width;
+ ty = -Math.cos(this.angle) * this.height;
+ }
+ ctx.strokeStyle = this.fillStyle;
+ ctx.fillStyle = this.fillStyle;
+ // var fstyle = this.fontStyle+' '+this.fontVariant+' '+this.fontWeight+' '+this.fontSize+' '+this.fontFamily;
+ var fstyle = this.fontSize+' '+this.fontFamily;
+ ctx.font = fstyle;
+ ctx.translate(tx, ty);
+ ctx.rotate(this.angle);
+ ctx.fillText(str, x, y);
+ // ctx.strokeText(str, x, y);
+
+ ctx.restore();
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/js/jqplot/plugins/jqplot.cursor.js b/js/jqplot/plugins/jqplot.cursor.js
new file mode 100644
index 0000000000..8304b7d53a
--- /dev/null
+++ b/js/jqplot/plugins/jqplot.cursor.js
@@ -0,0 +1,1093 @@
+/**
+ * jqPlot
+ * Pure JavaScript plotting plugin using jQuery
+ *
+ * Version: 1.0.0b2_r1012
+ *
+ * Copyright (c) 2009-2011 Chris Leonello
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * Although not required, the author would appreciate an email letting him
+ * know of any substantial use of jqPlot. You can reach the author at:
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
+ *
+ * If you are feeling kind and generous, consider supporting the project by
+ * making a donation at: http://www.jqplot.com/donate.php .
+ *
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
+ *
+ * version 2007.04.27
+ * author Ash Searle
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ * The author (Ash Searle) has placed this code in the public domain:
+ * "This code is unrestricted: you are free to use it however you like."
+ *
+ */
+(function($) {
+
+ /**
+ * Class: $.jqplot.Cursor
+ * Plugin class representing the cursor as displayed on the plot.
+ */
+ $.jqplot.Cursor = function(options) {
+ // Group: Properties
+ //
+ // prop: style
+ // CSS spec for cursor style
+ this.style = 'crosshair';
+ this.previousCursor = 'auto';
+ // prop: show
+ // wether to show the cursor or not.
+ this.show = $.jqplot.config.enablePlugins;
+ // prop: showTooltip
+ // show a cursor position tooltip. Location of the tooltip
+ // will be controlled by followMouse and tooltipLocation.
+ this.showTooltip = true;
+ // prop: followMouse
+ // Tooltip follows the mouse, it is not at a fixed location.
+ // Tooltip will show on the grid at the location given by
+ // tooltipLocation, offset from the grid edge by tooltipOffset.
+ this.followMouse = false;
+ // prop: tooltipLocation
+ // Where to position tooltip. If followMouse is true, this is
+ // relative to the cursor, otherwise, it is relative to the grid.
+ // One of 'n', 'ne', 'e', 'se', 's', 'sw', 'w', 'nw'
+ this.tooltipLocation = 'se';
+ // prop: tooltipOffset
+ // Pixel offset of tooltip from the grid boudaries or cursor center.
+ this.tooltipOffset = 6;
+ // prop: showTooltipGridPosition
+ // show the grid pixel coordinates of the mouse.
+ this.showTooltipGridPosition = false;
+ // prop: showTooltipUnitPosition
+ // show the unit (data) coordinates of the mouse.
+ this.showTooltipUnitPosition = true;
+ // prop: showTooltipDataPosition
+ // Used with showVerticalLine to show intersecting data points in the tooltip.
+ this.showTooltipDataPosition = false;
+ // prop: tooltipFormatString
+ // sprintf format string for the tooltip.
+ // Uses Ash Searle's javascript sprintf implementation
+ // found here: http://hexmen.com/blog/2007/03/printf-sprintf/
+ // See http://perldoc.perl.org/functions/sprintf.html for reference
+ // Note, if showTooltipDataPosition is true, the default tooltipFormatString
+ // will be set to the cursorLegendFormatString, not the default given here.
+ this.tooltipFormatString = '%.4P, %.4P';
+ // prop: useAxesFormatters
+ // Use the x and y axes formatters to format the text in the tooltip.
+ this.useAxesFormatters = true;
+ // prop: tooltipAxisGroups
+ // Show position for the specified axes.
+ // This is an array like [['xaxis', 'yaxis'], ['xaxis', 'y2axis']]
+ // Default is to compute automatically for all visible axes.
+ this.tooltipAxisGroups = [];
+ // prop: zoom
+ // Enable plot zooming.
+ this.zoom = false;
+ // zoomProxy and zoomTarget properties are not directly set by user.
+ // They Will be set through call to zoomProxy method.
+ this.zoomProxy = false;
+ this.zoomTarget = false;
+ // prop: looseZoom
+ // Will expand zoom range to provide more rounded tick values.
+ // Works only with linear, log and date axes.
+ this.looseZoom = true;
+ // prop: clickReset
+ // Will reset plot zoom if single click on plot without drag.
+ this.clickReset = false;
+ // prop: dblClickReset
+ // Will reset plot zoom if double click on plot without drag.
+ this.dblClickReset = true;
+ // prop: showVerticalLine
+ // draw a vertical line across the plot which follows the cursor.
+ // When the line is near a data point, a special legend and/or tooltip can
+ // be updated with the data values.
+ this.showVerticalLine = false;
+ // prop: showHorizontalLine
+ // draw a horizontal line across the plot which follows the cursor.
+ this.showHorizontalLine = false;
+ // prop: constrainZoomTo
+ // 'none', 'x' or 'y'
+ this.constrainZoomTo = 'none';
+ // // prop: autoscaleConstraint
+ // // when a constrained axis is specified, true will
+ // // auatoscale the adjacent axis.
+ // this.autoscaleConstraint = true;
+ this.shapeRenderer = new $.jqplot.ShapeRenderer();
+ this._zoom = {start:[], end:[], started: false, zooming:false, isZoomed:false, axes:{start:{}, end:{}}, gridpos:{}, datapos:{}};
+ this._tooltipElem;
+ this.zoomCanvas;
+ this.cursorCanvas;
+ // prop: intersectionThreshold
+ // pixel distance from data point or marker to consider cursor lines intersecting with point.
+ // If data point markers are not shown, this should be >= 1 or will often miss point intersections.
+ this.intersectionThreshold = 2;
+ // prop: showCursorLegend
+ // Replace the plot legend with an enhanced legend displaying intersection information.
+ this.showCursorLegend = false;
+ // prop: cursorLegendFormatString
+ // Format string used in the cursor legend. If showTooltipDataPosition is true,
+ // this will also be the default format string used by tooltipFormatString.
+ this.cursorLegendFormatString = $.jqplot.Cursor.cursorLegendFormatString;
+ // whether the cursor is over the grid or not.
+ this._oldHandlers = {onselectstart: null, ondrag: null, onmousedown: null};
+ // prop: constrainOutsideZoom
+ // True to limit actual zoom area to edges of grid, even when zooming
+ // outside of plot area. That is, can't zoom out by mousing outside plot.
+ this.constrainOutsideZoom = true;
+ // prop: showTooltipOutsideZoom
+ // True will keep updating the tooltip when zooming of the grid.
+ this.showTooltipOutsideZoom = false;
+ // true if mouse is over grid, false if not.
+ this.onGrid = false;
+ $.extend(true, this, options);
+ };
+
+ $.jqplot.Cursor.cursorLegendFormatString = '%s x:%s, y:%s';
+
+ // called with scope of plot
+ $.jqplot.Cursor.init = function (target, data, opts){
+ // add a cursor attribute to the plot
+ var options = opts || {};
+ this.plugins.cursor = new $.jqplot.Cursor(options.cursor);
+ var c = this.plugins.cursor;
+
+ if (c.show) {
+ $.jqplot.eventListenerHooks.push(['jqplotMouseEnter', handleMouseEnter]);
+ $.jqplot.eventListenerHooks.push(['jqplotMouseLeave', handleMouseLeave]);
+ $.jqplot.eventListenerHooks.push(['jqplotMouseMove', handleMouseMove]);
+
+ if (c.showCursorLegend) {
+ opts.legend = opts.legend || {};
+ opts.legend.renderer = $.jqplot.CursorLegendRenderer;
+ opts.legend.formatString = this.plugins.cursor.cursorLegendFormatString;
+ opts.legend.show = true;
+ }
+
+ if (c.zoom) {
+ $.jqplot.eventListenerHooks.push(['jqplotMouseDown', handleMouseDown]);
+
+ if (c.clickReset) {
+ $.jqplot.eventListenerHooks.push(['jqplotClick', handleClick]);
+ }
+
+ if (c.dblClickReset) {
+ $.jqplot.eventListenerHooks.push(['jqplotDblClick', handleDblClick]);
+ }
+ }
+
+ this.resetZoom = function() {
+ var axes = this.axes;
+ if (!c.zoomProxy) {
+ for (var ax in axes) {
+ axes[ax].reset();
+ axes[ax]._ticks = [];
+ // fake out tick creation algorithm to make sure original auto
+ // computed format string is used if _overrideFormatString is true
+ if (c._zoom.axes[ax] !== undefined) {
+ axes[ax]._autoFormatString = c._zoom.axes[ax].tickFormatString;
+ }
+ }
+ this.redraw();
+ }
+ else {
+ var ctx = this.plugins.cursor.zoomCanvas._ctx;
+ ctx.clearRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ ctx = null;
+ }
+ this.plugins.cursor._zoom.isZoomed = false;
+ this.target.trigger('jqplotResetZoom', [this, this.plugins.cursor]);
+ };
+
+
+ if (c.showTooltipDataPosition) {
+ c.showTooltipUnitPosition = false;
+ c.showTooltipGridPosition = false;
+ if (options.cursor.tooltipFormatString == undefined) {
+ c.tooltipFormatString = $.jqplot.Cursor.cursorLegendFormatString;
+ }
+ }
+ }
+ };
+
+ // called with context of plot
+ $.jqplot.Cursor.postDraw = function() {
+ var c = this.plugins.cursor;
+
+ // Memory Leaks patch
+ if (c.zoomCanvas) {
+ c.zoomCanvas.resetCanvas();
+ c.zoomCanvas = null;
+ }
+
+ if (c.cursorCanvas) {
+ c.cursorCanvas.resetCanvas();
+ c.cursorCanvas = null;
+ }
+
+ if (c._tooltipElem) {
+ c._tooltipElem.emptyForce();
+ c._tooltipElem = null;
+ }
+
+
+ if (c.zoom) {
+ c.zoomCanvas = new $.jqplot.GenericCanvas();
+ this.eventCanvas._elem.before(c.zoomCanvas.createElement(this._gridPadding, 'jqplot-zoom-canvas', this._plotDimensions, this));
+ c.zoomCanvas.setContext();
+ }
+
+ var elem = document.createElement('div');
+ c._tooltipElem = $(elem);
+ elem = null;
+ c._tooltipElem.addClass('jqplot-cursor-tooltip');
+ c._tooltipElem.css({position:'absolute', display:'none'});
+
+
+ if (c.zoomCanvas) {
+ c.zoomCanvas._elem.before(c._tooltipElem);
+ }
+
+ else {
+ this.eventCanvas._elem.before(c._tooltipElem);
+ }
+
+ if (c.showVerticalLine || c.showHorizontalLine) {
+ c.cursorCanvas = new $.jqplot.GenericCanvas();
+ this.eventCanvas._elem.before(c.cursorCanvas.createElement(this._gridPadding, 'jqplot-cursor-canvas', this._plotDimensions, this));
+ c.cursorCanvas.setContext();
+ }
+
+ // if we are showing the positions in unit coordinates, and no axes groups
+ // were specified, create a default set.
+ if (c.showTooltipUnitPosition){
+ if (c.tooltipAxisGroups.length === 0) {
+ var series = this.series;
+ var s;
+ var temp = [];
+ for (var i=0; i 6 && Math.abs(gridpos.y - c._zoom.start[1]) > 6) || (c.constrainZoomTo == 'x' && Math.abs(gridpos.x - c._zoom.start[0]) > 6) || (c.constrainZoomTo == 'y' && Math.abs(gridpos.y - c._zoom.start[1]) > 6)) {
+ if (!plot.plugins.cursor.zoomProxy) {
+ for (var ax in datapos) {
+ // make a copy of the original axes to revert back.
+ if (c._zoom.axes[ax] == undefined) {
+ c._zoom.axes[ax] = {};
+ c._zoom.axes[ax].numberTicks = axes[ax].numberTicks;
+ c._zoom.axes[ax].tickInterval = axes[ax].tickInterval;
+ // for date axes...
+ c._zoom.axes[ax].daTickInterval = axes[ax].daTickInterval;
+ c._zoom.axes[ax].min = axes[ax].min;
+ c._zoom.axes[ax].max = axes[ax].max;
+ c._zoom.axes[ax].tickFormatString = (axes[ax].tickOptions != null) ? axes[ax].tickOptions.formatString : '';
+ }
+
+
+ if ((c.constrainZoomTo == 'none') || (c.constrainZoomTo == 'x' && ax.charAt(0) == 'x') || (c.constrainZoomTo == 'y' && ax.charAt(0) == 'y')) {
+ dp = datapos[ax];
+ if (dp != null) {
+ if (dp > start[ax]) {
+ newmin = start[ax];
+ newmax = dp;
+ }
+ else {
+ span = start[ax] - dp;
+ newmin = dp;
+ newmax = start[ax];
+ }
+
+ curax = axes[ax];
+
+ _numberTicks = null;
+
+ // if aligning this axis, use number of ticks from previous axis.
+ // Do I need to reset somehow if alignTicks is changed and then graph is replotted??
+ if (curax.alignTicks) {
+ if (curax.name === 'x2axis' && plot.axes.xaxis.show) {
+ _numberTicks = plot.axes.xaxis.numberTicks;
+ }
+ else if (curax.name.charAt(0) === 'y' && curax.name !== 'yaxis' && curax.name !== 'yMidAxis' && plot.axes.yaxis.show) {
+ _numberTicks = plot.axes.yaxis.numberTicks;
+ }
+ }
+
+ if (this.looseZoom && (axes[ax].renderer.constructor === $.jqplot.LinearAxisRenderer || axes[ax].renderer.constructor === $.jqplot.LogAxisRenderer )) { //} || axes[ax].renderer.constructor === $.jqplot.DateAxisRenderer)) {
+
+ ret = $.jqplot.LinearTickGenerator(newmin, newmax, curax._scalefact, _numberTicks);
+
+ // if new minimum is less than "true" minimum of axis display, adjust it
+ if (axes[ax].tickInset && ret[0] < axes[ax].min + axes[ax].tickInset * axes[ax].tickInterval) {
+ ret[0] += ret[4];
+ ret[2] -= 1;
+ }
+
+ // if new maximum is greater than "true" max of axis display, adjust it
+ if (axes[ax].tickInset && ret[1] > axes[ax].max - axes[ax].tickInset * axes[ax].tickInterval) {
+ ret[1] -= ret[4];
+ ret[2] -= 1;
+ }
+
+ // for log axes, don't fall below current minimum, this will look bad and can't have 0 in range anyway.
+ if (axes[ax].renderer.constructor === $.jqplot.LogAxisRenderer && ret[0] < axes[ax].min) {
+ // remove a tick and shift min up
+ ret[0] += ret[4];
+ ret[2] -= 1;
+ }
+
+ axes[ax].min = ret[0];
+ axes[ax].max = ret[1];
+ axes[ax]._autoFormatString = ret[3];
+ axes[ax].numberTicks = ret[2];
+ axes[ax].tickInterval = ret[4];
+ // for date axes...
+ axes[ax].daTickInterval = [ret[4]/1000, 'seconds'];
+ }
+ else {
+ axes[ax].min = newmin;
+ axes[ax].max = newmax;
+ axes[ax].tickInterval = null;
+ axes[ax].numberTicks = null;
+ // for date axes...
+ axes[ax].daTickInterval = null;
+ }
+
+ axes[ax]._ticks = [];
+ }
+ }
+
+ // if ((c.constrainZoomTo == 'x' && ax.charAt(0) == 'y' && c.autoscaleConstraint) || (c.constrainZoomTo == 'y' && ax.charAt(0) == 'x' && c.autoscaleConstraint)) {
+ // dp = datapos[ax];
+ // if (dp != null) {
+ // axes[ax].max == null;
+ // axes[ax].min = null;
+ // }
+ // }
+ }
+ ctx.clearRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ plot.redraw();
+ c._zoom.isZoomed = true;
+ ctx = null;
+ }
+ plot.target.trigger('jqplotZoom', [gridpos, datapos, plot, cursor]);
+ }
+ };
+
+ $.jqplot.preInitHooks.push($.jqplot.Cursor.init);
+ $.jqplot.postDrawHooks.push($.jqplot.Cursor.postDraw);
+
+ function updateTooltip(gridpos, datapos, plot) {
+ var c = plot.plugins.cursor;
+ var s = '';
+ var addbr = false;
+ if (c.showTooltipGridPosition) {
+ s = gridpos.x+', '+gridpos.y;
+ addbr = true;
+ }
+ if (c.showTooltipUnitPosition) {
+ var g;
+ for (var i=0; i';
+ }
+ if (c.useAxesFormatters) {
+ var xf = plot.axes[g[0]]._ticks[0].formatter;
+ var yf = plot.axes[g[1]]._ticks[0].formatter;
+ var xfstr = plot.axes[g[0]]._ticks[0].formatString;
+ var yfstr = plot.axes[g[1]]._ticks[0].formatString;
+ s += xf(xfstr, datapos[g[0]]) + ', '+ yf(yfstr, datapos[g[1]]);
+ }
+ else {
+ s += $.jqplot.sprintf(c.tooltipFormatString, datapos[g[0]], datapos[g[1]]);
+ }
+ addbr = true;
+ }
+ }
+
+ if (c.showTooltipDataPosition) {
+ var series = plot.series;
+ var ret = getIntersectingPoints(plot, gridpos.x, gridpos.y);
+ var addbr = false;
+
+ for (var i = 0; i< series.length; i++) {
+ if (series[i].show) {
+ var idx = series[i].index;
+ var label = series[i].label.toString();
+ var cellid = $.inArray(idx, ret.indices);
+ var sx = undefined;
+ var sy = undefined;
+ if (cellid != -1) {
+ var data = ret.data[cellid].data;
+ if (c.useAxesFormatters) {
+ var xf = series[i]._xaxis._ticks[0].formatter;
+ var yf = series[i]._yaxis._ticks[0].formatter;
+ var xfstr = series[i]._xaxis._ticks[0].formatString;
+ var yfstr = series[i]._yaxis._ticks[0].formatString;
+ sx = xf(xfstr, data[0]);
+ sy = yf(yfstr, data[1]);
+ }
+ else {
+ sx = data[0];
+ sy = data[1];
+ }
+ if (addbr) {
+ s += ' ';
+ }
+ s += $.jqplot.sprintf(c.tooltipFormatString, label, sx, sy);
+ addbr = true;
+ }
+ }
+ }
+
+ }
+ c._tooltipElem.html(s);
+ }
+
+ function moveLine(gridpos, plot) {
+ var c = plot.plugins.cursor;
+ var ctx = c.cursorCanvas._ctx;
+ ctx.clearRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ if (c.showVerticalLine) {
+ c.shapeRenderer.draw(ctx, [[gridpos.x, 0], [gridpos.x, ctx.canvas.height]]);
+ }
+ if (c.showHorizontalLine) {
+ c.shapeRenderer.draw(ctx, [[0, gridpos.y], [ctx.canvas.width, gridpos.y]]);
+ }
+ var ret = getIntersectingPoints(plot, gridpos.x, gridpos.y);
+ if (c.showCursorLegend) {
+ var cells = $(plot.targetId + ' td.jqplot-cursor-legend-label');
+ for (var i=0; i0; n--) {
+ axis = an[n-1];
+ if (ax[axis].show) {
+ dataPos[axis] = ax[axis].series_p2u(gridPos[axis.charAt(0)]);
+ }
+ }
+
+ return {offsets:go, gridPos:gridPos, dataPos:dataPos};
+ }
+
+ function handleZoomMove(ev) {
+ var plot = ev.data.plot;
+ var c = plot.plugins.cursor;
+ // don't do anything if not on grid.
+ if (c.show && c.zoom && c._zoom.started && !c.zoomTarget) {
+ var ctx = c.zoomCanvas._ctx;
+ var positions = getEventPosition(ev);
+ var gridpos = positions.gridPos;
+ var datapos = positions.dataPos;
+ c._zoom.gridpos = gridpos;
+ c._zoom.datapos = datapos;
+ c._zoom.zooming = true;
+ var xpos = gridpos.x;
+ var ypos = gridpos.y;
+ var height = ctx.canvas.height;
+ var width = ctx.canvas.width;
+ if (c.showTooltip && !c.onGrid && c.showTooltipOutsideZoom) {
+ updateTooltip(gridpos, datapos, plot);
+ if (c.followMouse) {
+ moveTooltip(gridpos, plot);
+ }
+ }
+ if (c.constrainZoomTo == 'x') {
+ c._zoom.end = [xpos, height];
+ }
+ else if (c.constrainZoomTo == 'y') {
+ c._zoom.end = [width, ypos];
+ }
+ else {
+ c._zoom.end = [xpos, ypos];
+ }
+ var sel = window.getSelection;
+ if (document.selection && document.selection.empty)
+ {
+ document.selection.empty();
+ }
+ else if (sel && !sel().isCollapsed) {
+ sel().collapse();
+ }
+ drawZoomBox.call(c);
+ ctx = null;
+ }
+ }
+
+ function handleMouseDown(ev, gridpos, datapos, neighbor, plot) {
+ var c = plot.plugins.cursor;
+ $(document).one('mouseup.jqplot_cursor', {plot:plot}, handleMouseUp);
+ var axes = plot.axes;
+ if (document.onselectstart != undefined) {
+ c._oldHandlers.onselectstart = document.onselectstart;
+ document.onselectstart = function () { return false; };
+ }
+ if (document.ondrag != undefined) {
+ c._oldHandlers.ondrag = document.ondrag;
+ document.ondrag = function () { return false; };
+ }
+ if (document.onmousedown != undefined) {
+ c._oldHandlers.onmousedown = document.onmousedown;
+ document.onmousedown = function () { return false; };
+ }
+ if (c.zoom) {
+ if (!c.zoomProxy) {
+ var ctx = c.zoomCanvas._ctx;
+ ctx.clearRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ ctx = null;
+ }
+ if (c.constrainZoomTo == 'x') {
+ c._zoom.start = [gridpos.x, 0];
+ }
+ else if (c.constrainZoomTo == 'y') {
+ c._zoom.start = [0, gridpos.y];
+ }
+ else {
+ c._zoom.start = [gridpos.x, gridpos.y];
+ }
+ c._zoom.started = true;
+ for (var ax in datapos) {
+ // get zoom starting position.
+ c._zoom.axes.start[ax] = datapos[ax];
+ }
+ $(document).bind('mousemove.jqplotCursor', {plot:plot}, handleZoomMove);
+ }
+ }
+
+ function handleMouseUp(ev) {
+ var plot = ev.data.plot;
+ var c = plot.plugins.cursor;
+ if (c.zoom && c._zoom.zooming && !c.zoomTarget) {
+ var xpos = c._zoom.gridpos.x;
+ var ypos = c._zoom.gridpos.y;
+ var datapos = c._zoom.datapos;
+ var height = c.zoomCanvas._ctx.canvas.height;
+ var width = c.zoomCanvas._ctx.canvas.width;
+ var axes = plot.axes;
+
+ if (c.constrainOutsideZoom && !c.onGrid) {
+ if (xpos < 0) { xpos = 0; }
+ else if (xpos > width) { xpos = width; }
+ if (ypos < 0) { ypos = 0; }
+ else if (ypos > height) { ypos = height; }
+
+ for (var axis in datapos) {
+ if (datapos[axis]) {
+ if (axis.charAt(0) == 'x') {
+ datapos[axis] = axes[axis].series_p2u(xpos);
+ }
+ else {
+ datapos[axis] = axes[axis].series_p2u(ypos);
+ }
+ }
+ }
+ }
+
+ if (c.constrainZoomTo == 'x') {
+ ypos = height;
+ }
+ else if (c.constrainZoomTo == 'y') {
+ xpos = width;
+ }
+ c._zoom.end = [xpos, ypos];
+ c._zoom.gridpos = {x:xpos, y:ypos};
+
+ c.doZoom(c._zoom.gridpos, datapos, plot, c);
+ }
+ c._zoom.started = false;
+ c._zoom.zooming = false;
+
+ $(document).unbind('mousemove.jqplotCursor', handleZoomMove);
+
+ if (document.onselectstart != undefined && c._oldHandlers.onselectstart != null){
+ document.onselectstart = c._oldHandlers.onselectstart;
+ c._oldHandlers.onselectstart = null;
+ }
+ if (document.ondrag != undefined && c._oldHandlers.ondrag != null){
+ document.ondrag = c._oldHandlers.ondrag;
+ c._oldHandlers.ondrag = null;
+ }
+ if (document.onmousedown != undefined && c._oldHandlers.onmousedown != null){
+ document.onmousedown = c._oldHandlers.onmousedown;
+ c._oldHandlers.onmousedown = null;
+ }
+
+ }
+
+ function drawZoomBox() {
+ var start = this._zoom.start;
+ var end = this._zoom.end;
+ var ctx = this.zoomCanvas._ctx;
+ var l, t, h, w;
+ if (end[0] > start[0]) {
+ l = start[0];
+ w = end[0] - start[0];
+ }
+ else {
+ l = end[0];
+ w = start[0] - end[0];
+ }
+ if (end[1] > start[1]) {
+ t = start[1];
+ h = end[1] - start[1];
+ }
+ else {
+ t = end[1];
+ h = start[1] - end[1];
+ }
+ ctx.fillStyle = 'rgba(0,0,0,0.2)';
+ ctx.strokeStyle = '#999999';
+ ctx.lineWidth = 1.0;
+ ctx.clearRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ ctx.fillRect(0,0,ctx.canvas.width, ctx.canvas.height);
+ ctx.clearRect(l, t, w, h);
+ // IE won't show transparent fill rect, so stroke a rect also.
+ ctx.strokeRect(l,t,w,h);
+ ctx = null;
+ }
+
+ $.jqplot.CursorLegendRenderer = function(options) {
+ $.jqplot.TableLegendRenderer.call(this, options);
+ this.formatString = '%s';
+ };
+
+ $.jqplot.CursorLegendRenderer.prototype = new $.jqplot.TableLegendRenderer();
+ $.jqplot.CursorLegendRenderer.prototype.constructor = $.jqplot.CursorLegendRenderer;
+
+ // called in context of a Legend
+ $.jqplot.CursorLegendRenderer.prototype.draw = function() {
+ if (this._elem) {
+ this._elem.emptyForce();
+ this._elem = null;
+ }
+ if (this.show) {
+ var series = this._series, s;
+ // make a table. one line label per row.
+ var elem = document.createElement('div');
+ this._elem = $(elem);
+ elem = null;
+ this._elem.addClass('jqplot-legend jqplot-cursor-legend');
+ this._elem.css('position', 'absolute');
+
+ var pad = false;
+ for (var i = 0; i< series.length; i++) {
+ s = series[i];
+ if (s.show && s.showLabel) {
+ var lt = $.jqplot.sprintf(this.formatString, s.label.toString());
+ if (lt) {
+ var color = s.color;
+ if (s._stack && !s.fill) {
+ color = '';
+ }
+ addrow.call(this, lt, color, pad, i);
+ pad = true;
+ }
+ // let plugins add more rows to legend. Used by trend line plugin.
+ for (var j=0; j<$.jqplot.addLegendRowHooks.length; j++) {
+ var item = $.jqplot.addLegendRowHooks[j].call(this, s);
+ if (item) {
+ addrow.call(this, item.label, item.color, pad);
+ pad = true;
+ }
+ }
+ }
+ }
+ series = s = null;
+ delete series;
+ delete s;
+ }
+
+ function addrow(label, color, pad, idx) {
+ var rs = (pad) ? this.rowSpacing : '0';
+ var tr = $('
');
+ td.appendTo(tr);
+ td.data('seriesIndex', idx);
+ if (this.escapeHtml) {
+ td.text(label);
+ }
+ else {
+ td.html(label);
+ }
+ tr = null;
+ td = null;
+ }
+ return this._elem;
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/js/jqplot/plugins/jqplot.dateAxisRenderer.js b/js/jqplot/plugins/jqplot.dateAxisRenderer.js
new file mode 100644
index 0000000000..f09fc5443d
--- /dev/null
+++ b/js/jqplot/plugins/jqplot.dateAxisRenderer.js
@@ -0,0 +1,702 @@
+/**
+ * jqPlot
+ * Pure JavaScript plotting plugin using jQuery
+ *
+ * Version: 1.0.0b2_r1012
+ *
+ * Copyright (c) 2009-2011 Chris Leonello
+ * jqPlot is currently available for use in all personal or commercial projects
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
+ * choose the license that best suits your project and use it accordingly.
+ *
+ * Although not required, the author would appreciate an email letting him
+ * know of any substantial use of jqPlot. You can reach the author at:
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
+ *
+ * If you are feeling kind and generous, consider supporting the project by
+ * making a donation at: http://www.jqplot.com/donate.php .
+ *
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
+ *
+ * version 2007.04.27
+ * author Ash Searle
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
+ * http://hexmen.com/js/sprintf.js
+ * The author (Ash Searle) has placed this code in the public domain:
+ * "This code is unrestricted: you are free to use it however you like."
+ *
+ */
+(function($) {
+ /**
+ * Class: $.jqplot.DateAxisRenderer
+ * A plugin for a jqPlot to render an axis as a series of date values.
+ * This renderer has no options beyond those supplied by the class.
+ * It supplies it's own tick formatter, so the tickOptions.formatter option
+ * should not be overridden.
+ *
+ * Thanks to Ken Synder for his enhanced Date instance methods which are
+ * included with this code .
+ *
+ * To use this renderer, include the plugin in your source
+ * >
+ *
+ * and supply the appropriate options to your plot
+ *
+ * > {axes:{xaxis:{renderer:$.jqplot.DateAxisRenderer}}}
+ *
+ * Dates can be passed into the axis in almost any recognizable value and
+ * will be parsed. They will be rendered on the axis in the format
+ * specified by tickOptions.formatString. e.g. tickOptions.formatString = '%Y-%m-%d'.
+ *
+ * Accecptable format codes
+ * are:
+ *
+ * > Code Result Description
+ * > == Years ==
+ * > %Y 2008 Four-digit year
+ * > %y 08 Two-digit year
+ * > == Months ==
+ * > %m 09 Two-digit month
+ * > %#m 9 One or two-digit month
+ * > %B September Full month name
+ * > %b Sep Abbreviated month name
+ * > == Days ==
+ * > %d 05 Two-digit day of month
+ * > %#d 5 One or two-digit day of month
+ * > %e 5 One or two-digit day of month
+ * > %A Sunday Full name of the day of the week
+ * > %a Sun Abbreviated name of the day of the week
+ * > %w 0 Number of the day of the week (0 = Sunday, 6 = Saturday)
+ * > %o th The ordinal suffix string following the day of the month
+ * > == Hours ==
+ * > %H 23 Hours in 24-hour format (two digits)
+ * > %#H 3 Hours in 24-hour integer format (one or two digits)
+ * > %I 11 Hours in 12-hour format (two digits)
+ * > %#I 3 Hours in 12-hour integer format (one or two digits)
+ * > %p PM AM or PM
+ * > == Minutes ==
+ * > %M 09 Minutes (two digits)
+ * > %#M 9 Minutes (one or two digits)
+ * > == Seconds ==
+ * > %S 02 Seconds (two digits)
+ * > %#S 2 Seconds (one or two digits)
+ * > %s 1206567625723 Unix timestamp (Seconds past 1970-01-01 00:00:00)
+ * > == Milliseconds ==
+ * > %N 008 Milliseconds (three digits)
+ * > %#N 8 Milliseconds (one to three digits)
+ * > == Timezone ==
+ * > %O 360 difference in minutes between local time and GMT
+ * > %Z Mountain Standard Time Name of timezone as reported by browser
+ * > %G -06:00 Hours and minutes between GMT
+ * > == Shortcuts ==
+ * > %F 2008-03-26 %Y-%m-%d
+ * > %T 05:06:30 %H:%M:%S
+ * > %X 05:06:30 %H:%M:%S
+ * > %x 03/26/08 %m/%d/%y
+ * > %D 03/26/08 %m/%d/%y
+ * > %#c Wed Mar 26 15:31:00 2008 %a %b %e %H:%M:%S %Y
+ * > %v 3-Sep-2008 %e-%b-%Y
+ * > %R 15:31 %H:%M
+ * > %r 3:31:00 PM %I:%M:%S %p
+ * > == Characters ==
+ * > %n \n Newline
+ * > %t \t Tab
+ * > %% % Percent Symbol
+ */
+ $.jqplot.DateAxisRenderer = function() {
+ $.jqplot.LinearAxisRenderer.call(this);
+ this.date = new $.jsDate();
+ };
+
+ var second = 1000;
+ var minute = 60 * second;
+ var hour = 60 * minute;
+ var day = 24 * hour;
+ var week = 7 * day;
+
+ // these are less definitive
+ var month = 30.4368499 * day;
+ var year = 365.242199 * day;
+
+ var daysInMonths = [31,28,31,30,31,30,31,30,31,30,31,30];
+ // array of consistent nice intervals. Longer intervals
+ // will depend on days in month, days in year, etc.
+ var niceFormatStrings = ['%M:%S.%#N', '%M:%S.%#N', '%M:%S.%#N', '%M:%S', '%M:%S', '%M:%S', '%M:%S', '%H:%M:%S', '%H:%M:%S', '%H:%M', '%H:%M', '%H:%M', '%H:%M', '%H:%M', '%H:%M', '%a %H:%M', '%a %H:%M', '%b %e %H:%M', '%b %e %H:%M', '%b %e %H:%M', '%b %e %H:%M', '%v', '%v', '%v', '%v', '%v', '%v', '%v'];
+ var niceIntervals = [0.1*second, 0.2*second, 0.5*second, second, 2*second, 5*second, 10*second, 15*second, 30*second, minute, 2*minute, 5*minute, 10*minute, 15*minute, 30*minute, hour, 2*hour, 4*hour, 6*hour, 8*hour, 12*hour, day, 2*day, 3*day, 4*day, 5*day, week, 2*week];
+
+ var niceMonthlyIntervals = [];
+
+ function bestDateInterval(min, max, titarget) {
+ // iterate through niceIntervals to find one closest to titarget
+ var badness = Number.MAX_VALUE;
+ var temp, bestTi, bestfmt;
+ for (var i=0, l=niceIntervals.length; i < l; i++) {
+ temp = Math.abs(titarget - niceIntervals[i]);
+ if (temp < badness) {
+ badness = temp;
+ bestTi = niceIntervals[i];
+ bestfmt = niceFormatStrings[i];
+ }
+ }
+
+ return [bestTi, bestfmt];
+ }
+
+ $.jqplot.DateAxisRenderer.prototype = new $.jqplot.LinearAxisRenderer();
+ $.jqplot.DateAxisRenderer.prototype.constructor = $.jqplot.DateAxisRenderer;
+
+ $.jqplot.DateTickFormatter = function(format, val) {
+ if (!format) {
+ format = '%Y/%m/%d';
+ }
+ return $.jsDate.strftime(val, format);
+ };
+
+ $.jqplot.DateAxisRenderer.prototype.init = function(options){
+ // prop: tickRenderer
+ // A class of a rendering engine for creating the ticks labels displayed on the plot,
+ // See <$.jqplot.AxisTickRenderer>.
+ // this.tickRenderer = $.jqplot.AxisTickRenderer;
+ // this.labelRenderer = $.jqplot.AxisLabelRenderer;
+ this.tickOptions.formatter = $.jqplot.DateTickFormatter;
+ // prop: tickInset
+ // Controls the amount to inset the first and last ticks from
+ // the edges of the grid, in multiples of the tick interval.
+ // 0 is no inset, 0.5 is one half a tick interval, 1 is a full
+ // tick interval, etc.
+ this.tickInset = 0;
+ // prop: drawBaseline
+ // True to draw the axis baseline.
+ this.drawBaseline = true;
+ // prop: baselineWidth
+ // width of the baseline in pixels.
+ this.baselineWidth = null;
+ // prop: baselineColor
+ // CSS color spec for the baseline.
+ this.baselineColor = null;
+ this.daTickInterval = null;
+ this._daTickInterval = null;
+
+ $.extend(true, this, options);
+
+ var db = this._dataBounds,
+ stats,
+ sum,
+ s,
+ d,
+ pd,
+ sd,
+ intv;
+
+ // Go through all the series attached to this axis and find
+ // the min/max bounds for this axis.
+ for (var i=0; i db.max) || db.max == null) {
+ db.max = d[j][0];
+ }
+ if (j>0) {
+ intv = Math.abs(d[j][0] - d[j-1][0]);
+ stats.intervals.push(intv);
+ if (stats.frequencies.hasOwnProperty(intv)) {
+ stats.frequencies[intv] += 1;
+ }
+ else {
+ stats.frequencies[intv] = 1;
+ }
+ }
+ sum += intv;
+
+ }
+ else {
+ d[j][1] = new $.jsDate(d[j][1]).getTime();
+ pd[j][1] = new $.jsDate(d[j][1]).getTime();
+ sd[j][1] = new $.jsDate(d[j][1]).getTime();
+ if ((d[j][1] != null && d[j][1] < db.min) || db.min == null) {
+ db.min = d[j][1];
+ }
+ if ((d[j][1] != null && d[j][1] > db.max) || db.max == null) {
+ db.max = d[j][1];
+ }
+ if (j>0) {
+ intv = Math.abs(d[j][1] - d[j-1][1]);
+ stats.intervals.push(intv);
+ if (stats.frequencies.hasOwnProperty(intv)) {
+ stats.frequencies[intv] += 1;
+ }
+ else {
+ stats.frequencies[intv] = 1;
+ }
+ }
+ }
+ sum += intv;
+ }
+
+ if (s.renderer.bands) {
+ if (s.renderer.bands.hiData.length) {
+ var bd = s.renderer.bands.hiData;
+ for (var j=0, l=bd.length; j < l; j++) {
+ if (this.name === 'xaxis' || this.name === 'x2axis') {
+ bd[j][0] = new $.jsDate(bd[j][0]).getTime();
+ if ((bd[j][0] != null && bd[j][0] > db.max) || db.max == null) {
+ db.max = bd[j][0];
+ }
+ }
+ else {
+ bd[j][1] = new $.jsDate(bd[j][1]).getTime();
+ if ((bd[j][1] != null && bd[j][1] > db.max) || db.max == null) {
+ db.max = bd[j][1];
+ }
+ }
+ }
+ }
+ if (s.renderer.bands.lowData.length) {
+ var bd = s.renderer.bands.lowData;
+ for (var j=0, l=bd.length; j < l; j++) {
+ if (this.name === 'xaxis' || this.name === 'x2axis') {
+ bd[j][0] = new $.jsDate(bd[j][0]).getTime();
+ if ((bd[j][0] != null && bd[j][0] < db.min) || db.min == null) {
+ db.min = bd[j][0];
+ }
+ }
+ else {
+ bd[j][1] = new $.jsDate(bd[j][1]).getTime();
+ if ((bd[j][1] != null && bd[j][1] < db.min) || db.min == null) {
+ db.min = bd[j][1];
+ }
+ }
+ }
+ }
+ }
+
+ var tempf = 0,
+ tempn=0;
+ for (var n in stats.frequencies) {
+ stats.sortedIntervals.push({interval:n, frequency:stats.frequencies[n]});
+ }
+ stats.sortedIntervals.sort(function(a, b){
+ return b.frequency - a.frequency;
+ });
+
+ stats.min = $.jqplot.arrayMin(stats.intervals);
+ stats.max = $.jqplot.arrayMax(stats.intervals);
+ stats.mean = sum/d.length;
+ this._intervalStats.push(stats);
+ stats = sum = s = d = pd = sd = null;
+ }
+ db = null;
+
+ };
+
+ // called with scope of an axis
+ $.jqplot.DateAxisRenderer.prototype.reset = function() {
+ this.min = this._options.min;
+ this.max = this._options.max;
+ this.tickInterval = this._options.tickInterval;
+ this.numberTicks = this._options.numberTicks;
+ this._autoFormatString = '';
+ if (this._overrideFormatString && this.tickOptions && this.tickOptions.formatString) {
+ this.tickOptions.formatString = '';
+ }
+ this.daTickInterval = this._daTickInterval;
+ // this._ticks = this.__ticks;
+ };
+
+ $.jqplot.DateAxisRenderer.prototype.createTicks = function(plot) {
+ // we're are operating on an axis here
+ var ticks = this._ticks;
+ var userTicks = this.ticks;
+ var name = this.name;
+ // databounds were set on axis initialization.
+ var db = this._dataBounds;
+ var iv = this._intervalStats;
+ var dim = (this.name.charAt(0) === 'x') ? this._plotDimensions.width : this._plotDimensions.height;
+ var interval;
+ var min, max;
+ var pos1, pos2;
+ var tt, i;
+ var threshold = 30;
+ var insetMult = 1;
+
+ var tickInterval = this.tickInterval;
+
+ // if we already have ticks, use them.
+ // ticks must be in order of increasing value.
+
+ min = ((this.min != null) ? new $.jsDate(this.min).getTime() : db.min);
+ max = ((this.max != null) ? new $.jsDate(this.max).getTime() : db.max);
+
+ // see if we're zooming. if we are, don't use the min and max we're given,
+ // but compute some nice ones. They will be reset later.
+
+ var cursor = plot.plugins.cursor;
+
+ if (cursor && cursor._zoom && cursor._zoom.zooming) {
+ this.min = null;
+ this.max = null;
+ }
+
+ var range = max - min;
+
+ if (this.tickOptions == null || !this.tickOptions.formatString) {
+ this._overrideFormatString = true;
+ }
+
+ if (userTicks.length) {
+ // ticks could be 1D or 2D array of [val, val, ,,,] or [[val, label], [val, label], ...] or mixed
+ for (i=0; i 6) {
+ intv = 6;
+ }
+
+ // figure out the starting month and ending month.
+ var mstart = new $.jsDate(min).setDate(1).setHours(0,0,0,0);
+
+ // See if max ends exactly on a month
+ var tempmend = new $.jsDate(max);
+ var mend = new $.jsDate(max).setDate(1).setHours(0,0,0,0);
+
+ if (tempmend.getTime() !== mend.getTime()) {
+ mend = mend.add(1, 'month');
+ }
+
+ var nmonths = mend.diff(mstart, 'month');
+
+ nttarget = Math.ceil(nmonths/intv) + 1;
+
+ this.min = mstart.getTime();
+ this.max = mstart.clone().add((nttarget - 1) * intv, 'month').getTime();
+ this.numberTicks = nttarget;
+
+ for (var i=0; i 200) {
+ this.numberTicks = parseInt(3+(dim-200)/100, 10);
+ }
+ else {
+ this.numberTicks = 2;
+ }
+ }
+
+ insetMult = range / (this.numberTicks-1)/1000;
+
+ if (this.daTickInterval == null) {
+ this.daTickInterval = [insetMult, 'seconds'];
+ }
+
+
+ for (var i=0; i
+ *
+ * A tooltip providing information about the data point is enabled by default.
+ * To disable the tooltip, set "showTooltip" to false.
+ *
+ * You can control what data is displayed in the tooltip with various
+ * options. The "tooltipAxes" option controls wether the x, y or both
+ * data values are displayed.
+ *
+ * Some chart types (e.g. hi-low-close) have more than one y value per
+ * data point. To display the additional values in the tooltip, set the
+ * "yvalues" option to the desired number of y values present (3 for a hlc chart).
+ *
+ * By default, data values will be formatted with the same formatting
+ * specifiers as used to format the axis ticks. A custom format code
+ * can be supplied with the tooltipFormatString option. This will apply
+ * to all values in the tooltip.
+ *
+ * For more complete control, the "formatString" option can be set. This
+ * Allows conplete control over tooltip formatting. Values are passed to
+ * the format string in an order determined by the "tooltipAxes" and "yvalues"
+ * options. So, if you have a hi-low-close chart and you just want to display
+ * the hi-low-close values in the tooltip, you could set a formatString like:
+ *
+ * > highlighter: {
+ * > tooltipAxes: 'y',
+ * > yvalues: 3,
+ * > formatString:'
+ * >
hi:
%s
+ * >
low:
%s
+ * >
close:
%s
'
+ * > }
+ *
+ */
+ $.jqplot.Highlighter = function(options) {
+ // Group: Properties
+ //
+ //prop: show
+ // true to show the highlight.
+ this.show = $.jqplot.config.enablePlugins;
+ // prop: markerRenderer
+ // Renderer used to draw the marker of the highlighted point.
+ // Renderer will assimilate attributes from the data point being highlighted,
+ // so no attributes need set on the renderer directly.
+ // Default is to turn off shadow drawing on the highlighted point.
+ this.markerRenderer = new $.jqplot.MarkerRenderer({shadow:false});
+ // prop: showMarker
+ // true to show the marker
+ this.showMarker = true;
+ // prop: lineWidthAdjust
+ // Pixels to add to the lineWidth of the highlight.
+ this.lineWidthAdjust = 2.5;
+ // prop: sizeAdjust
+ // Pixels to add to the overall size of the highlight.
+ this.sizeAdjust = 5;
+ // prop: showTooltip
+ // Show a tooltip with data point values.
+ this.showTooltip = true;
+ // prop: tooltipLocation
+ // Where to position tooltip, 'n', 'ne', 'e', 'se', 's', 'sw', 'w', 'nw'
+ this.tooltipLocation = 'nw';
+ // prop: fadeTooltip
+ // true = fade in/out tooltip, flase = show/hide tooltip
+ this.fadeTooltip = true;
+ // prop: tooltipFadeSpeed
+ // 'slow', 'def', 'fast', or number of milliseconds.
+ this.tooltipFadeSpeed = "fast";
+ // prop: tooltipOffset
+ // Pixel offset of tooltip from the highlight.
+ this.tooltipOffset = 2;
+ // prop: tooltipAxes
+ // Which axes to display in tooltip, 'x', 'y' or 'both', 'xy' or 'yx'
+ // 'both' and 'xy' are equivalent, 'yx' reverses order of labels.
+ this.tooltipAxes = 'both';
+ // prop; tooltipSeparator
+ // String to use to separate x and y axes in tooltip.
+ this.tooltipSeparator = ', ';
+ // prop; tooltipContentEditor
+ // Function used to edit/augment/replace the formatted tooltip contents.
+ // Called as str = tooltipContentEditor(str, seriesIndex, pointIndex)
+ // where str is the generated tooltip html and seriesIndex and pointIndex identify
+ // the data point being highlighted. Should return the html for the tooltip contents.
+ this.tooltipContentEditor = null;
+ // prop: useAxesFormatters
+ // Use the x and y axes formatters to format the text in the tooltip.
+ this.useAxesFormatters = true;
+ // prop: tooltipFormatString
+ // sprintf format string for the tooltip.
+ // Uses Ash Searle's javascript sprintf implementation
+ // found here: http://hexmen.com/blog/2007/03/printf-sprintf/
+ // See http://perldoc.perl.org/functions/sprintf.html for reference.
+ // Additional "p" and "P" format specifiers added by Chris Leonello.
+ this.tooltipFormatString = '%.5P';
+ // prop: formatString
+ // alternative to tooltipFormatString
+ // will format the whole tooltip text, populating with x, y values as
+ // indicated by tooltipAxes option. So, you could have a tooltip like:
+ // 'Date: %s, number of cats: %d' to format the whole tooltip at one go.
+ // If useAxesFormatters is true, values will be formatted according to
+ // Axes formatters and you can populate your tooltip string with
+ // %s placeholders.
+ this.formatString = null;
+ // prop: yvalues
+ // Number of y values to expect in the data point array.
+ // Typically this is 1. Certain plots, like OHLC, will
+ // have more y values in each data point array.
+ this.yvalues = 1;
+ // prop: bringSeriesToFront
+ // This option requires jQuery 1.4+
+ // True to bring the series of the highlighted point to the front
+ // of other series.
+ this.bringSeriesToFront = false;
+ this._tooltipElem;
+ this.isHighlighting = false;
+ this.currentNeighbor = null;
+
+ $.extend(true, this, options);
+ };
+
+ var locations = ['nw', 'n', 'ne', 'e', 'se', 's', 'sw', 'w'];
+ var locationIndicies = {'nw':0, 'n':1, 'ne':2, 'e':3, 'se':4, 's':5, 'sw':6, 'w':7};
+ var oppositeLocations = ['se', 's', 'sw', 'w', 'nw', 'n', 'ne', 'e'];
+
+ // axis.renderer.tickrenderer.formatter
+
+ // called with scope of plot
+ $.jqplot.Highlighter.init = function (target, data, opts){
+ var options = opts || {};
+ // add a highlighter attribute to the plot
+ this.plugins.highlighter = new $.jqplot.Highlighter(options.highlighter);
+ };
+
+ // called within scope of series
+ $.jqplot.Highlighter.parseOptions = function (defaults, options) {
+ // Add a showHighlight option to the series
+ // and set it to true by default.
+ this.showHighlight = true;
+ };
+
+ // called within context of plot
+ // create a canvas which we can draw on.
+ // insert it before the eventCanvas, so eventCanvas will still capture events.
+ $.jqplot.Highlighter.postPlotDraw = function() {
+ // Memory Leaks patch
+ if (this.plugins.highlighter && this.plugins.highlighter.highlightCanvas) {
+ this.plugins.highlighter.highlightCanvas.resetCanvas();
+ this.plugins.highlighter.highlightCanvas = null;
+ }
+
+ if (this.plugins.highlighter && this.plugins.highlighter._tooltipElem) {
+ this.plugins.highlighter._tooltipElem.emptyForce();
+ this.plugins.highlighter._tooltipElem = null;
+ }
+
+ this.plugins.highlighter.highlightCanvas = new $.jqplot.GenericCanvas();
+
+ this.eventCanvas._elem.before(this.plugins.highlighter.highlightCanvas.createElement(this._gridPadding, 'jqplot-highlight-canvas', this._plotDimensions, this));
+ this.plugins.highlighter.highlightCanvas.setContext();
+
+ var elem = document.createElement('div');
+ this.plugins.highlighter._tooltipElem = $(elem);
+ elem = null;
+ this.plugins.highlighter._tooltipElem.addClass('jqplot-highlighter-tooltip');
+ this.plugins.highlighter._tooltipElem.css({position:'absolute', display:'none'});
+
+ this.eventCanvas._elem.before(this.plugins.highlighter._tooltipElem);
+ };
+
+ $.jqplot.preInitHooks.push($.jqplot.Highlighter.init);
+ $.jqplot.preParseSeriesOptionsHooks.push($.jqplot.Highlighter.parseOptions);
+ $.jqplot.postDrawHooks.push($.jqplot.Highlighter.postPlotDraw);
+
+ function draw(plot, neighbor) {
+ var hl = plot.plugins.highlighter;
+ var s = plot.series[neighbor.seriesIndex];
+ var smr = s.markerRenderer;
+ var mr = hl.markerRenderer;
+ mr.style = smr.style;
+ mr.lineWidth = smr.lineWidth + hl.lineWidthAdjust;
+ mr.size = smr.size + hl.sizeAdjust;
+ var rgba = $.jqplot.getColorComponents(smr.color);
+ var newrgb = [rgba[0], rgba[1], rgba[2]];
+ var alpha = (rgba[3] >= 0.6) ? rgba[3]*0.6 : rgba[3]*(2-rgba[3]);
+ mr.color = 'rgba('+newrgb[0]+','+newrgb[1]+','+newrgb[2]+','+alpha+')';
+ mr.init();
+ mr.draw(s.gridData[neighbor.pointIndex][0], s.gridData[neighbor.pointIndex][1], hl.highlightCanvas._ctx);
+ }
+
+ function showTooltip(plot, series, neighbor) {
+ // neighbor looks like: {seriesIndex: i, pointIndex:j, gridData:p, data:s.data[j]}
+ // gridData should be x,y pixel coords on the grid.
+ // add the plot._gridPadding to that to get x,y in the target.
+ var hl = plot.plugins.highlighter;
+ var elem = hl._tooltipElem;
+ var serieshl = series.highlighter || {};
+
+ var opts = $.extend(true, {}, hl, serieshl);
+
+ if (opts.useAxesFormatters) {
+ var xf = series._xaxis._ticks[0].formatter;
+ var yf = series._yaxis._ticks[0].formatter;
+ var xfstr = series._xaxis._ticks[0].formatString;
+ var yfstr = series._yaxis._ticks[0].formatString;
+ var str;
+ var xstr = xf(xfstr, neighbor.data[0]);
+ var ystrs = [];
+ for (var i=1; i
+ *
+ * Properties described here are passed into the $.jqplot function
+ * as options on the series renderer. For example:
+ *
+ * > plot2 = $.jqplot('chart2', [s1, s2], {
+ * > seriesDefaults: {
+ * > renderer:$.jqplot.PieRenderer,
+ * > rendererOptions:{
+ * > sliceMargin: 2,
+ * > startAngle: -90
+ * > }
+ * > }
+ * > });
+ *
+ * A pie plot will trigger events on the plot target
+ * according to user interaction. All events return the event object,
+ * the series index, the point (slice) index, and the point data for
+ * the appropriate slice.
+ *
+ * 'jqplotDataMouseOver' - triggered when user mouseing over a slice.
+ * 'jqplotDataHighlight' - triggered the first time user mouses over a slice,
+ * if highlighting is enabled.
+ * 'jqplotDataUnhighlight' - triggered when a user moves the mouse out of
+ * a highlighted slice.
+ * 'jqplotDataClick' - triggered when the user clicks on a slice.
+ * 'jqplotDataRightClick' - tiggered when the user right clicks on a slice if
+ * the "captureRightClick" option is set to true on the plot.
+ */
+ $.jqplot.PieRenderer = function(){
+ $.jqplot.LineRenderer.call(this);
+ };
+
+ $.jqplot.PieRenderer.prototype = new $.jqplot.LineRenderer();
+ $.jqplot.PieRenderer.prototype.constructor = $.jqplot.PieRenderer;
+
+ // called with scope of a series
+ $.jqplot.PieRenderer.prototype.init = function(options, plot) {
+ // Group: Properties
+ //
+ // prop: diameter
+ // Outer diameter of the pie, auto computed by default
+ this.diameter = null;
+ // prop: padding
+ // padding between the pie and plot edges, legend, etc.
+ this.padding = 20;
+ // prop: sliceMargin
+ // angular spacing between pie slices in degrees.
+ this.sliceMargin = 0;
+ // prop: fill
+ // true or false, wether to fil the slices.
+ this.fill = true;
+ // prop: shadowOffset
+ // offset of the shadow from the slice and offset of
+ // each succesive stroke of the shadow from the last.
+ this.shadowOffset = 2;
+ // prop: shadowAlpha
+ // transparency of the shadow (0 = transparent, 1 = opaque)
+ this.shadowAlpha = 0.07;
+ // prop: shadowDepth
+ // number of strokes to apply to the shadow,
+ // each stroke offset shadowOffset from the last.
+ this.shadowDepth = 5;
+ // prop: highlightMouseOver
+ // True to highlight slice when moused over.
+ // This must be false to enable highlightMouseDown to highlight when clicking on a slice.
+ this.highlightMouseOver = true;
+ // prop: highlightMouseDown
+ // True to highlight when a mouse button is pressed over a slice.
+ // This will be disabled if highlightMouseOver is true.
+ this.highlightMouseDown = false;
+ // prop: highlightColors
+ // an array of colors to use when highlighting a slice.
+ this.highlightColors = [];
+ // prop: dataLabels
+ // Either 'label', 'value', 'percent' or an array of labels to place on the pie slices.
+ // Defaults to percentage of each pie slice.
+ this.dataLabels = 'percent';
+ // prop: showDataLabels
+ // true to show data labels on slices.
+ this.showDataLabels = false;
+ // prop: dataLabelFormatString
+ // Format string for data labels. If none, '%s' is used for "label" and for arrays, '%d' for value and '%d%%' for percentage.
+ this.dataLabelFormatString = null;
+ // prop: dataLabelThreshold
+ // Threshhold in percentage (0-100) of pie area, below which no label will be displayed.
+ // This applies to all label types, not just to percentage labels.
+ this.dataLabelThreshold = 3;
+ // prop: dataLabelPositionFactor
+ // A Multiplier (0-1) of the pie radius which controls position of label on slice.
+ // Increasing will slide label toward edge of pie, decreasing will slide label toward center of pie.
+ this.dataLabelPositionFactor = 0.52;
+ // prop: dataLabelNudge
+ // Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
+ this.dataLabelNudge = 2;
+ // prop: dataLabelCenterOn
+ // True to center the data label at its position.
+ // False to set the inside facing edge of the label at its position.
+ this.dataLabelCenterOn = true;
+ // prop: startAngle
+ // Angle to start drawing pie in degrees.
+ // According to orientation of canvas coordinate system:
+ // 0 = on the positive x axis
+ // -90 = on the positive y axis.
+ // 90 = on the negaive y axis.
+ // 180 or - 180 = on the negative x axis.
+ this.startAngle = 0;
+ this.tickRenderer = $.jqplot.PieTickRenderer;
+ // Used as check for conditions where pie shouldn't be drawn.
+ this._drawData = true;
+ this._type = 'pie';
+
+ // if user has passed in highlightMouseDown option and not set highlightMouseOver, disable highlightMouseOver
+ if (options.highlightMouseDown && options.highlightMouseOver == null) {
+ options.highlightMouseOver = false;
+ }
+
+ $.extend(true, this, options);
+
+ if (this.sliceMargin < 0) {
+ this.sliceMargin = 0;
+ }
+
+ this._diameter = null;
+ this._radius = null;
+ // array of [start,end] angles arrays, one for each slice. In radians.
+ this._sliceAngles = [];
+ // index of the currenty highlighted point, if any
+ this._highlightedPoint = null;
+
+ // set highlight colors if none provided
+ if (this.highlightColors.length == 0) {
+ for (var i=0; i 570) ? newrgb[j] * 0.8 : newrgb[j] + 0.3 * (255 - newrgb[j]);
+ newrgb[j] = parseInt(newrgb[j], 10);
+ }
+ this.highlightColors.push('rgb('+newrgb[0]+','+newrgb[1]+','+newrgb[2]+')');
+ }
+ }
+
+ this.highlightColorGenerator = new $.jqplot.ColorGenerator(this.highlightColors);
+
+ plot.postParseOptionsHooks.addOnce(postParseOptions);
+ plot.postInitHooks.addOnce(postInit);
+ plot.eventListenerHooks.addOnce('jqplotMouseMove', handleMove);
+ plot.eventListenerHooks.addOnce('jqplotMouseDown', handleMouseDown);
+ plot.eventListenerHooks.addOnce('jqplotMouseUp', handleMouseUp);
+ plot.eventListenerHooks.addOnce('jqplotClick', handleClick);
+ plot.eventListenerHooks.addOnce('jqplotRightClick', handleRightClick);
+ plot.postDrawHooks.addOnce(postPlotDraw);
+ };
+
+ $.jqplot.PieRenderer.prototype.setGridData = function(plot) {
+ // set gridData property. This will hold angle in radians of each data point.
+ var stack = [];
+ var td = [];
+ var sa = this.startAngle/180*Math.PI;
+ var tot = 0;
+ // don't know if we have any valid data yet, so set plot to not draw.
+ this._drawData = false;
+ for (var i=0; i0) {
+ stack[i] += stack[i-1];
+ }
+ tot += this.data[i][1];
+ }
+ var fact = Math.PI*2/stack[stack.length - 1];
+
+ for (var i=0; i0) {
+ stack[i] += stack[i-1];
+ }
+ tot += data[i][1];
+ }
+ var fact = Math.PI*2/stack[stack.length - 1];
+
+ for (var i=0; i 0 && absang > 0.01 && absang < 6.282) {
+ rprime = parseFloat(sm) / 2.0 / calcRadiusAdjustment(ang);
+ }
+
+ return rprime;
+ }
+
+ $.jqplot.PieRenderer.prototype.drawSlice = function (ctx, ang1, ang2, color, isShadow) {
+ if (this._drawData) {
+ var r = this._radius;
+ var fill = this.fill;
+ var lineWidth = this.lineWidth;
+ var sm = this.sliceMargin;
+ if (this.fill == false) {
+ sm += this.lineWidth;
+ }
+ ctx.save();
+ ctx.translate(this._center[0], this._center[1]);
+
+ var rprime = calcRPrime(ang1, ang2, this.sliceMargin, this.fill, this.lineWidth);
+
+ var transx = rprime * Math.cos((ang1 + ang2) / 2.0);
+ var transy = rprime * Math.sin((ang1 + ang2) / 2.0);
+
+ if ((ang2 - ang1) <= Math.PI) {
+ r -= rprime;
+ }
+ else {
+ r += rprime;
+ }
+
+ ctx.translate(transx, transy);
+
+ if (isShadow) {
+ for (var i=0, l=this.shadowDepth; i 6.282 + this.startAngle) {
+ ang2 = 6.282 + this.startAngle;
+ if (ang1 > ang2) {
+ ang1 = 6.281 + this.startAngle;
+ }
+ }
+ // Fix for IE, where it can't seem to handle 0 degree angles. Also avoids
+ // ugly line on unfilled pies.
+ if (ang1 >= ang2) {
+ return;
+ }
+
+ ctx.beginPath();
+ ctx.fillStyle = color;
+ ctx.strokeStyle = color;
+ ctx.lineWidth = lineWidth;
+ ctx.arc(0, 0, rad, ang1, ang2, false);
+ ctx.lineTo(0,0);
+ ctx.closePath();
+
+ if (fill) {
+ ctx.fill();
+ }
+ else {
+ ctx.stroke();
+ }
+ }
+ };
+
+ // called with scope of series
+ $.jqplot.PieRenderer.prototype.draw = function (ctx, gd, options, plot) {
+ var i;
+ var opts = (options != undefined) ? options : {};
+ // offset and direction of offset due to legend placement
+ var offx = 0;
+ var offy = 0;
+ var trans = 1;
+ var colorGenerator = new $.jqplot.ColorGenerator(this.seriesColors);
+ if (options.legendInfo && options.legendInfo.placement == 'insideGrid') {
+ var li = options.legendInfo;
+ switch (li.location) {
+ case 'nw':
+ offx = li.width + li.xoffset;
+ break;
+ case 'w':
+ offx = li.width + li.xoffset;
+ break;
+ case 'sw':
+ offx = li.width + li.xoffset;
+ break;
+ case 'ne':
+ offx = li.width + li.xoffset;
+ trans = -1;
+ break;
+ case 'e':
+ offx = li.width + li.xoffset;
+ trans = -1;
+ break;
+ case 'se':
+ offx = li.width + li.xoffset;
+ trans = -1;
+ break;
+ case 'n':
+ offy = li.height + li.yoffset;
+ break;
+ case 's':
+ offy = li.height + li.yoffset;
+ trans = -1;
+ break;
+ default:
+ break;
+ }
+ }
+
+ var shadow = (opts.shadow != undefined) ? opts.shadow : this.shadow;
+ var fill = (opts.fill != undefined) ? opts.fill : this.fill;
+ var cw = ctx.canvas.width;
+ var ch = ctx.canvas.height;
+ var w = cw - offx - 2 * this.padding;
+ var h = ch - offy - 2 * this.padding;
+ var mindim = Math.min(w,h);
+ var d = mindim;
+
+ // Fixes issue #272. Thanks hugwijst!
+ // reset slice angles array.
+ this._sliceAngles = [];
+
+ var sm = this.sliceMargin;
+ if (this.fill == false) {
+ sm += this.lineWidth;
+ }
+
+ var rprime;
+ var maxrprime = 0;
+
+ var ang, ang1, ang2, shadowColor;
+ var sa = this.startAngle / 180 * Math.PI;
+
+ // have to pre-draw shadows, so loop throgh here and calculate some values also.
+ for (var i=0, l=gd.length; i Math.PI) {
+ maxrprime = Math.max(rprime, maxrprime);
+ }
+ }
+
+ if (this.diameter != null && this.diameter > 0) {
+ this._diameter = this.diameter - 2*maxrprime;
+ }
+ else {
+ this._diameter = d - 2*maxrprime;
+ }
+
+ // Need to check for undersized pie. This can happen if
+ // plot area too small and legend is too big.
+ if (this._diameter < 6) {
+ $.jqplot.log('Diameter of pie too small, not rendering.');
+ return;
+ }
+
+ var r = this._radius = this._diameter/2;
+
+ this._center = [(cw - trans * offx)/2 + trans * offx + maxrprime * Math.cos(sa), (ch - trans*offy)/2 + trans * offy + maxrprime * Math.sin(sa)];
+
+ if (this.shadow) {
+ for (var i=0, l=gd.length; i= this.dataLabelThreshold) {
+ var fstr, avgang = (this._sliceAngles[i][0] + this._sliceAngles[i][1])/2, label;
+
+ if (this.dataLabels == 'label') {
+ fstr = this.dataLabelFormatString || '%s';
+ label = $.jqplot.sprintf(fstr, gd[i][0]);
+ }
+ else if (this.dataLabels == 'value') {
+ fstr = this.dataLabelFormatString || '%d';
+ label = $.jqplot.sprintf(fstr, this.data[i][1]);
+ }
+ else if (this.dataLabels == 'percent') {
+ fstr = this.dataLabelFormatString || '%d%%';
+ label = $.jqplot.sprintf(fstr, gd[i][2]*100);
+ }
+ else if (this.dataLabels.constructor == Array) {
+ fstr = this.dataLabelFormatString || '%s';
+ label = $.jqplot.sprintf(fstr, this.dataLabels[i]);
+ }
+
+ var fact = (this._radius ) * this.dataLabelPositionFactor + this.sliceMargin + this.dataLabelNudge;
+
+ var x = this._center[0] + Math.cos(avgang) * fact + this.canvas._offsets.left;
+ var y = this._center[1] + Math.sin(avgang) * fact + this.canvas._offsets.top;
+
+ var labelelem = $('
' + label + '
').insertBefore(plot.eventCanvas._elem);
+ if (this.dataLabelCenterOn) {
+ x -= labelelem.width()/2;
+ y -= labelelem.height()/2;
+ }
+ else {
+ x -= labelelem.width() * Math.sin(avgang/2);
+ y -= labelelem.height()/2;
+ }
+ x = Math.round(x);
+ y = Math.round(y);
+ labelelem.css({left: x, top: y});
+ }
+ }
+ };
+
+ $.jqplot.PieAxisRenderer = function() {
+ $.jqplot.LinearAxisRenderer.call(this);
+ };
+
+ $.jqplot.PieAxisRenderer.prototype = new $.jqplot.LinearAxisRenderer();
+ $.jqplot.PieAxisRenderer.prototype.constructor = $.jqplot.PieAxisRenderer;
+
+
+ // There are no traditional axes on a pie chart. We just need to provide
+ // dummy objects with properties so the plot will render.
+ // called with scope of axis object.
+ $.jqplot.PieAxisRenderer.prototype.init = function(options){
+ //
+ this.tickRenderer = $.jqplot.PieTickRenderer;
+ $.extend(true, this, options);
+ // I don't think I'm going to need _dataBounds here.
+ // have to go Axis scaling in a way to fit chart onto plot area
+ // and provide u2p and p2u functionality for mouse cursor, etc.
+ // for convienence set _dataBounds to 0 and 100 and
+ // set min/max to 0 and 100.
+ this._dataBounds = {min:0, max:100};
+ this.min = 0;
+ this.max = 100;
+ this.showTicks = false;
+ this.ticks = [];
+ this.showMark = false;
+ this.show = false;
+ };
+
+
+
+
+ $.jqplot.PieLegendRenderer = function(){
+ $.jqplot.TableLegendRenderer.call(this);
+ };
+
+ $.jqplot.PieLegendRenderer.prototype = new $.jqplot.TableLegendRenderer();
+ $.jqplot.PieLegendRenderer.prototype.constructor = $.jqplot.PieLegendRenderer;
+
+ /**
+ * Class: $.jqplot.PieLegendRenderer
+ * Legend Renderer specific to pie plots. Set by default
+ * when user creates a pie plot.
+ */
+ $.jqplot.PieLegendRenderer.prototype.init = function(options) {
+ // Group: Properties
+ //
+ // prop: numberRows
+ // Maximum number of rows in the legend. 0 or null for unlimited.
+ this.numberRows = null;
+ // prop: numberColumns
+ // Maximum number of columns in the legend. 0 or null for unlimited.
+ this.numberColumns = null;
+ $.extend(true, this, options);
+ };
+
+ // called with context of legend
+ $.jqplot.PieLegendRenderer.prototype.draw = function() {
+ var legend = this;
+ if (this.show) {
+ var series = this._series;
+
+
+ this._elem = $(document.createElement('table'));
+ this._elem.addClass('jqplot-table-legend');
+
+ var ss = {position:'absolute'};
+ if (this.background) {
+ ss['background'] = this.background;
+ }
+ if (this.border) {
+ ss['border'] = this.border;
+ }
+ if (this.fontSize) {
+ ss['fontSize'] = this.fontSize;
+ }
+ if (this.fontFamily) {
+ ss['fontFamily'] = this.fontFamily;
+ }
+ if (this.textColor) {
+ ss['textColor'] = this.textColor;
+ }
+ if (this.marginTop != null) {
+ ss['marginTop'] = this.marginTop;
+ }
+ if (this.marginBottom != null) {
+ ss['marginBottom'] = this.marginBottom;
+ }
+ if (this.marginLeft != null) {
+ ss['marginLeft'] = this.marginLeft;
+ }
+ if (this.marginRight != null) {
+ ss['marginRight'] = this.marginRight;
+ }
+
+ this._elem.css(ss);
+
+ // Pie charts legends don't go by number of series, but by number of data points
+ // in the series. Refactor things here for that.
+
+ var pad = false,
+ reverse = false,
+ nr,
+ nc;
+ var s = series[0];
+ var colorGenerator = new $.jqplot.ColorGenerator(s.seriesColors);
+
+ if (s.show) {
+ var pd = s.data;
+ if (this.numberRows) {
+ nr = this.numberRows;
+ if (!this.numberColumns){
+ nc = Math.ceil(pd.length/nr);
+ }
+ else{
+ nc = this.numberColumns;
+ }
+ }
+ else if (this.numberColumns) {
+ nc = this.numberColumns;
+ nr = Math.ceil(pd.length/this.numberColumns);
+ }
+ else {
+ nr = pd.length;
+ nc = 1;
+ }
+
+ var i, j;
+ var tr, td1, td2;
+ var lt, rs, color;
+ var idx = 0;
+ var div0, div1;
+
+ for (i=0; i0){
+ pad = true;
+ }
+ else{
+ pad = false;
+ }
+ }
+ else{
+ if (i == nr -1){
+ pad = false;
+ }
+ else{
+ pad = true;
+ }
+ }
+ rs = (pad) ? this.rowSpacing : '0';
+
+
+
+ td1 = $(document.createElement('td'));
+ td1.addClass('jqplot-table-legend jqplot-table-legend-swatch');
+ td1.css({textAlign: 'center', paddingTop: rs});
+
+ div0 = $(document.createElement('div'));
+ div0.addClass('jqplot-table-legend-swatch-outline');
+ div1 = $(document.createElement('div'));
+ div1.addClass('jqplot-table-legend-swatch');
+ div1.css({backgroundColor: color, borderColor: color});
+ td1.append(div0.append(div1));
+
+ td2 = $(document.createElement('td'));
+ td2.addClass('jqplot-table-legend jqplot-table-legend-label');
+ td2.css('paddingTop', rs);
+
+ if (this.escapeHtml){
+ td2.text(lt);
+ }
+ else {
+ td2.html(lt);
+ }
+ if (reverse) {
+ td2.prependTo(tr);
+ td1.prependTo(tr);
+ }
+ else {
+ td1.appendTo(tr);
+ td2.appendTo(tr);
+ }
+ pad = true;
+ }
+ idx++;
+ }
+ }
+ }
+ }
+ return this._elem;
+ };
+
+ $.jqplot.PieRenderer.prototype.handleMove = function(ev, gridpos, datapos, neighbor, plot) {
+ if (neighbor) {
+ var ins = [neighbor.seriesIndex, neighbor.pointIndex, neighbor.data];
+ plot.target.trigger('jqplotDataMouseOver', ins);
+ if (plot.series[ins[0]].highlightMouseOver && !(ins[0] == plot.plugins.pieRenderer.highlightedSeriesIndex && ins[1] == plot.series[ins[0]]._highlightedPoint)) {
+ plot.target.trigger('jqplotDataHighlight', ins);
+ highlight (plot, ins[0], ins[1]);
+ }
+ }
+ else if (neighbor == null) {
+ unhighlight (plot);
+ }
+ };
+
+
+ // this.eventCanvas._elem.bind($.jqplot.eventListenerHooks[i][0], {plot:this}, $.jqplot.eventListenerHooks[i][1]);
+
+ // setup default renderers for axes and legend so user doesn't have to
+ // called with scope of plot
+ function preInit(target, data, options) {
+ options = options || {};
+ options.axesDefaults = options.axesDefaults || {};
+ options.legend = options.legend || {};
+ options.seriesDefaults = options.seriesDefaults || {};
+ // only set these if there is a pie series
+ var setopts = false;
+ if (options.seriesDefaults.renderer == $.jqplot.PieRenderer) {
+ setopts = true;
+ }
+ else if (options.series) {
+ for (var i=0; i < options.series.length; i++) {
+ if (options.series[i].renderer == $.jqplot.PieRenderer) {
+ setopts = true;
+ }
+ }
+ }
+
+ if (setopts) {
+ options.axesDefaults.renderer = $.jqplot.PieAxisRenderer;
+ options.legend.renderer = $.jqplot.PieLegendRenderer;
+ options.legend.preDraw = true;
+ options.seriesDefaults.pointLabels = {show: false};
+ }
+ }
+
+ function postInit(target, data, options) {
+ for (var i=0; i
'
. __('Each point represents a data row.')
. '
'
. __('Hovering over a point will show its label.')
. '
'
- . __('Use mousewheel to zoom in or out of the plot.')
- . '
'
- . __('Click and drag the mouse to navigate the plot.')
+ . __('To zoom in, select a section of the plot with the mouse.')
. '
'
. __('Click reset zoom link to come back to original state.')
. '
'
. __('Click a data point to view and possibly edit the data row.')
. '
'
. __('The plot can be resized by dragging it along the bottom right corner.')
- . '
'
- . __('Strings are converted into integer for plotting')
. '
';
$js_messages['strInputNull'] = '' . __('Select two columns') . '';
$js_messages['strSameInputs'] = '' . __('Select two different columns') . '';
diff --git a/js/sql.js b/js/sql.js
index 657cb5ab75..22c37305a3 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -609,7 +609,7 @@ function makeProfilingChart()
// Prevent the user from seeing the JSON code
$('div#profilingchart').html('').show();
- PMA_createProfilingChart(data);
+ PMA_createProfilingChartJqplot('profilingchart', data);
}
diff --git a/js/tbl_zoom_plot.js b/js/tbl_zoom_plot.js
deleted file mode 100644
index a5db1c1562..0000000000
--- a/js/tbl_zoom_plot.js
+++ /dev/null
@@ -1,878 +0,0 @@
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- ** @fileoverview JavaScript functions used on tbl_select.php
- **
- ** @requires jQuery
- ** @requires js/functions.js
- **/
-
-
-/**
- ** Display Help/Info
- **/
-function displayHelp() {
- var msgbox = PMA_ajaxShowMessage(PMA_messages['strDisplayHelp'], 10000);
- msgbox.click(function() {
- PMA_ajaxRemoveMessage(msgbox);
- });
-}
-
-/**
- ** Extend the array object for max function
- ** @param array
- **/
-Array.max = function (array) {
- return Math.max.apply( Math, array );
-};
-
-/**
- ** Extend the array object for min function
- ** @param array
- **/
-Array.min = function (array) {
- return Math.min.apply( Math, array );
-};
-
-/**
- ** Checks if a string contains only numeric value
- ** @param n: String (to be checked)
- **/
-function isNumeric(n) {
- return !isNaN(parseFloat(n)) && isFinite(n);
-}
-
-/**
- ** Checks if an object is empty
- ** @param n: Object (to be checked)
- **/
-function isEmpty(obj) {
- var name;
- for (name in obj) {
- return false;
- }
- return true;
-}
-
-/**
- ** Converts a timestamp into the format of its field type
- ** @param val Integer Timestamp
- ** @param type String Field type(datetime/timestamp/time/date)
- **/
-function getDate(val, type) {
- if (type.toString().search(/datetime/i) != -1 || type.toString().search(/timestamp/i) != -1) {
- return Highcharts.dateFormat('%Y-%m-%e %H:%M:%S', val);
- }
- else if (type.toString().search(/time/i) != -1) {
- return Highcharts.dateFormat('%H:%M:%S', val);
- }
- else if (type.toString().search(/date/i) != -1) {
- return Highcharts.dateFormat('%Y-%m-%e', val);
- }
-}
-
-/**
- ** Converts a date/time into timestamp
- ** @param val String Date
- ** @param type Sring Field type(datetime/timestamp/time/date)
- **/
-function getTimeStamp(val, type) {
- if (type.toString().search(/datetime/i) != -1 || type.toString().search(/timestamp/i) != -1) {
- return getDateFromFormat(val, 'yyyy-MM-dd HH:mm:ss', val);
- }
- else if (type.toString().search(/time/i) != -1) {
- return getDateFromFormat('1970-01-01 ' + val, 'yyyy-MM-dd HH:mm:ss');
- }
- else if (type.toString().search(/date/i) != -1) {
- return getDateFromFormat(val, 'yyyy-MM-dd');
- }
-}
-
-/**
- ** Classifies the field type into numeric,timeseries or text
- ** @param field: field type (as in database structure)
- **/
-function getType(field) {
- if (field.toString().search(/int/i) != -1 || field.toString().search(/decimal/i) != -1
- || field.toString().search(/year/i) != -1) {
- return 'numeric';
- } else if (field.toString().search(/time/i) != -1 || field.toString().search(/date/i) != -1) {
- return 'time';
- } else {
- return 'text';
- }
-}
-/**
- ** Converts a categorical array into numeric array
- ** @param array categorical values array
- **/
-function getCord(arr) {
- var newCord = new Array();
- var original = $.extend(true, [], arr);
- var arr = jQuery.unique(arr).sort();
- $.each(original, function(index, value) {
- newCord.push(jQuery.inArray(value, arr));
- });
- return [newCord, arr, original];
-}
-
-/**
- ** Scrolls the view to the display section
- **/
-function scrollToChart() {
- var x = $('#dataDisplay').offset().top - 100; // 100 provides buffer in viewport
- $('html,body').animate({scrollTop: x}, 500);
-}
-
-/**
- ** Handlers for panning feature
- **/
-function includePan(currentChart) {
- var mouseDown;
- var lastX;
- var lastY;
- var chartWidth = $('#resizer').width() - 3;
- var chartHeight = $('#resizer').height() - 20;
- $('#querychart').mousedown(function() {
- mouseDown = 1;
- });
-
- $('#querychart').mouseup(function() {
- mouseDown = 0;
- });
- $('#querychart').mousemove(function(e) {
- if (mouseDown == 1) {
- if (e.pageX > lastX) {
- var xExtremes = currentChart.xAxis[0].getExtremes();
- var diff = (e.pageX - lastX) * (xExtremes.max - xExtremes.min) / chartWidth;
- currentChart.xAxis[0].setExtremes(xExtremes.min - diff, xExtremes.max - diff);
- } else if (e.pageX < lastX) {
- var xExtremes = currentChart.xAxis[0].getExtremes();
- var diff = (lastX - e.pageX) * (xExtremes.max - xExtremes.min) / chartWidth;
- currentChart.xAxis[0].setExtremes(xExtremes.min + diff, xExtremes.max + diff);
- }
-
- if (e.pageY > lastY) {
- var yExtremes = currentChart.yAxis[0].getExtremes();
- var ydiff = 1.0 * (e.pageY - lastY) * (yExtremes.max - yExtremes.min) / chartHeight;
- currentChart.yAxis[0].setExtremes(yExtremes.min + ydiff, yExtremes.max + ydiff);
- } else if (e.pageY < lastY) {
- var yExtremes = currentChart.yAxis[0].getExtremes();
- var ydiff = 1.0 * (lastY - e.pageY) * (yExtremes.max - yExtremes.min) / chartHeight;
- currentChart.yAxis[0].setExtremes(yExtremes.min - ydiff, yExtremes.max - ydiff);
- }
- }
- lastX = e.pageX;
- lastY = e.pageY;
- });
-}
-
-$(function() {
- var cursorMode = ($("input[name='mode']:checked").val() == 'edit') ? 'crosshair' : 'pointer';
- var currentChart = null;
- var currentData = null;
- var xLabel = $('#tableid_0').val();
- var yLabel = $('#tableid_1').val();
- var xType = $('#types_0').val();
- var yType = $('#types_1').val();
- var dataLabel = $('#dataLabel').val();
- var zoomRatio = 1;
-
-
- // Get query result
- var data = jQuery.parseJSON($('#querydata').html());
-
- /**
- ** Input form submit on field change
- **/
- $('#tableid_0').change(function() {
- //AJAX request for field type, collation, operators, and value field
- $.post('tbl_zoom_select.php',{
- 'ajax_request' : true,
- 'change_tbl_info' : true,
- 'db' : window.parent.db,
- 'table' : window.parent.table,
- 'field' : $('#tableid_0').val(),
- 'it' : 0,
- 'token' : window.parent.token
- },function(data) {
- $('#tableFieldsId tr:eq(1) td:eq(0)').html(data.field_type);
- $('#tableFieldsId tr:eq(1) td:eq(1)').html(data.field_collation);
- $('#tableFieldsId tr:eq(1) td:eq(2)').html(data.field_operators);
- $('#tableFieldsId tr:eq(1) td:eq(3)').html(data.field_value);
- xLabel = $('#tableid_0').val();
- $('#types_0').val(data.field_type);
- $('#collations_0').val(data.field_collations);
- });
- });
-
- $('#tableid_1').change(function() {
- //AJAX request for field type, collation, operators, and value field
- $.post('tbl_zoom_select.php',{
- 'ajax_request' : true,
- 'change_tbl_info' : true,
- 'db' : window.parent.db,
- 'table' : window.parent.table,
- 'field' : $('#tableid_1').val(),
- 'it' : 1,
- 'token' : window.parent.token
- },function(data) {
- $('#tableFieldsId tr:eq(3) td:eq(0)').html(data.field_type);
- $('#tableFieldsId tr:eq(3) td:eq(1)').html(data.field_collation);
- $('#tableFieldsId tr:eq(3) td:eq(2)').html(data.field_operators);
- $('#tableFieldsId tr:eq(3) td:eq(3)').html(data.field_value);
- yLabel = $('#tableid_1').val();
- $('#types_1').val(data.field_type);
- $('#collations_1').val(data.field_collations);
- });
- });
-
- $('#tableid_2').change(function() {
- //AJAX request for field type, collation, operators, and value field
- $.post('tbl_zoom_select.php',{
- 'ajax_request' : true,
- 'change_tbl_info' : true,
- 'db' : window.parent.db,
- 'table' : window.parent.table,
- 'field' : $('#tableid_2').val(),
- 'it' : 2,
- 'token' : window.parent.token
- },function(data) {
- $('#tableFieldsId tr:eq(6) td:eq(0)').html(data.field_type);
- $('#tableFieldsId tr:eq(6) td:eq(1)').html(data.field_collation);
- $('#tableFieldsId tr:eq(6) td:eq(2)').html(data.field_operators);
- $('#tableFieldsId tr:eq(6) td:eq(3)').html(data.field_value);
- $('#types_2').val(data.field_type);
- $('#collations_2').val(data.field_collations);
- });
- });
-
- $('#tableid_3').change(function() {
- //AJAX request for field type, collation, operators, and value field
- $.post('tbl_zoom_select.php',{
- 'ajax_request' : true,
- 'change_tbl_info' : true,
- 'db' : window.parent.db,
- 'table' : window.parent.table,
- 'field' : $('#tableid_3').val(),
- 'it' : 3,
- 'token' : window.parent.token
- },function(data) {
- $('#tableFieldsId tr:eq(8) td:eq(0)').html(data.field_type);
- $('#tableFieldsId tr:eq(8) td:eq(1)').html(data.field_collation);
- $('#tableFieldsId tr:eq(8) td:eq(2)').html(data.field_operators);
- $('#tableFieldsId tr:eq(8) td:eq(3)').html(data.field_value);
- $('#types_3').val(data.field_type);
- $('#collations_3').val(data.field_collations);
- });
- });
-
- /**
- * Input form validation
- **/
- $('#inputFormSubmitId').click(function() {
- if ($('#tableid_0').get(0).selectedIndex == 0 || $('#tableid_1').get(0).selectedIndex == 0) {
- PMA_ajaxShowMessage(PMA_messages['strInputNull']);
- } else if (xLabel == yLabel) {
- PMA_ajaxShowMessage(PMA_messages['strSameInputs']);
- }
- });
-
- /**
- ** Prepare a div containing a link, otherwise it's incorrectly displayed
- ** after a couple of clicks
- **/
- $('
')
- .insertAfter('#zoom_search_form')
- // don't show it until we have results on-screen
- .hide();
-
- $('#togglesearchformlink')
- .html(PMA_messages['strShowSearchCriteria'])
- .bind('click', function() {
- var $link = $(this);
- $('#zoom_search_form').slideToggle();
- if ($link.text() == PMA_messages['strHideSearchCriteria']) {
- $link.text(PMA_messages['strShowSearchCriteria']);
- } else {
- $link.text(PMA_messages['strHideSearchCriteria']);
- }
- // avoid default click action
- return false;
- });
-
- /**
- ** Set dialog properties for the data display form
- **/
- var buttonOptions = {};
- /*
- * Handle saving of a row in the editor
- */
- buttonOptions[PMA_messages['strSave']] = function () {
- //Find changed values by comparing form values with selectedRow Object
- var newValues = new Object();//Stores the values changed from original
- var sqlTypes = new Object();
- var it = 4;
- var xChange = false;
- var yChange = false;
- var key;
-
- for (key in selectedRow) {
- var oldVal = selectedRow[key];
- var newVal = ($('#fields_null_id_' + it).prop('checked')) ? null : $('#fieldID_' + it).val();
- if (newVal instanceof Array) { // when the column is of type SET
- newVal = $('#fieldID_' + it).map(function(){
- return $(this).val();
- }).get().join(",");
- }
- if (oldVal != newVal) {
- selectedRow[key] = newVal;
- newValues[key] = newVal;
- if (key == xLabel) {
- xChange = true;
- data[currentData][xLabel] = newVal;
- } else if (key == yLabel) {
- yChange = true;
- data[currentData][yLabel] = newVal;
- }
- }
- var $input = $('#fieldID_' + it);
- if ($input.hasClass('bit')) {
- sqlTypes[key] = 'bit';
- }
- it++;
- } //End data update
-
- //Update the chart series and replot
- if (xChange || yChange) {
- var newSeries = new Array();
- newSeries[0] = new Object();
- newSeries[0].marker = {
- symbol: 'circle'
- };
- //Logic similar to plot generation, replot only if xAxis changes or yAxis changes.
- //Code includes a lot of checks so as to replot only when necessary
- if (xChange) {
- xCord[currentData] = selectedRow[xLabel];
- if (xType == 'numeric') {
- currentChart.series[0].data[currentData].update({ x : selectedRow[xLabel] });
- currentChart.xAxis[0].setExtremes(Array.min(xCord) - 6, Array.max(xCord) + 6);
- } else if (xType == 'time') {
- currentChart.series[0].data[currentData].update({
- x : getTimeStamp(selectedRow[xLabel], $('#types_0').val())
- });
- } else {
- var tempX = getCord(xCord);
- var tempY = getCord(yCord);
- var i = 0;
- newSeries[0].data = new Array();
- xCord = tempX[2];
- yCord = tempY[2];
-
- $.each(data, function(key, value) {
- if (yType != 'text') {
- newSeries[0].data.push({
- name: value[dataLabel],
- x: tempX[0][i],
- y: value[yLabel],
- marker: {fillColor: colorCodes[i % 8]},
- id: i
- });
- } else {
- newSeries[0].data.push({
- name: value[dataLabel],
- x: tempX[0][i],
- y: tempY[0][i],
- marker: {fillColor: colorCodes[i % 8]},
- id: i
- });
- }
- i++;
- });
- currentSettings.xAxis.labels = {
- formatter : function() {
- if (tempX[1][this.value] && tempX[1][this.value].length > 10) {
- return tempX[1][this.value].substring(0, 10);
- } else {
- return tempX[1][this.value];
- }
- }
- };
- currentSettings.series = newSeries;
- currentChart = PMA_createChart(currentSettings);
- }
-
- }
- if (yChange) {
- yCord[currentData] = selectedRow[yLabel];
- if (yType == 'numeric') {
- currentChart.series[0].data[currentData].update({ y : selectedRow[yLabel] });
- currentChart.yAxis[0].setExtremes(Array.min(yCord) - 6, Array.max(yCord) + 6);
- } else if (yType == 'time') {
- currentChart.series[0].data[currentData].update({
- y : getTimeStamp(selectedRow[yLabel], $('#types_1').val())
- });
- } else {
- var tempX = getCord(xCord);
- var tempY = getCord(yCord);
- var i = 0;
- newSeries[0].data = new Array();
- xCord = tempX[2];
- yCord = tempY[2];
-
- $.each(data, function(key, value) {
- if (xType != 'text' ) {
- newSeries[0].data.push({
- name: value[dataLabel],
- x: value[xLabel],
- y: tempY[0][i],
- marker: {fillColor: colorCodes[i % 8]},
- id: i
- });
- } else {
- newSeries[0].data.push({
- name: value[dataLabel],
- x: tempX[0][i],
- y: tempY[0][i],
- marker: {fillColor: colorCodes[i % 8]},
- id: i
- });
- }
- i++;
- });
- currentSettings.yAxis.labels = {
- formatter : function() {
- if (tempY[1][this.value] && tempY[1][this.value].length > 10) {
- return tempY[1][this.value].substring(0, 10);
- } else {
- return tempY[1][this.value];
- }
- }
- };
- currentSettings.series = newSeries;
- currentChart = PMA_createChart(currentSettings);
- }
- }
- currentChart.series[0].data[currentData].select();
- } //End plot update
-
- //Generate SQL query for update
- if (!isEmpty(newValues)) {
- var sql_query = 'UPDATE `' + window.parent.table + '` SET ';
- for (key in newValues) {
- sql_query += '`' + key + '`=' ;
- var value = newValues[key];
-
- // null
- if (value == null) {
- sql_query += 'NULL, ';
-
- // empty
- } else if ($.trim(value) == '') {
- sql_query += "'', ";
-
- // other
- } else {
- // type explicitly identified
- if (sqlTypes[key] != null) {
- if (sqlTypes[key] == 'bit') {
- sql_query += "b'" + value + "', ";
- }
- // type not explicitly identified
- } else {
- if (!isNumeric(value)) {
- sql_query += "'" + value + "', ";
- } else {
- sql_query += value + ', ';
- }
- }
- }
- }
- sql_query = sql_query.substring(0, sql_query.length - 2);
- sql_query += ' WHERE ' + PMA_urldecode(data[currentData]['where_clause']);
-
- //Post SQL query to sql.php
- $.post('sql.php', {
- 'token' : window.parent.token,
- 'db' : window.parent.db,
- 'ajax_request' : true,
- 'sql_query' : sql_query,
- 'inline_edit' : false
- }, function(data) {
- if (data.success == true) {
- $('#sqlqueryresults').html(data.sql_query);
- $("#sqlqueryresults").trigger('appendAnchor');
- } else {
- PMA_ajaxShowMessage(data.error, false);
- }
- }); //End $.post
- }//End database update
- $("#dataDisplay").dialog('close');
- };
- buttonOptions[PMA_messages['strCancel']] = function () {
- $(this).dialog('close');
- };
- $("#dataDisplay").dialog({
- autoOpen: false,
- title: PMA_messages['strDataPointContent'],
- modal: true,
- buttons: buttonOptions,
- width: $('#dataDisplay').width() + 80,
- open: function () {
- $(this).find('input[type=checkbox]').css('margin', '0.5em');
- }
- });
- /**
- * Attach Ajax event handlers for input fields
- * in the dialog. Used to submit the Ajax
- * request when the ENTER key is pressed.
- */
- $("#dataDisplay").find(':input').live('keydown', function (e) {
- if (e.which === 13) { // 13 is the ENTER key
- e.preventDefault();
- if (typeof buttonOptions[PMA_messages['strSave']] === 'function') {
- buttonOptions[PMA_messages['strSave']].call();
- }
- }
- });
-
-
- /*
- * Generate plot using Highcharts
- */
-
- if (data != null) {
- $('#zoom_search_form')
- .slideToggle()
- .hide();
- $('#togglesearchformlink')
- .text(PMA_messages['strShowSearchCriteria']);
- $('#togglesearchformdiv').show();
- var selectedRow;
- var colorCodes = ['#FF0000', '#00FFFF', '#0000FF', '#0000A0', '#FF0080', '#800080', '#FFFF00', '#00FF00', '#FF00FF'];
- var series = new Array();
- var xCord = new Array();
- var yCord = new Array();
- var tempX, tempY;
- var it = 0;
- var xMax; // xAxis extreme max
- var xMin; // xAxis extreme min
- var yMax; // yAxis extreme max
- var yMin; // yAxis extreme min
-
- // Set the basic plot settings
- var currentSettings = {
- chart: {
- renderTo: 'querychart',
- type: 'scatter',
- //zoomType: 'xy',
- width:$('#resizer').width() - 3,
- height:$('#resizer').height() - 20
- },
- credits: {
- enabled: false
- },
- exporting: { enabled: false },
- label: { text: $('#dataLabel').val() },
- plotOptions: {
- series: {
- allowPointSelect: true,
- cursor: 'pointer',
- showInLegend: false,
- dataLabels: {
- enabled: false
- },
- point: {
- events: {
- click: function() {
- var id = this.id;
- var fid = 4;
- currentData = id;
- // Make AJAX request to tbl_zoom_select.php for getting the complete row info
- var post_params = {
- 'ajax_request' : true,
- 'get_data_row' : true,
- 'db' : window.parent.db,
- 'table' : window.parent.table,
- 'where_clause' : data[id]['where_clause'],
- 'token' : window.parent.token
- };
- $.post('tbl_zoom_select.php', post_params, function(data) {
- // Row is contained in data.row_info, now fill the displayResultForm with row values
- for (var key in data.row_info) {
- $field = $('#fieldID_' + fid);
- $field_null = $('#fields_null_id_' + fid);
- if (data.row_info[key] == null) {
- $field_null.prop('checked', true);
- $field.val('');
- } else {
- $field_null.prop('checked', false);
- if ($field.prop('multiple')) { // when the column is of type SET
- $field.val(data.row_info[key].split(','));
- } else {
- $field.val(data.row_info[key]);
- }
- }
- fid++;
- }
- selectedRow = new Object();
- selectedRow = data.row_info;
- });
-
- $("#dataDisplay").dialog("open");
- }
- }
- }
- }
- },
- tooltip: {
- formatter: function() {
- return this.point.name;
- }
- },
- title: { text: PMA_messages['strQueryResults'] },
- xAxis: {
- title: { text: $('#tableid_0').val() },
- events: {
- setExtremes: function(e) {
- this.resetZoom.show();
- }
- }
-
- },
- yAxis: {
- min: null,
- title: { text: $('#tableid_1').val() },
- endOnTick: false,
- startOnTick: false,
- events: {
- setExtremes: function(e) {
- this.resetZoom.show();
- }
- }
- }
- };
-
- // If data label is not set, do not show tooltips
- if (dataLabel == '') {
- currentSettings.tooltip.enabled = false;
- }
-
- $('#resizer').resizable({
- resize: function() {
- currentChart.setSize(
- this.offsetWidth - 3,
- this.offsetHeight - 20,
- false
- );
- }
- });
-
- // Classify types as either numeric,time,text
- xType = getType(xType);
- yType = getType(yType);
-
- //Set the axis type based on the field
- currentSettings.xAxis.type = (xType == 'time') ? 'datetime' : 'linear';
- currentSettings.yAxis.type = (yType == 'time') ? 'datetime' : 'linear';
-
- // Formulate series data for plot
- series[0] = new Object();
- series[0].data = new Array();
- series[0].marker = {
- symbol: 'circle'
- };
- if (xType != 'text' && yType != 'text') {
- $.each(data, function(key, value) {
- var xVal = (xType == 'numeric') ? value[xLabel] : getTimeStamp(value[xLabel], $('#types_0').val());
- var yVal = (yType == 'numeric') ? value[yLabel] : getTimeStamp(value[yLabel], $('#types_1').val());
- series[0].data.push({
- name: value[dataLabel],
- x: xVal,
- y: yVal,
- marker: {fillColor: colorCodes[it % 8]},
- id: it
- });
- xCord.push(value[xLabel]);
- yCord.push(value[yLabel]);
- it++;
- });
- if (xType == 'numeric') {
- currentSettings.xAxis.max = Array.max(xCord) + 6;
- currentSettings.xAxis.min = Array.min(xCord) - 6;
- } else {
- currentSettings.xAxis.labels = { formatter : function() {
- return getDate(this.value, $('#types_0').val());
- }};
- }
- if (yType == 'numeric') {
- currentSettings.yAxis.max = Array.max(yCord) + 6;
- currentSettings.yAxis.min = Array.min(yCord) - 6;
- } else {
- currentSettings.yAxis.labels = { formatter : function() {
- return getDate(this.value, $('#types_1').val());
- }};
- }
-
- } else if (xType == 'text' && yType != 'text') {
- $.each(data, function(key, value) {
- xCord.push(value[xLabel]);
- yCord.push(value[yLabel]);
- });
-
- tempX = getCord(xCord);
- $.each(data, function(key, value) {
- var yVal = (yType == 'numeric') ? value[yLabel] : getTimeStamp(value[yLabel], $('#types_1').val());
- series[0].data.push({
- name: value[dataLabel],
- x: tempX[0][it],
- y: yVal,
- marker: {fillColor: colorCodes[it % 8]},
- id: it
- });
- it++;
- });
-
- currentSettings.xAxis.labels = {
- formatter : function() {
- if (tempX[1][this.value] && tempX[1][this.value].length > 10) {
- return tempX[1][this.value].substring(0, 10);
- } else {
- return tempX[1][this.value];
- }
- }
- };
- if (yType == 'numeric') {
- currentSettings.yAxis.max = Array.max(yCord) + 6;
- currentSettings.yAxis.min = Array.min(yCord) - 6;
- } else {
- currentSettings.yAxis.labels = {
- formatter : function() {
- return getDate(this.value, $('#types_1').val());
- }
- };
- }
- xCord = tempX[2];
-
- } else if (xType != 'text' && yType == 'text') {
- $.each(data, function(key, value) {
- xCord.push(value[xLabel]);
- yCord.push(value[yLabel]);
- });
- tempY = getCord(yCord);
- $.each(data, function(key, value) {
- var xVal = (xType == 'numeric') ? value[xLabel] : getTimeStamp(value[xLabel], $('#types_0').val());
- series[0].data.push({
- name: value[dataLabel],
- y: tempY[0][it],
- x: xVal,
- marker: {fillColor: colorCodes[it % 8]},
- id: it
- });
- it++;
- });
- if (xType == 'numeric') {
- currentSettings.xAxis.max = Array.max(xCord) + 6;
- currentSettings.xAxis.min = Array.min(xCord) - 6;
- } else {
- currentSettings.xAxis.labels = {
- formatter : function() {
- return getDate(this.value, $('#types_0').val());
- }
- };
- }
- currentSettings.yAxis.labels = {
- formatter : function() {
- if (tempY[1][this.value] && tempY[1][this.value].length > 10) {
- return tempY[1][this.value].substring(0, 10);
- } else {
- return tempY[1][this.value];
- }
- }
- };
- yCord = tempY[2];
-
- } else if (xType == 'text' && yType == 'text') {
- $.each(data, function(key, value) {
- xCord.push(value[xLabel]);
- yCord.push(value[yLabel]);
- });
- tempX = getCord(xCord);
- tempY = getCord(yCord);
- $.each(data, function(key, value) {
- series[0].data.push({
- name: value[dataLabel],
- x: tempX[0][it],
- y: tempY[0][it],
- marker: {fillColor: colorCodes[it % 8]},
- id: it
- });
- it++;
- });
- currentSettings.xAxis.labels = {
- formatter : function() {
- if (tempX[1][this.value] && tempX[1][this.value].length > 10) {
- return tempX[1][this.value].substring(0, 10);
- } else {
- return tempX[1][this.value];
- }
- }
- };
- currentSettings.yAxis.labels = {
- formatter : function() {
- if (tempY[1][this.value] && tempY[1][this.value].length > 10) {
- return tempY[1][this.value].substring(0, 10);
- } else {
- return tempY[1][this.value];
- }
- }
- };
- xCord = tempX[2];
- yCord = tempY[2];
- }
-
- currentSettings.series = series;
- currentChart = PMA_createChart(currentSettings);
- xMin = currentChart.xAxis[0].getExtremes().min;
- xMax = currentChart.xAxis[0].getExtremes().max;
- yMin = currentChart.yAxis[0].getExtremes().min;
- yMax = currentChart.yAxis[0].getExtremes().max;
- includePan(currentChart); //Enable panning feature
- var setZoom = function() {
- var newxm = xMin + (xMax - xMin) * (1 - zoomRatio) / 2;
- var newxM = xMax - (xMax - xMin) * (1 - zoomRatio) / 2;
- var newym = yMin + (yMax - yMin) * (1 - zoomRatio) / 2;
- var newyM = yMax - (yMax - yMin) * (1 - zoomRatio) / 2;
- currentChart.xAxis[0].setExtremes(newxm, newxM);
- currentChart.yAxis[0].setExtremes(newym, newyM);
- };
-
- //Enable zoom feature
- $("#querychart").mousewheel(function(objEvent, intDelta) {
- if (intDelta > 0) {
- if (zoomRatio > 0.1) {
- zoomRatio = zoomRatio - 0.1;
- setZoom();
- }
- } else if (intDelta < 0) {
- zoomRatio = zoomRatio + 0.1;
- setZoom();
- }
- });
-
- //Add reset zoom feature
- currentChart.yAxis[0].resetZoom = currentChart.xAxis[0].resetZoom = $('Reset zoom')
- .appendTo(currentChart.container)
- .css({
- position: 'absolute',
- top: 10,
- right: 20,
- display: 'none'
- })
- .click(function() {
- currentChart.xAxis[0].setExtremes(null, null);
- currentChart.yAxis[0].setExtremes(null, null);
- this.style.display = 'none';
- });
- scrollToChart();
- }
-});
diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js
new file mode 100644
index 0000000000..5add0bea64
--- /dev/null
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -0,0 +1,587 @@
+// todo: change the axis
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ ** @fileoverview JavaScript functions used on tbl_select.php
+ **
+ ** @requires jQuery
+ ** @requires js/functions.js
+ **/
+
+
+/**
+ ** Display Help/Info
+ **/
+function displayHelp() {
+ var msgbox = PMA_ajaxShowMessage(PMA_messages['strDisplayHelp'], 10000);
+ msgbox.click(function() {
+ PMA_ajaxRemoveMessage(msgbox);
+ });
+}
+
+/**
+ ** Extend the array object for max function
+ ** @param array
+ **/
+Array.max = function (array) {
+ return Math.max.apply( Math, array );
+};
+
+/**
+ ** Extend the array object for min function
+ ** @param array
+ **/
+Array.min = function (array) {
+ return Math.min.apply( Math, array );
+};
+
+/**
+ ** Checks if a string contains only numeric value
+ ** @param n: String (to be checked)
+ **/
+function isNumeric(n) {
+ return !isNaN(parseFloat(n)) && isFinite(n);
+}
+
+/**
+ ** Checks if an object is empty
+ ** @param n: Object (to be checked)
+ **/
+function isEmpty(obj) {
+ var name;
+ for (name in obj) {
+ return false;
+ }
+ return true;
+}
+
+/**
+ ** Converts a date/time into timestamp
+ ** @param val String Date
+ ** @param type Sring Field type(datetime/timestamp/time/date)
+ **/
+function getTimeStamp(val, type) {
+ if (type.toString().search(/datetime/i) != -1 || type.toString().search(/timestamp/i) != -1) {
+ return getDateFromFormat(val, 'yyyy-MM-dd HH:mm:ss', val);
+ }
+ else if (type.toString().search(/time/i) != -1) {
+ return getDateFromFormat('1970-01-01 ' + val, 'yyyy-MM-dd HH:mm:ss');
+ }
+ else if (type.toString().search(/date/i) != -1) {
+ return getDateFromFormat(val, 'yyyy-MM-dd');
+ }
+}
+
+/**
+ ** Classifies the field type into numeric,timeseries or text
+ ** @param field: field type (as in database structure)
+ **/
+function getType(field) {
+ if (field.toString().search(/int/i) != -1 || field.toString().search(/decimal/i) != -1
+ || field.toString().search(/year/i) != -1) {
+ return 'numeric';
+ } else if (field.toString().search(/time/i) != -1 || field.toString().search(/date/i) != -1) {
+ return 'time';
+ } else {
+ return 'text';
+ }
+}
+/**
+ ** Converts a categorical array into numeric array
+ ** @param array categorical values array
+ **/
+function getCord(arr) {
+ var newCord = new Array();
+ var original = $.extend(true, [], arr);
+ var arr = jQuery.unique(arr).sort();
+ $.each(original, function(index, value) {
+ newCord.push(jQuery.inArray(value, arr));
+ });
+ return [newCord, arr, original];
+}
+
+/**
+ ** Scrolls the view to the display section
+ **/
+function scrollToChart() {
+ var x = $('#dataDisplay').offset().top - 100; // 100 provides buffer in viewport
+ $('html,body').animate({scrollTop: x}, 500);
+}
+
+$(document).ready(function() {
+ var cursorMode = ($("input[name='mode']:checked").val() == 'edit') ? 'crosshair' : 'pointer';
+ var currentChart = null;
+ var searchedDataKey = null;
+ var xLabel = $('#tableid_0').val();
+ var yLabel = $('#tableid_1').val();
+ // will be updated via Ajax
+ var xType = $('#types_0').val();
+ var yType = $('#types_1').val();
+ var dataLabel = $('#dataLabel').val();
+ var lastX;
+ var lastY;
+ var zoomRatio = 1;
+
+
+ // Get query result
+ var searchedData = jQuery.parseJSON($('#querydata').html());
+
+ /**
+ ** Input form submit on field change
+ **/
+
+ // first column choice corresponds to the X axis
+ $('#tableid_0').change(function() {
+ //AJAX request for field type, collation, operators, and value field
+ $.post('tbl_zoom_select.php',{
+ 'ajax_request' : true,
+ 'change_tbl_info' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'field' : $('#tableid_0').val(),
+ 'it' : 0,
+ 'token' : window.parent.token,
+ },function(data) {
+ $('#tableFieldsId tr:eq(1) td:eq(0)').html(data.field_type);
+ $('#tableFieldsId tr:eq(1) td:eq(1)').html(data.field_collation);
+ $('#tableFieldsId tr:eq(1) td:eq(2)').html(data.field_operators);
+ $('#tableFieldsId tr:eq(1) td:eq(3)').html(data.field_value);
+ xLabel = $('#tableid_0').val();
+ $('#types_0').val(data.field_type);
+ xType = data.field_type;
+ $('#collations_0').val(data.field_collations);
+ });
+ });
+
+ // second column choice corresponds to the Y axis
+ $('#tableid_1').change(function() {
+ //AJAX request for field type, collation, operators, and value field
+ $.post('tbl_zoom_select.php',{
+ 'ajax_request' : true,
+ 'change_tbl_info' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'field' : $('#tableid_1').val(),
+ 'it' : 1,
+ 'token' : window.parent.token,
+ },function(data) {
+ $('#tableFieldsId tr:eq(3) td:eq(0)').html(data.field_type);
+ $('#tableFieldsId tr:eq(3) td:eq(1)').html(data.field_collation);
+ $('#tableFieldsId tr:eq(3) td:eq(2)').html(data.field_operators);
+ $('#tableFieldsId tr:eq(3) td:eq(3)').html(data.field_value);
+ yLabel = $('#tableid_1').val();
+ $('#types_1').val(data.field_type);
+ yType = data.field_type;
+ $('#collations_1').val(data.field_collations);
+ });
+ });
+
+ $('#tableid_2').change(function() {
+ //AJAX request for field type, collation, operators, and value field
+ $.post('tbl_zoom_select.php',{
+ 'ajax_request' : true,
+ 'change_tbl_info' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'field' : $('#tableid_2').val(),
+ 'it' : 2,
+ 'token' : window.parent.token,
+ },function(data) {
+ $('#tableFieldsId tr:eq(6) td:eq(0)').html(data.field_type);
+ $('#tableFieldsId tr:eq(6) td:eq(1)').html(data.field_collation);
+ $('#tableFieldsId tr:eq(6) td:eq(2)').html(data.field_operators);
+ $('#tableFieldsId tr:eq(6) td:eq(3)').html(data.field_value);
+ $('#types_2').val(data.field_type);
+ $('#collations_2').val(data.field_collations);
+ });
+ });
+
+ $('#tableid_3').change(function() {
+ //AJAX request for field type, collation, operators, and value field
+ $.post('tbl_zoom_select.php',{
+ 'ajax_request' : true,
+ 'change_tbl_info' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'field' : $('#tableid_3').val(),
+ 'it' : 3,
+ 'token' : window.parent.token,
+ },function(data) {
+ $('#tableFieldsId tr:eq(8) td:eq(0)').html(data.field_type);
+ $('#tableFieldsId tr:eq(8) td:eq(1)').html(data.field_collation);
+ $('#tableFieldsId tr:eq(8) td:eq(2)').html(data.field_operators);
+ $('#tableFieldsId tr:eq(8) td:eq(3)').html(data.field_value);
+ $('#types_3').val(data.field_type);
+ $('#collations_3').val(data.field_collations);
+ });
+ });
+
+ /**
+ * Input form validation
+ **/
+ $('#inputFormSubmitId').click(function() {
+ if ($('#tableid_0').get(0).selectedIndex == 0 || $('#tableid_1').get(0).selectedIndex == 0) {
+ PMA_ajaxShowMessage(PMA_messages['strInputNull']);
+ } else if (xLabel == yLabel) {
+ PMA_ajaxShowMessage(PMA_messages['strSameInputs']);
+ }
+ });
+
+ /**
+ ** Prepare a div containing a link, otherwise it's incorrectly displayed
+ ** after a couple of clicks
+ **/
+ $('
')
+ .insertAfter('#zoom_search_form')
+ // don't show it until we have results on-screen
+ .hide();
+
+ $('#togglesearchformlink')
+ .html(PMA_messages['strShowSearchCriteria'])
+ .bind('click', function() {
+ var $link = $(this);
+ $('#zoom_search_form').slideToggle();
+ if ($link.text() == PMA_messages['strHideSearchCriteria']) {
+ $link.text(PMA_messages['strShowSearchCriteria']);
+ } else {
+ $link.text(PMA_messages['strHideSearchCriteria']);
+ }
+ // avoid default click action
+ return false;
+ });
+
+ /**
+ ** Set dialog properties for the data display form
+ **/
+ var buttonOptions = {};
+ /*
+ * Handle saving of a row in the editor
+ */
+ buttonOptions[PMA_messages['strSave']] = function () {
+ //Find changed values by comparing form values with selectedRow Object
+ var newValues = new Object();//Stores the values changed from original
+ var sqlTypes = new Object();
+ var it = 4;
+ var xChange = false;
+ var yChange = false;
+ for (key in selectedRow) {
+ var oldVal = selectedRow[key];
+ var newVal = ($('#fields_null_id_' + it).attr('checked')) ? null : $('#fieldID_' + it).val();
+ if (newVal instanceof Array) { // when the column is of type SET
+ newVal = $('#fieldID_' + it).map(function(){
+ return $(this).val();
+ }).get().join(",");
+ }
+ if (oldVal != newVal) {
+ selectedRow[key] = newVal;
+ newValues[key] = newVal;
+ if (key == xLabel) {
+ xChange = true;
+ searchedData[searchedDataKey][xLabel] = newVal;
+ } else if (key == yLabel) {
+ yChange = true;
+ searchedData[searchedDataKey][yLabel] = newVal;
+ }
+ }
+ var $input = $('#fieldID_' + it);
+ if ($input.hasClass('bit')) {
+ sqlTypes[key] = 'bit';
+ }
+ it++;
+ } //End data update
+
+ //Update the chart series and replot
+ if (xChange || yChange) {
+ //Logic similar to plot generation, replot only if xAxis changes or yAxis changes.
+ //Code includes a lot of checks so as to replot only when necessary
+ if (xChange) {
+ xCord[searchedDataKey] = selectedRow[xLabel];
+ // [searchedDataKey][0] contains the x value
+ if (xType == 'numeric') {
+ series[0][searchedDataKey][0] = selectedRow[xLabel];
+ } else if (xType == 'time') {
+ series[0][searchedDataKey][0] =
+ getTimeStamp(selectedRow[xLabel], $('#types_0').val());
+ } else {
+ // todo: text values
+ }
+ currentChart.series[0].data = series[0];
+ // todo: axis changing
+ currentChart.replot();
+
+ }
+ if (yChange) {
+ yCord[searchedDataKey] = selectedRow[yLabel];
+ // [searchedDataKey][1] contains the y value
+ if (yType == 'numeric') {
+ series[0][searchedDataKey][1] = selectedRow[yLabel];
+ } else if (yType == 'time') {
+ series[0][searchedDataKey][1] =
+ getTimeStamp(selectedRow[yLabel], $('#types_1').val());
+ } else {
+ // todo: text values
+ }
+ currentChart.series[0].data = series[0];
+ // todo: axis changing
+ currentChart.replot();
+ }
+ } //End plot update
+
+ //Generate SQL query for update
+ if (!isEmpty(newValues)) {
+ var sql_query = 'UPDATE `' + window.parent.table + '` SET ';
+ for (key in newValues) {
+ sql_query += '`' + key + '`=' ;
+ var value = newValues[key];
+
+ // null
+ if (value == null) {
+ sql_query += 'NULL, ';
+
+ // empty
+ } else if ($.trim(value) == '') {
+ sql_query += "'', ";
+
+ // other
+ } else {
+ // type explicitly identified
+ if (sqlTypes[key] != null) {
+ if (sqlTypes[key] == 'bit') {
+ sql_query += "b'" + value + "', ";
+ }
+ // type not explicitly identified
+ } else {
+ if (!isNumeric(value)) {
+ sql_query += "'" + value + "', ";
+ } else {
+ sql_query += value + ', ';
+ }
+ }
+ }
+ }
+ sql_query = sql_query.substring(0, sql_query.length - 2);
+ sql_query += ' WHERE ' + PMA_urldecode(searchedData[searchedDataKey]['where_clause']);
+
+ //Post SQL query to sql.php
+ $.post('sql.php', {
+ 'token' : window.parent.token,
+ 'db' : window.parent.db,
+ 'ajax_request' : true,
+ 'sql_query' : sql_query,
+ 'inline_edit' : false
+ }, function(data) {
+ if (data.success == true) {
+ $('#sqlqueryresults').html(data.sql_query);
+ $("#sqlqueryresults").trigger('appendAnchor');
+ } else {
+ PMA_ajaxShowMessage(data.error, false);
+ }
+ }); //End $.post
+ }//End database update
+ $("#dataDisplay").dialog('close');
+ };
+ buttonOptions[PMA_messages['strCancel']] = function () {
+ $(this).dialog('close');
+ };
+ $("#dataDisplay").dialog({
+ autoOpen: false,
+ title: PMA_messages['strDataPointContent'],
+ modal: true,
+ buttons: buttonOptions,
+ width: $('#dataDisplay').width() + 80,
+ open: function () {
+ $(this).find('input[type=checkbox]').css('margin', '0.5em');
+ }
+ });
+ /**
+ * Attach Ajax event handlers for input fields
+ * in the dialog. Used to submit the Ajax
+ * request when the ENTER key is pressed.
+ */
+ $("#dataDisplay").find(':input').live('keydown', function (e) {
+ if (e.which === 13) { // 13 is the ENTER key
+ e.preventDefault();
+ if (typeof buttonOptions[PMA_messages['strSave']] === 'function') {
+ buttonOptions[PMA_messages['strSave']].call();
+ }
+ }
+ });
+
+
+ /*
+ * Generate plot using jqplot
+ */
+
+ if (searchedData != null) {
+ $('#zoom_search_form')
+ .slideToggle()
+ .hide();
+ $('#togglesearchformlink')
+ .text(PMA_messages['strShowSearchCriteria']);
+ $('#togglesearchformdiv').show();
+ var selectedRow;
+ var colorCodes = ['#FF0000', '#00FFFF', '#0000FF', '#0000A0', '#FF0080', '#800080', '#FFFF00', '#00FF00', '#FF00FF'];
+ var series = new Array();
+ var xCord = new Array();
+ var yCord = new Array();
+ var tempX, tempY;
+ var it = 0;
+ var xMax; // xAxis extreme max
+ var xMin; // xAxis extreme min
+ var yMax; // yAxis extreme max
+ var yMin; // yAxis extreme min
+
+ var options = {
+ series: [
+ // for a scatter plot
+ { showLine: false }
+ ],
+ axes: {
+ xaxis: {
+ label: $('#tableid_0').val(),
+ labelRenderer: $.jqplot.CanvasAxisLabelRenderer
+ },
+ yaxis: {
+ label: $('#tableid_1').val(),
+ labelRenderer: $.jqplot.CanvasAxisLabelRenderer
+ }
+ },
+ highlighter: {
+ show: true,
+ tooltipAxes: 'y',
+ yvalues: 2,
+ // hide the first y value
+ formatString: '%s%s'
+ },
+ cursor: {
+ show: true,
+ zoom: true,
+ showTooltip: false
+ }
+ }
+
+ // If data label is not set, do not show tooltips
+ if (dataLabel == '') {
+ options.highlighter.show = false;
+ }
+
+ // Classify types as either numeric,time,text
+ xType = getType(xType);
+ yType = getType(yType);
+
+ // could have multiple series but we'll have just one
+ series[0] = new Array();
+
+ if (xType == 'time') {
+ originalXType = $('#types_0').val();
+ if (originalXType == 'date') {
+ format = '%Y-%m-%d';
+ }
+ // todo: does not seem to work
+ //else if (originalXType == 'time') {
+ // format = '%H:%M';
+ //} else {
+ // format = '%Y-%m-%d %H:%M';
+ //}
+ $.extend(options.axes.xaxis, {
+ renderer:$.jqplot.DateAxisRenderer,
+ tickOptions: {
+ formatString: format
+ }
+ });
+ }
+ if (yType == 'time') {
+ originalYType = $('#types_1').val();
+ if (originalYType == 'date') {
+ format = '%Y-%m-%d';
+ }
+ $.extend(options.axes.yaxis, {
+ renderer:$.jqplot.DateAxisRenderer,
+ tickOptions: {
+ formatString: format
+ }
+ });
+ }
+
+ $.each(searchedData, function(key, value) {
+ if (xType == 'numeric') {
+ var xVal = parseFloat(value[xLabel]);
+ }
+ if (xType == 'time') {
+ var xVal = getTimeStamp(value[xLabel], originalXType);
+ }
+ if (yType == 'numeric') {
+ var yVal = parseFloat(value[yLabel]);
+ }
+ if (yType == 'time') {
+ var yVal = getTimeStamp(value[yLabel], originalYType);
+ }
+ series[0].push([
+ xVal,
+ yVal,
+ // extra Y values
+ value[dataLabel], // for highlighter
+ // (may set an undefined value)
+ value['where_clause'], // for click on point
+ key // key from searchedData
+ ]);
+ });
+
+ // under IE 8, the initial display is mangled; after a manual
+ // resizing, it's ok
+ // under IE 9, everything is fine
+ currentChart = $.jqplot('querychart', series, options);
+
+ $('button.button-reset').click(function(event) {
+ event.preventDefault();
+ currentChart.resetZoom();
+ });
+
+ $('div#resizer').resizable();
+ $('div#resizer').bind('resizestop', function(event, ui) {
+ // make room so that the handle will still appear
+ $('div#querychart').height($('div#resizer').height() * 0.96);
+ $('div#querychart').width($('div#resizer').width() * 0.96);
+ currentChart.replot( {resetAxes: true})
+ });
+
+ $('div#querychart').bind('jqplotDataClick',
+ function(event, seriesIndex, pointIndex, data) {
+ searchedDataKey = data[4]; // key from searchedData (global)
+ var field_id = 4;
+ var post_params = {
+ 'ajax_request' : true,
+ 'get_data_row' : true,
+ 'db' : window.parent.db,
+ 'table' : window.parent.table,
+ 'where_clause' : data[3],
+ 'token' : window.parent.token
+ };
+
+ $.post('tbl_zoom_select.php', post_params, function(data) {
+ // Row is contained in data.row_info,
+ // now fill the displayResultForm with row values
+ for (key in data.row_info) {
+ $field = $('#fieldID_' + field_id);
+ $field_null = $('#fields_null_id_' + field_id);
+ if (data.row_info[key] == null) {
+ $field_null.attr('checked', true);
+ $field.val('');
+ } else {
+ $field_null.attr('checked', false);
+ if ($field.attr('multiple')) { // when the column is of type SET
+ $field.val(data.row_info[key].split(','));
+ } else {
+ $field.val(data.row_info[key]);
+ }
+ }
+ field_id++;
+ }
+ selectedRow = new Object();
+ selectedRow = data.row_info;
+ });
+
+ $("#dataDisplay").dialog("open");
+ }
+ );
+ }
+});
diff --git a/libraries/Theme.class.php b/libraries/Theme.class.php
index 814fb75cec..0783712e23 100644
--- a/libraries/Theme.class.php
+++ b/libraries/Theme.class.php
@@ -74,7 +74,8 @@ class PMA_Theme
'gis',
'navigation',
'pmd',
- 'rte'
+ 'rte',
+ 'jqplot'
);
/**
diff --git a/po/af.po b/po/af.po
index 66348e94e9..f3c01f6cd3 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:17+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: afrikaans \n"
-"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Wys alles"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,28 +28,29 @@ msgstr "Wys alles"
msgid "Page number:"
msgstr "Bladsy nommer:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Soek"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -65,29 +66,28 @@ msgstr "Soek"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Gaan"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Sleutelnaam"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
#, fuzzy
msgid "Description"
msgstr "geen Beskrywing"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr ""
@@ -119,12 +119,12 @@ msgstr "Tabel kommentaar"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -135,6 +135,7 @@ msgstr "Kolom name"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Kolom name"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipe"
@@ -152,12 +153,12 @@ msgstr "Tipe"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Kommentaar"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Nee"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -366,7 +367,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rye"
@@ -419,28 +420,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sorteer"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Dalend"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Dalend"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Wys"
@@ -461,8 +462,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Of"
@@ -536,8 +537,8 @@ msgstr[0] "%s resultate binne tabel %s"
msgstr[1] "%s resultate binne tabel %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Beloer Data"
@@ -547,14 +548,14 @@ msgstr "Beloer Data"
msgid "Delete the matches for the %s table?"
msgstr "Stort data vir tabel"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Verwyder"
@@ -631,11 +632,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -645,7 +646,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -659,20 +660,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Met gekose:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Kies Alles"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -684,27 +685,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Drukker mooi (print view)"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Maak Leeg"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -730,13 +731,13 @@ msgstr "Analiseer tabel"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Vervang tabel data met leer (file)"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -757,8 +758,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databasis"
@@ -777,7 +778,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -883,48 +884,48 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
msgid "Add a point"
msgstr "Voeg 'n nuwe veld by"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Lyne beeindig deur"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -934,17 +935,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Voeg 'n nuwe gebruiker by"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Voeg 'n nuwe gebruiker by"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "Voeg 'n nuwe veld by"
@@ -967,8 +968,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1008,7 +1009,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1031,7 +1032,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1046,7 +1047,7 @@ msgstr "Terug"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
@@ -1056,7 +1057,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
msgid "Do you really want to execute \"%s\"?"
msgstr "Wil jy regtig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1150,23 +1151,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Verander"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Bediener Keuse"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL-stelling"
@@ -1178,24 +1179,24 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
#, fuzzy
msgid "Total"
msgstr "totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1217,7 +1218,7 @@ msgstr "Bediener Keuse"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1235,7 +1236,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Ry Statistiek"
@@ -1283,14 +1284,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1344,32 +1345,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1385,11 +1386,11 @@ msgstr "%s tabel(le)"
msgid "Questions"
msgstr "Operasies"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1413,10 +1414,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Geen"
@@ -1516,7 +1517,7 @@ msgstr "Algemene verwantskap funksies"
msgid "Current settings"
msgstr "Algemene verwantskap funksies"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
msgid "Chart Title"
msgstr "Geen tabelle"
@@ -1599,9 +1600,9 @@ msgstr ""
msgid "Explain output"
msgstr "Verduidelik SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1706,7 +1707,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Export"
@@ -1845,17 +1846,17 @@ msgstr "Indekse"
msgid "Show indexes"
msgstr "Wys ruitgebied"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Beskikbaar"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1935,7 +1936,7 @@ msgstr "SQL-stelling"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Verander"
@@ -1944,17 +1945,18 @@ msgstr "Verander"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Stoor"
@@ -1983,177 +1985,169 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL resultaat"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
msgid "Data point content"
msgstr "Tabel kommentaar"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoreer"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "Voeg 'n nuwe veld by"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kies 'n Veld om te vertoon"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Kolom name"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Vertoon rye"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Verander wagwoord"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Voortgebring deur"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Verander wagwoord"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Ma"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2161,30 +2155,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Geen databasisse"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Geen"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorige"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2192,95 +2186,95 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mei"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2288,78 +2282,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Des"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2367,113 +2361,113 @@ msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Geen"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2525,16 +2519,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2660,15 +2654,15 @@ msgstr ""
msgid "Databases"
msgstr "databasisse"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2680,20 +2674,20 @@ msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Voeg by"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operasies"
@@ -2753,13 +2747,13 @@ msgstr "Gebruiker"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Biner"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2776,8 +2770,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fout"
@@ -2891,35 +2886,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2960,14 +2955,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3223,8 +3218,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3324,7 +3319,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
#, fuzzy
msgid "Tables"
msgstr "Tabel"
@@ -3378,22 +3373,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3405,21 +3400,21 @@ msgstr ""
"Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou "
"konfigurasie leer!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3454,8 +3449,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-stelling"
@@ -3493,7 +3488,7 @@ msgid "Create PHP Code"
msgstr "Skep PHP Kode"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3514,41 +3509,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3556,8 +3551,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3565,52 +3560,52 @@ msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3793,9 +3788,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Herstel"
@@ -3940,7 +3935,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4001,7 +3996,7 @@ msgstr "Stel tabel struktuur voor"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5815,7 +5810,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5954,25 +5949,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6150,8 +6145,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6339,56 +6334,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sa"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Hoeveelheid rye per bladsy"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Ma"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horisontale"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikale"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Beloer Data"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6407,99 +6405,99 @@ msgstr ""
msgid "Options"
msgstr "Operasies"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Gedeeltelike Tekste"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Volle Tekste"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relasie uitsig"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
msgid "Relational display column"
msgstr "Relasie uitsig"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
msgid "Hide browser transformation"
msgstr "Wys PHP informasie"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Die ry is verwyder"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Vermoor"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in navraag"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Vertoon rye"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "Kolom Kommentaar word vertoon"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Bediener weergawe"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Skakel nie gevind nie"
@@ -6545,7 +6543,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6797,8 +6795,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6938,12 +6936,12 @@ msgstr "Vertoon Funksies"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Gasheer (host)"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Generasie Tyd"
@@ -7150,8 +7148,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
@@ -7316,6 +7314,102 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksie"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Biner"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+" Omrede sy lengte, is hierdie veld moontlik nie veranderbaar nie "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Biner - moenie verander nie"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Voeg by"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Voeg by as 'n nuwe ry"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Terug na vorige bladsy"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Voeg 'n nuwe ry by"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "Terug na vorige bladsy"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Waarde"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7328,36 +7422,36 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Fr"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Stuur"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Wil jy regtig "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Geen verandering"
@@ -7365,11 +7459,6 @@ msgstr "Geen verandering"
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Biner"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7697,18 +7786,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Waarde"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -8046,11 +8127,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksie"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8401,7 +8477,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Hardloop SQL stellings op databasis %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8411,11 +8487,11 @@ msgstr ""
msgid "Columns"
msgstr "Kolom name"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Boekmerk hierdie SQL-stelling"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8439,10 +8515,6 @@ msgstr "Wys hierdie navraag weer hier"
msgid "View only"
msgstr "Kyk slegs"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8652,12 +8724,6 @@ msgstr "Operasies"
msgid "Table Search"
msgstr "Soek"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Voeg by"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8841,7 +8907,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Gebruiker"
@@ -9054,10 +9120,6 @@ msgstr "Wys alles"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9270,18 +9332,18 @@ msgstr "Die \"%s\" databasis bestaan nie!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Velde"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9725,8 +9787,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9842,7 +9904,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9981,157 +10043,157 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Uitgebreide toevoegings"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Wys tabelle"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Voortgebring deur"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Moenie die wagwoord verander nie"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Wys tabelle"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Wys tabelle"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
msgid "Related links:"
msgstr "Operasies"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "Navraag dmv Voorbeeld"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funksie"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10139,117 +10201,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Stellings"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
#, fuzzy
msgid "Command"
msgstr "Kommentaar"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10257,78 +10319,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10336,7 +10398,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10344,42 +10406,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10387,33 +10449,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10422,243 +10484,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Karakterstel van die leer:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
msgid ""
"The number of queries that have been removed from the cache to free up "
"memory for caching new queries. This information can help you tune the query "
@@ -10666,99 +10728,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10766,18 +10828,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10785,67 +10847,67 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sa"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "Voeg 'n nuwe veld by"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Voortgebring deur"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Voeg By/Verwyder Veld Kolomme"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10854,7 +10916,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10862,18 +10924,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10881,11 +10943,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10893,89 +10955,89 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
msgid "Preset chart"
msgstr "Hernoem tabel na"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Kies Tabelle"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Voeg 'n nuwe gebruiker by"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-stelling"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Ry Statistiek"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Kies Alles"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "Navraag dmv Voorbeeld"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Records"
msgid "%d second"
@@ -10983,7 +11045,7 @@ msgid_plural "%d seconds"
msgstr[0] "Rekords"
msgstr[1] "Rekords"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11117,7 +11179,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11181,41 +11243,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentasie"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11405,55 +11467,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Geen databasisse"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Wil jy regtig "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Valideer SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL resultaat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Voortgebring deur"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiket"
@@ -11468,60 +11521,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "Databasis %s is verwyder."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-" Omrede sy lengte, is hierdie veld moontlik nie veranderbaar nie "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Biner - moenie verander nie"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Voeg by as 'n nuwe ry"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Terug na vorige bladsy"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Voeg 'n nuwe ry by"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "Terug na vorige bladsy"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12153,33 +12152,39 @@ msgstr ""
msgid "Create version"
msgstr "Bediener weergawe"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-stelling"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Herstel"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12536,8 +12541,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12663,8 +12668,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13400,9 +13405,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Daar ontbreek 'n waarde in die vorm !"
-#~ msgid "rows"
-#~ msgstr "Beloer Data"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "ry(e) beginnende vanaf rekord #"
diff --git a/po/ar.po b/po/ar.po
index 08b9dc627b..1244b5f9d7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2011-09-24 21:48+0200\n"
"Last-Translator: Abdullah Al-Saedi \n"
"Language-Team: arabic \n"
-"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "عرض الكل"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "عرض الكل"
msgid "Page number:"
msgstr "صفحة رقم:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"لا يمكن تحديث نافذة المتصفح المستهدفة,, يبدو أنك أغلقت الرئيسية أو أن "
"مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "بحث"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "بحث"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "تنفيذ"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "اسم المفتاح"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "الوصف"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "استخدم هذه القيمة"
@@ -122,12 +122,12 @@ msgstr "تعليقات الجدول"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "عمود"
@@ -136,6 +136,7 @@ msgstr "عمود"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "عمود"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "نوع"
@@ -153,12 +154,12 @@ msgstr "نوع"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "خالي"
@@ -197,13 +198,13 @@ msgstr "تعليقات"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "لا"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -338,8 +339,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
#: db_operations.php:633
msgid "Edit or export relational schema"
@@ -359,7 +360,7 @@ msgstr "جدول"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "صفوف"
@@ -414,28 +415,28 @@ msgid "Switch to %svisual builder%s"
msgstr "التحويل إلى %sالباني المرئي%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "ترتيب"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "تصاعديا"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "تنازليا"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "عرض"
@@ -456,8 +457,8 @@ msgid "Del"
msgstr "حذف"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "أو"
@@ -532,8 +533,8 @@ msgstr[4] "%s مطابقة في الجدول %s"
msgstr[5] "%s مطابقة في الجدول %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "استعراض"
@@ -542,14 +543,14 @@ msgstr "استعراض"
msgid "Delete the matches for the %s table?"
msgstr "حذف التشابهات لجدول %s ؟"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "حذف"
@@ -621,11 +622,11 @@ msgstr "التتبع نشط."
msgid "Tracking is not active."
msgstr "التتبع غير نشط."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -635,7 +636,7 @@ msgstr "عرض"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "إستنساخ"
@@ -649,20 +650,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "مع المحدد:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "تحديد الكل"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -674,27 +675,27 @@ msgstr "تحقق من الجداول التي تحمل عبء زائد"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "تصدير"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "عرض نسخة للطباعة"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "إفراغ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -720,11 +721,11 @@ msgstr "تحليل الجدول"
msgid "Add prefix to table"
msgstr "إضافة بادئة للجدول"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "استبدال بادئة الجدول"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "نسخ الجدول مع البادئة"
@@ -743,8 +744,8 @@ msgstr "الجداول المتعقبة"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "قاعدة البيانات"
@@ -762,7 +763,7 @@ msgstr "محدث"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "الحالة"
@@ -860,45 +861,45 @@ msgstr ""
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "هندسة"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "نقطة"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "س"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "ص"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "نقطة %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "إضافة نقطة"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "منحنى"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -906,17 +907,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "إضافة منحنى"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add unique index"
msgid "Add an inner ring"
msgstr "إضافة فهرس مميز"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "مضلع"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "إضافة مضلع"
@@ -939,8 +940,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@@ -984,7 +985,7 @@ msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتب
msgid "Could not load import plugins, please check your installation!"
msgstr "لايمكن تحميل الإضافات المستوردة ,, فضلاً تحقق من عملية التنصيب ."
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "تم إنشاء العلامة المرجعية %s"
@@ -1011,7 +1012,7 @@ msgstr ""
"إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1026,7 +1027,7 @@ msgstr "رجوع"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "أمر \"حذف قاعدة البيانات\" معطل."
@@ -1036,7 +1037,7 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل."
msgid "Do you really want to execute \"%s\"?"
msgstr "هل تريد حقا"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "أنت على وشك إزالة كامل قاعدة البيانات !"
@@ -1127,21 +1128,21 @@ msgstr "أغلاق"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تعديل"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "خريطة التتبع المباشر"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "خريطة conn./process المباشر"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "خريطة الإستعلام المباشر"
@@ -1152,23 +1153,23 @@ msgstr "بيانات ثابتة"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "مجموع كلي"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "آخر"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1188,7 +1189,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)"
msgid "Connections since last refresh"
msgstr "الإتصالات منذ آخر تحديث"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "عمليات"
@@ -1206,7 +1207,7 @@ msgstr "العمليات منذ آخر تحديث"
msgid "Questions (executed statements by the server)"
msgstr "العمليات (الجمل المنفذة بواسطة الخادم)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "إحصائيات الإستعلام"
@@ -1253,14 +1254,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "ميجابايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "كيلوبايت"
@@ -1316,32 +1317,32 @@ msgstr "بايتات أُرسلت"
msgid "Bytes received"
msgstr "بايتات أُستلمت"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "اتصالات"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "جيجابايت"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "تيرابايت"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "بيتابايت"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "إكسابايت"
@@ -1357,11 +1358,11 @@ msgstr "%s جدول (جداول)"
msgid "Questions"
msgstr "العمليات"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "بيانات سير"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "الإعدادات"
@@ -1382,10 +1383,10 @@ msgid "Please add at least one variable to the series"
msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "لا شيء"
@@ -1480,7 +1481,7 @@ msgstr "تغيير الإعدادات"
msgid "Current settings"
msgstr "الإعدادات الحالية"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "عنوان الرسم البياني"
@@ -1567,9 +1568,9 @@ msgstr "حلل"
msgid "Explain output"
msgstr "شرح SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "وقت"
@@ -1674,7 +1675,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "استيراد"
@@ -1798,19 +1799,19 @@ msgstr "إخفاء الفهارس"
msgid "Show indexes"
msgstr "أظهار الفهارس"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "تعطيل التحقق من المفتاح الغريب"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "مفعل"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1885,7 +1886,7 @@ msgstr "إظهار صندوق الإستعلام"
msgid "No rows selected"
msgstr "لايوجد صفوف مختارة"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "تغيير"
@@ -1894,17 +1895,18 @@ msgstr "تغيير"
msgid "Query execution time"
msgstr "وقت التنفيذ الأقصى"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "حفظ"
@@ -1929,93 +1931,85 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "إستخدم عجلة الفأرة للتكبير والتصغير."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "إضغط وإسحب للتصفح."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "إضغط إعادة للعودة إلى الوضع الأصلي."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "إختر عمودين"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "إختر عمودين مختلفين"
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "ناتج استعلام SQL"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "جدول المحتويات"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "تجاهل"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "نسخ"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "إضافة أعمدة"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "إختيار المفتاح المرجع"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "إختيار المفتاح الغريب"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "اختر الحقل لإظهاره"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "إضافة خيار للعمود"
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "إضغط escape لإلغاء التعديل"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2023,74 +2017,74 @@ msgstr ""
"لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون "
"حفظ البيانات الجديدة؟"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "إسحب لإعادة الترتيب"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "إضغط للترتيب"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "إضغط لوضع علامة / إزالة علامة"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "تستطيع تعديل أغلب الأعمدة بالضغط مباشرة على المحتوى."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "ذهاب للرابط"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "اسم العمود"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "مشاهدة السجلات "
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "توليد كلمة مرور"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "توليد"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "تغيير كلمة المرور"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "أكثر"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2100,268 +2094,268 @@ msgstr ""
"هو %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", آخر إصدار مستقر:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "محدثة"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "إنتهى"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "سابق"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "اليوم"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "يناير"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "فبراير"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "مارس"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "أبريل"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "مايو"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "يونيو"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "يوليو"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "سبتمبر"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "نوفمبر"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "ديسمبر"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "الأربعاء"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "الخميس"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "السبت"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "الأسبوع"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "لا شيء"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "الساعة"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "الدقيقة"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "الثانية"
@@ -2412,16 +2406,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "لكل ثانية"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "لكل دقيقة"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "لكل ساعة"
@@ -2548,15 +2542,15 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده
msgid "Databases"
msgstr "قاعدة بيانات"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "خادم"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2568,20 +2562,20 @@ msgid "Structure"
msgstr "بناء"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "إدخال"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "عمليات"
@@ -2641,12 +2635,12 @@ msgstr "المستخدم"
msgid "Synchronize"
msgstr "تزامن"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "سجل ثنائي"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "متغيرات"
@@ -2663,8 +2657,9 @@ msgid "Engines"
msgstr "محركات"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خطأ"
@@ -2790,35 +2785,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "مسار الصورة للمظهر %s غير صحيح!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "لاتتوفر معاينة."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "إعتبر"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "المظهر الإفتراضي %s غير موجود!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "المظهر %s غير موجود!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "مسار المظهر غير موجود للمظهر %s !"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "مظهر"
@@ -2859,14 +2854,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3126,8 +3121,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:115
@@ -3231,7 +3226,7 @@ msgstr "مشترك"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "جداول"
@@ -3282,22 +3277,22 @@ msgstr "إستغلال محتمل"
msgid "numeric key detected"
msgstr "الكشف عن مفتاح رقمي"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "فشل قراءة ملف الإعدادات"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr "يبدو أن هناك خطأ في بناء الجملة."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "لا يمكن تحميل الإعدادات الإفتراضية من : %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3309,21 +3304,21 @@ msgstr ""
"المتغير $cfg['PmaAbsoluteUri'] يجب "
"تعديله في ملف التعريف !"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "فهرس خادم غير صحيح: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "إسم المضيف غير صحيح للخادم %1$s."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "اسلوب مصادقة غير صحيح في الإعدادات:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "عليك الترقية إلى %s%s أو لاحقا."
@@ -3358,8 +3353,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "إنجليزي"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "استعلام SQL"
@@ -3397,7 +3392,7 @@ msgid "Create PHP Code"
msgstr "أنشئ كود PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "تحديث"
@@ -3418,95 +3413,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "مضمن"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "جانبي"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "الأحد"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y الساعة %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "مدخلات مفقودة:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "بداية"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "سابق"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "التالي"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "نهاية"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "الذهاب إلى قاعدة البيانات "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "إضغط للإختيار"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "تصفح كمبيوترك."
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "إختر مجلد الرفع من الخادم %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه."
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "لايوجد أي ملفات لرفعها"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "تنفيذ"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "طباعة"
@@ -3678,9 +3673,9 @@ msgstr "إستعادة القيمة الإفتراضية"
msgid "Allow users to customize this value"
msgstr "السماح للمستخدمين بتخصيص هذه القيمة"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "إعادة تعيين"
@@ -3834,7 +3829,7 @@ msgid "Compress on the fly"
msgstr "ضغط"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "ملف التكوين"
@@ -3895,7 +3890,7 @@ msgstr "اقترح بناء الجدول"
msgid "Show binary contents as HEX by default"
msgstr "عرض البيانات الثنائية بالنظام الست عشري إفتراضياً"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "عرض البيانات الثنائية بالنظام الست عشري"
@@ -5664,7 +5659,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5806,25 +5801,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6005,8 +6000,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6206,56 +6201,61 @@ msgstr ""
msgid "Language"
msgstr "اللغة"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "إضافه/حذف عمود حقل"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "ابدأ"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of tables"
msgid "Number of rows"
msgstr "عدد الجداول"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "أكثر"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "أفقي"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ")عناوين ملتفة( أفقيا"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "عمودي"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute"
+msgid "Headers every"
+msgstr "تنفيذ"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "استعراض"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "رتب حسب المفتاح"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6273,101 +6273,101 @@ msgstr "رتب حسب المفتاح"
msgid "Options"
msgstr "خيارات"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "نصوص جزئية"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "نصوص كاملة"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "بناء الارتباطات"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "تحويل المتصفح"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "إبطال"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "في الاستعلام"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "مشاهدة السجلات "
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "المجموع"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "استغرق الاستعلام %01.4f ثانية"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "عرض الطباعة (مع النصوص الكاملة)."
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "إظهار بناء ملف PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "تكوين"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "لم يمكن إيجاد الوصلة"
@@ -6411,7 +6411,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "وضع InnoDB"
@@ -6662,8 +6662,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6814,12 +6814,12 @@ msgstr "أنواع MIME المتوفرة"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "المزود"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "أنشئ في"
@@ -7028,8 +7028,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "قام MySQL بإرجاع نتيجة فارغة."
@@ -7199,6 +7199,100 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "دالة"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "أخفاء"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "ثنائي"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "بسبب طوله, فمن المحتمل أن هذا الحقل غير قابل للتحرير "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "ثنائي - لاتحرره"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "دليل تحميل الملفات على خادم الشبكة"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "إدخال"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "وبعدها"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "إدخال كتسجيل جديد"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "الرجوع إلى الصفحة السابقة"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "إدخال تسجيل جديد"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "ارجع إلى هذه الصفحة"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "عدل الصف التالي"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "القيمة"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7211,38 +7305,38 @@ msgstr "لا شيء"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "الجمعة"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "إرسال"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "إضافة حقل جديد"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "هل تريد حقا"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "لا تغييرات"
@@ -7250,11 +7344,6 @@ msgstr "لا تغييرات"
msgid "Charset"
msgstr "مجموعة المحارف"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "ثنائي"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "البلغارية"
@@ -7583,18 +7672,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "متغير"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "القيمة"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "رقم الخادم"
@@ -7959,11 +8040,6 @@ msgstr "تنفيذ"
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "دالة"
-
#: libraries/rte/rte_triggers.lib.php:89
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
@@ -8330,7 +8406,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8340,11 +8416,11 @@ msgstr ""
msgid "Columns"
msgstr "اسم العمود"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "اجعل علامة مرجعية SQL-استعلام"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
@@ -8368,10 +8444,6 @@ msgstr "عرض هذا الاستعلام هنا مرة أخرى "
msgid "View only"
msgstr "عرض فقط"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "دليل تحميل الملفات على خادم الشبكة"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8581,12 +8653,6 @@ msgstr ""
msgid "Table Search"
msgstr "بحث"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "إدخال"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8817,7 +8883,7 @@ msgstr "نسخة البروتوكول"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "المستخدم"
@@ -8921,8 +8987,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
-"%s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
+"s."
#: main.php:357
#, php-format
@@ -9033,10 +9099,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "أخفاء"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "عدد الجداول"
@@ -9253,17 +9315,17 @@ msgstr "الجدول \"%s\" غير موجود!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "الملفات"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "احذف الاستعلامات المعروضة"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "اعرض الاستعلامات كاملة"
@@ -9712,8 +9774,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -9835,7 +9897,7 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9972,162 +10034,162 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "تم إيقاف العمليّة %s بنجاح."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "بيانات التشغيل"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "حدث"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "مرشح"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "لاتغير كلمة السر"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "شاهد الجدول"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show tables"
msgid "Show unformatted values"
msgstr "شاهد الجدول"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "الروابط"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "نوع الاستعلام"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Actions"
msgid "Instructions"
msgstr "أفعال"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10135,117 +10197,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "تخصيص صفحة بدء التشغيل"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "أوامر"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "استلم"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "أرسل"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "محاولات أخفقت"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "ألغي"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "رقم"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "أمر"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10253,78 +10315,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10332,7 +10394,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10340,42 +10402,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10383,33 +10445,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10418,244 +10480,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "هيئة الملفات المستوردة"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10663,99 +10725,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10763,18 +10825,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10782,72 +10844,72 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "التتبع غير نشط."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "ابدأ"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "إضافة حقل جديد"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "حدث"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "إضافه/حذف عمود حقل"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "إستعادة القيمة الإفتراضية"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10856,7 +10918,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10864,18 +10926,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10883,11 +10945,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10895,93 +10957,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove chart"
msgid "Preset chart"
msgstr "حذف الرسم البياني"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "اختر الجداول"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "اسم الجدول غير صالح"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "أضف مستخدم جديد"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "إحصائيات"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "اختر الجداول"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "نوع الاستعلام"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10993,7 +11055,7 @@ msgstr[3] "الثانية"
msgstr[4] "الثانية"
msgstr[5] "الثانية"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11134,7 +11196,7 @@ msgstr "قيمة الجلسة"
msgid "Global value"
msgstr "قيمة عامة"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "نزل"
@@ -11198,39 +11260,39 @@ msgstr ""
msgid "New server"
msgstr "خادم جديد"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- لا شيء -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "تبرع"
@@ -11418,55 +11480,46 @@ msgstr ""
msgid "Wrong data"
msgstr "لايوجد بيانات"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "استعرض القيم الغريبة"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "هل تريد حقا"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "التحقق من استعلام SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "ناتج استعلام SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "أنشئ بواسطة"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "علامة"
@@ -11481,58 +11534,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "تم حذف المستخدمين المحددين بنجاح."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "بسبب طوله, فمن المحتمل أن هذا الحقل غير قابل للتحرير "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "ثنائي - لاتحرره"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "إدخال كتسجيل جديد"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "وبعدها"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "الرجوع إلى الصفحة السابقة"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "إدخال تسجيل جديد"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "ارجع إلى هذه الصفحة"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "عدل الصف التالي"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12159,34 +12160,40 @@ msgstr "تتبع تقارير التلاعب بالبيانات:"
msgid "Create version"
msgstr "إنشاء إصدار"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "إخفاء معايير البحث"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "إعادة تعيين"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "الحصول على سمات جديدة!"
@@ -12559,8 +12566,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12691,8 +12698,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13362,6 +13369,12 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "إستخدم عجلة الفأرة للتكبير والتصغير."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "إضغط وإسحب للتصفح."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13565,9 +13578,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "القيمة كبيرة جداً!"
-#~ msgid "rows"
-#~ msgstr "استعراض"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "صفوف تبدأ من"
@@ -13644,8 +13654,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
-#~ "%sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
+#~ "sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index 92c607fb13..b9b896aa4c 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: azerbaijani \n"
-"Language: az\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Hamısını göster"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,28 +28,29 @@ msgstr "Hamısını göster"
msgid "Page number:"
msgstr "Sehife Nömresi:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Axtarış"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -65,28 +66,27 @@ msgstr "Axtarış"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Davam"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Açar söz"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Haqqında"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr ""
@@ -119,12 +119,12 @@ msgstr "Cedvel haqqında qısa izahat"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -135,6 +135,7 @@ msgstr "Sütun adları"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Sütun adları"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -152,12 +153,12 @@ msgstr "Tip"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Qısa İzahatlar"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Xeyir"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -368,7 +369,7 @@ msgstr "Cedvel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Sıra sayı"
@@ -421,28 +422,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Kopyalanmış cedvele keç"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sırala"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Artan sırada"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Azalan sırada"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Göster"
@@ -463,8 +464,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ya da"
@@ -538,8 +539,8 @@ msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)"
msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "İçindekiler"
@@ -549,14 +550,14 @@ msgstr "İçindekiler"
msgid "Delete the matches for the %s table?"
msgstr "Sxemi çıxarılan cedvel"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Sil"
@@ -633,11 +634,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -647,7 +648,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
#, fuzzy
msgid "Replication"
msgstr "Relations"
@@ -662,20 +663,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Seçilenleri:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Hamısını Seç"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -687,27 +688,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Çap görüntüsü"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Boşalt"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -733,13 +734,13 @@ msgstr "Cedveli analiz et"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Replace table data with file"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -760,8 +761,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Me'lumat Bazası"
@@ -780,7 +781,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -889,49 +890,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Yeni sahe elave et"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Setir leğvedicisi (Lines terminated by)"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -941,17 +942,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Yeni İstifadeçi elave Et"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Yeni İstifadeçi elave Et"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "Yeni sahe elave et"
@@ -974,8 +975,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1015,7 +1016,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1038,7 +1039,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1055,7 +1056,7 @@ msgstr ""
"phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı "
"işleyir."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
@@ -1065,7 +1066,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
msgid "Do you really want to execute \"%s\"?"
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
@@ -1168,23 +1169,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Deyişdir"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Quraşdırılmış Serverler"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL sorğusu"
@@ -1196,23 +1197,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Cemi"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1234,7 +1235,7 @@ msgstr "Quraşdırılmış Serverler"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prosesler"
@@ -1254,7 +1255,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Sıra Statistikası"
@@ -1299,14 +1300,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1364,32 +1365,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Alındı"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Elaqeler"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "QB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1405,11 +1406,11 @@ msgstr "%s cedvel"
msgid "Questions"
msgstr "Emeliyyatlar"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Neqliyyat"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1433,10 +1434,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Heç biri"
@@ -1536,7 +1537,7 @@ msgstr "Ümumi elaqe variantları"
msgid "Current settings"
msgstr "Ümumi elaqe variantları"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1620,9 +1621,9 @@ msgstr ""
msgid "Explain output"
msgstr "SQL-i İzah Et"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Müddet"
@@ -1731,7 +1732,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Eksport"
@@ -1874,17 +1875,17 @@ msgstr "Yeni sahe elave et"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Enabled"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1964,7 +1965,7 @@ msgstr "SQL sorğusu"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Deyişdir"
@@ -1973,17 +1974,18 @@ msgstr "Deyişdir"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Qeyd Et"
@@ -2012,178 +2014,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL result"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "İçindekiler Cedveli"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Diqqete Alma"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "Yeni sahe elave et"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Gösterilecek Saheni Seç"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Sütun adları"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Gösterilen setirler"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Qurucu"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolu Deyişdir"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Baz Ert"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2191,30 +2185,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, 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:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Heç biri"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Evvelki"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2222,96 +2216,96 @@ msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Cemi"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binary"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "May"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "İyun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "İyul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avq"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2319,78 +2313,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Baz"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Baz Ert"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Çerş Axş"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cüme"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2398,113 +2392,113 @@ msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Baz"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Çerş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çerş"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cüme Axş"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cüme"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şen"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Heç biri"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "istifadede"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2556,16 +2550,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "saniyede"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "deqiqede"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "saatda"
@@ -2691,15 +2685,15 @@ msgstr ""
msgid "Databases"
msgstr "Me'lumat Bazaları"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2711,20 +2705,20 @@ msgid "Structure"
msgstr "Quruluş"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Elave et"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Emeliyyatlar"
@@ -2784,13 +2778,13 @@ msgstr "İstifadeçi"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binary"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Deyişenler"
@@ -2808,8 +2802,9 @@ msgid "Engines"
msgstr "Motorlar"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xeta"
@@ -2925,35 +2920,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2994,14 +2989,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3258,8 +3253,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3360,7 +3355,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Cedveller"
@@ -3413,22 +3408,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3440,21 +3435,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda "
"QURULMAMIŞDIR!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3489,8 +3484,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL sorğusu"
@@ -3528,7 +3523,7 @@ msgid "Create PHP Code"
msgstr "PHP Kodunu Hazırla"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3551,43 +3546,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motorlar"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Baz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y saat %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Yeni sahe elave et"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Başla"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3595,8 +3590,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Evvelki"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3604,53 +3599,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sonrakı"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" me'lumat bazasına keç."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Çap et"
@@ -3835,9 +3830,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Yenile"
@@ -3986,7 +3981,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4047,7 +4042,7 @@ msgstr "Alternativ cedvel strukturu"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5889,7 +5884,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6027,25 +6022,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6227,8 +6222,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6422,56 +6417,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Şen"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Sehife başına düşen setir sayı"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Baz Ert"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "üfüqi"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "üfüqi (tekrarlanan başlıqlar)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "şaquli"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "İçindekiler"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6490,101 +6488,101 @@ msgstr ""
msgid "Options"
msgstr "Emeliyyatlar"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Qismi Metnler"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Tam Metnler (Full Text)"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Setir silindi"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Söndür"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Gösterilen setirler"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "cemi"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "sorğu %01.4f saniyede icra edildi"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF sxemini göster"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Server versiyası"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link tapılmadı"
@@ -6630,7 +6628,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6883,8 +6881,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7034,12 +7032,12 @@ msgstr "Mövcud olan MIME-tipleri"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Hazırlanma Vaxtı"
@@ -7252,8 +7250,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
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)."
@@ -7418,6 +7416,101 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksiya"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binary"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+" Uzun olduğuna göre, bu sahedeki me'lumatlar deyişdirilmeye biler "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binary - deyişiklik etme"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web-server upload direktoriyası"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Elave et"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Yeni setir olaraq elave et"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Evvelki sehifeye qayıt"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Teze bir setir daha gir"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Bu sehifeye geri dön"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Bir sonrakı setre keç"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Deyer"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7430,38 +7523,38 @@ msgstr "Heç biri"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Cüme"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submit"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Yeni sahe elave et"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Deyişiklik Yoxdur"
@@ -7469,11 +7562,6 @@ msgstr "Deyişiklik Yoxdur"
msgid "Charset"
msgstr "Charset"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binary"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bolqar Dili"
@@ -7808,18 +7896,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Deyişen"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Deyer"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8164,11 +8244,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksiya"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8529,7 +8604,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8539,11 +8614,11 @@ msgstr ""
msgid "Columns"
msgstr "Sütun adları"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorğusunu bookmark-la"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8567,10 +8642,6 @@ msgstr "Bu sorğunu burada yene göster"
msgid "View only"
msgstr "Sadece göster"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web-server upload direktoriyası"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8771,12 +8842,6 @@ msgstr "Emeliyyatlar"
msgid "Table Search"
msgstr "Axtarış"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Elave et"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9010,7 +9075,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "İstifadeçi"
@@ -9229,10 +9294,6 @@ msgstr "Hamısını göster"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9450,18 +9511,18 @@ msgstr "\"%s\" cedveli mövcud deyil!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Sahe sayı"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Emrleri Tam Olaraq Göster"
@@ -9912,8 +9973,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
@@ -10036,7 +10097,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10175,12 +10236,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s uğurla söndürüldü (killed)."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10188,148 +10249,148 @@ 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:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Sorğu tipi"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Genişletilmiş girişli"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Cedvelleri göster"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Runtime Me'lumatı"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Qurucu"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolu deyişdirme"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Cedvelleri göster"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Cedvelleri göster"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Sorğu tipi"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funksiya"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10337,117 +10398,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Variantlar"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Alındı"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Gönderildi"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Uğursuz Cehdler"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Dayandırılmış Elaqeler"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "Nömre"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komanda Tipi"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10455,78 +10516,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10534,7 +10595,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10542,42 +10603,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10585,33 +10646,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10620,243 +10681,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Faylın Charset-i:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10864,99 +10925,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10964,18 +11025,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10983,69 +11044,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Sorğu tipi"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Şen"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Yeni sahe elave et"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Qurucu"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Sahe Sütunlarını Elave Et/Sil"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11054,7 +11115,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11062,18 +11123,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11081,11 +11142,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11093,89 +11154,89 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
msgid "Preset chart"
msgstr "Cedveli yeniden adlandır"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Select Tables"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Yeni İstifadeçi elave Et"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL sorğusu"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Sıra Statistikası"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Hamısını Seç"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Sorğu tipi"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11183,7 +11244,7 @@ msgid_plural "%d seconds"
msgstr[0] "saniyede"
msgstr[1] "saniyede"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11319,7 +11380,7 @@ msgstr "Sessiya deyeri"
msgid "Global value"
msgstr "Qlobal deyer"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11383,41 +11444,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Yerli"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11607,55 +11668,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL Tesdiqle"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL result"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Qurucu"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiket"
@@ -11669,59 +11721,6 @@ msgstr "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
msgstr "The selected users have been deleted successfully."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-" Uzun olduğuna göre, bu sahedeki me'lumatlar deyişdirilmeye biler "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binary - deyişiklik etme"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Yeni setir olaraq elave et"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Evvelki sehifeye qayıt"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Teze bir setir daha gir"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Bu sehifeye geri dön"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Bir sonrakı setre keç"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12364,33 +12363,39 @@ msgstr ""
msgid "Create version"
msgstr "Server versiyası"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL sorğusu"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Yenile"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12748,8 +12753,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12876,8 +12881,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13652,9 +13657,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Formda eksik girilmiş deyer var!"
-#~ msgid "rows"
-#~ msgstr "İçindekiler"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "setri göster; başlangıç qeydiyyat nömresi"
diff --git a/po/be.po b/po/be.po
index 27a91c7abf..f4844f1c27 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: belarusian_cyrillic \n"
-"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: be\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Паказаць усе"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Паказаць усе"
msgid "Page number:"
msgstr "Старонка:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне "
"міжваконных ўзаемадзеяньняў"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Пошук"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Пошук"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Панеслася"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Імя ключа"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Апісаньне"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Выкарыстоўваць гэта значэньне"
@@ -121,12 +121,12 @@ msgstr "Камэнтар да табліцы"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -137,6 +137,7 @@ msgstr "Назвы калёнак"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Назвы калёнак"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тып"
@@ -154,12 +155,12 @@ msgstr "Тып"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Нуль"
@@ -198,13 +199,13 @@ msgstr "Камэнтары"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Не"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -368,7 +369,7 @@ msgstr "Табліца"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Радкі"
@@ -421,28 +422,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Перайсьці да скапіяванай табліцы"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Парадак"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "прамы"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "адваротны"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Паказаць"
@@ -463,8 +464,8 @@ msgid "Del"
msgstr "Выдаліць"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Або"
@@ -538,8 +539,8 @@ msgstr[0] "%s супадзеньняў у табліцы %s"
msgstr[1] "%s супадзеньняў у табліцы %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Прагляд"
@@ -549,14 +550,14 @@ msgstr "Прагляд"
msgid "Delete the matches for the %s table?"
msgstr "Дамп дадзеных табліцы"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Выдаліць"
@@ -633,14 +634,14 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
-"%sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
+"sдакумэнтацыі%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -649,7 +650,7 @@ msgstr "Выгляд"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Рэплікацыя"
@@ -665,20 +666,20 @@ msgstr ""
"сэрвэры."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "З адзначанымі:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Адзначыць усё"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -690,27 +691,27 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Экспарт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Вэрсія для друку"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Ачысьціць"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -737,13 +738,13 @@ msgstr "Аналізаваць табліцу"
msgid "Add prefix to table"
msgstr "Базы дадзеных адсутнічаюць"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Замяніць дадзеныя табліцы дадзенымі з файла"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -765,8 +766,8 @@ msgstr "Праверыць табліцу"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "База дадзеных"
@@ -786,7 +787,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Стан"
@@ -895,49 +896,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Дадаць новае поле"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Радкі падзеленыя"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -947,17 +948,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Дадаць новага карыстальніка"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Дадаць новага карыстальніка"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -981,8 +982,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -1008,8 +1009,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
-"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
+"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:373
@@ -1032,7 +1033,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створаная"
@@ -1060,7 +1061,7 @@ msgstr ""
"вы не павялічыце ліміты выкананьня php-скрыптоў."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1075,7 +1076,7 @@ msgstr "Назад"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Каманды \"DROP DATABASE\" адключаныя."
@@ -1085,7 +1086,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя."
msgid "Do you really want to execute \"%s\"?"
msgstr "Ці сапраўды вы жадаеце "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
@@ -1190,23 +1191,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Рэдагаваць"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Выбар сэрвэра"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL-запыт"
@@ -1218,23 +1219,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Агулам"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1256,7 +1257,7 @@ msgstr "Выбар сэрвэра"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Працэсы"
@@ -1276,7 +1277,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Статыстыка радку"
@@ -1326,14 +1327,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МіБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КiБ"
@@ -1395,32 +1396,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Атрымана"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Падлучэньні"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГіБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТіБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПіБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЭіБ"
@@ -1436,11 +1437,11 @@ msgstr "%s табліц(ы)"
msgid "Questions"
msgstr "Пэрсыдзкая"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафік"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1467,10 +1468,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Няма"
@@ -1570,7 +1571,7 @@ msgstr "Магчымасьці асноўных сувязяў"
msgid "Current settings"
msgstr "Магчымасьці асноўных сувязяў"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1658,9 +1659,9 @@ msgstr "Прааналізаваць"
msgid "Explain output"
msgstr "Тлумачыць SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Час"
@@ -1770,7 +1771,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Імрарт"
@@ -1920,19 +1921,19 @@ msgstr "Дадаць новае поле"
msgid "Show indexes"
msgstr "Паказаць сетку"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Адключыць праверку зьнешніх ключоў"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Уключана"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -2012,7 +2013,7 @@ msgstr "SQL-запыт"
msgid "No rows selected"
msgstr "Ніводны радок ня выбраны"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Зьмяніць"
@@ -2021,17 +2022,18 @@ msgstr "Зьмяніць"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d не зьяўляецца карэктным нумарам радка."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Захаваць"
@@ -2060,179 +2062,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Дзеяньні з вынікамі запытаў"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Памер указальніка на дадзеныя"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ігнараваць"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Скапіяваць"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Дадаць %s новыя палі"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Выберыце спасылкавы ключ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Выберыце зьнешні ключ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Выберыце поле для адлюстраваньня"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "Базы дадзеных адсутнічаюць"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Назвы калёнак"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Паказаныя запісы"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Згенэраваць пароль"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Згенэраваць"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Зьмяніць пароль"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пан"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2240,30 +2234,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Стварыць сувязь"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Базы дадзеных адсутнічаюць"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "Дадзеныя"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Папярэдняя старонка"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2271,96 +2265,96 @@ msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Тра"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2368,78 +2362,78 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2447,115 +2441,115 @@ msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Няма"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2608,16 +2602,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "у сэкунду"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "у хвіліну"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "у гадзіну"
@@ -2748,15 +2742,15 @@ msgstr ""
msgid "Databases"
msgstr "Базы дадзеных"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сэрвэр"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2768,20 +2762,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Уставіць"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Апэрацыі"
@@ -2841,12 +2835,12 @@ msgstr "Карыстальнік"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Двайковы лог"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Зьменныя"
@@ -2863,8 +2857,9 @@ msgid "Engines"
msgstr "Машыны"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Памылка"
@@ -2990,35 +2985,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Папярэдні прагляд недаступны."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "гэтая"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Тэма па змоўчаньні %s ня знойдзеная!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Тэма %s ня знойдзеная!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Ня знойдзены шлях да тэмы %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3059,14 +3054,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3325,8 +3320,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -3435,7 +3430,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Табліц"
@@ -3489,25 +3484,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3519,23 +3514,23 @@ msgstr ""
"Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў "
"вашым канфігурацыйным файле!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Некарэктны індэкс сэрвэра: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
@@ -3570,8 +3565,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-запыт"
@@ -3609,7 +3604,7 @@ msgid "Create PHP Code"
msgstr "Стварыць PHP-код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Абнавіць"
@@ -3632,43 +3627,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Машыны"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Прафіляваньне"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ндз"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Працэдуры"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Першая старонка"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3676,8 +3671,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Папярэдняя старонка"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3685,54 +3680,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "Наступная старонка"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Апошняя старонка"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Перайсьці да базы дадзеных "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Друк"
@@ -3916,9 +3911,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Скінуць"
@@ -4067,7 +4062,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4131,7 +4126,7 @@ msgstr "Прапанаваная структура табліцы"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -6003,7 +5998,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6147,7 +6142,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6155,21 +6150,21 @@ msgid ""
"configured)."
msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сэрвэр не адказвае"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Падрабязьней..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6357,12 +6352,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -6576,57 +6571,62 @@ msgstr ""
msgid "Language"
msgstr "Мова"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Хатняя тэчка дадзеных"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Суб"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Колькасьць палёў"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Пан"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "гарызантальна"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "гарызантальна (павернутыя загалоўкі)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вэртыкальна"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Выканаць запыт з закладак"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Прагляд"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Сартаваць па ключы"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6644,100 +6644,100 @@ msgstr "Сартаваць па ключы"
msgid "Options"
msgstr "Налады"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Частковыя тэксты"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Поўныя тэксты"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Ключ сувязі"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Адлюстраванае поле сувязі"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Пераўтварэньне MIME-тыпу браўзэрам"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Радок быў выдалены"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Спыніць"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "па запыту"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Паказаныя запісы"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "усяго"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запыт выконваўся %01.4f сэк"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Дзеяньні з вынікамі запытаў"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Вэрсія для друку (з усім тэкстам)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Паказаць PDF-схему"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Стварыць сувязь"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Сувязь ня знойдзеная"
@@ -6785,7 +6785,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Пул буфэру"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Стан InnoDB"
@@ -7080,8 +7080,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7233,12 +7233,12 @@ msgstr "Даступныя MIME-тыпы"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Час стварэньня"
@@ -7451,8 +7451,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
@@ -7624,6 +7624,104 @@ msgstr "Рэжым сумяшчальнасьці SQL"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функцыя"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Схаваць"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Двайковы"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "З-за вялікай даўжыні, гэтае поле ня можа быць адрэдагаванае "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Двайковыя дадзеныя — не рэдагуюцца"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Уставіць"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Пачаць устаўку зноў з %s-га радку"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "і пасьля"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Уставіць як новы радок"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "У выглядзе SQL-запыту"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Перайсьці да папярэдняй старонкі"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Дадаць яшчэ адзін радок"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Вярнуцца да гэтай старонкі"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Рэдагаваць наступны радок"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або "
+"CTRL+стрэлкі для перамяшчэньня ў любое іншае месца"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Значэньне"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "У выглядзе SQL-запыту"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ID устаўленага радку: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7636,38 +7734,38 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Пят"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Адправіць"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Дадаць новае поле"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ці сапраўды вы жадаеце "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Няма зьменаў"
@@ -7675,11 +7773,6 @@ msgstr "Няма зьменаў"
msgid "Charset"
msgstr "Кадыроўка"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Двайковы"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Баўгарская"
@@ -8013,18 +8106,10 @@ msgid "Slave status"
msgstr "Паказаць стан залежных сэрвэраў"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Зьменная"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Значэньне"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID сэрвэра"
@@ -8382,11 +8467,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Працэдуры"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функцыя"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8759,7 +8839,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Каляндар"
@@ -8770,11 +8850,11 @@ msgstr "Каляндар"
msgid "Columns"
msgstr "Назвы калёнак"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Дадаць гэты SQL-запыт у закладкі"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
@@ -8798,10 +8878,6 @@ msgstr "Паказаць гэты запыт зноў"
msgid "View only"
msgstr "Толькі прагляд"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -9016,12 +9092,6 @@ msgstr "Апэратар"
msgid "Table Search"
msgstr "Пошук"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Уставіць"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9293,7 +9363,7 @@ msgstr "Вэрсія пратаколу"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Карыстальнік"
@@ -9523,10 +9593,6 @@ msgstr "Схаваць/паказаць усе табліцы"
msgid "Hide/Show Tables with no relation"
msgstr "Схаваць/паказаць табліцы бяз сувязяў"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Схаваць"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Колькасьць табліц"
@@ -9747,17 +9813,17 @@ msgstr "Табліцы \"%s\" не існуе!"
msgid "Select binary log to view"
msgstr "Вылучыце двайковы лог для прагляду"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файлы"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Абразаць паказаныя запыты"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Паказаць поўныя запыты"
@@ -10213,8 +10279,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
@@ -10341,7 +10407,7 @@ msgstr "Прывілеі былі пасьпяхова перазагружан
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Паказаць стан залежных сэрвэраў"
@@ -10482,161 +10548,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Паток %s быў пасьпяхова спынены."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Апрацоўнік"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Кэш запытаў"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Патокі"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Часовыя дадзеныя"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Адкладзеныя ўстаўкі"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Кэш ключоў"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Аб'яднаньні"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Сартаваньне"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Каардынатар перакладу"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Скінуць (закрыць) усе табліцы"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Паказаць залежныя сэрвэры"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Паказаць стан залежных сэрвэраў"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Скінуць кэш запытаў"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Бягучая інфармацыя"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Абнавіць"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Файлы"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не зьмяняць пароль"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Паказаць адкрытыя табліцы"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Сувязі"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тып запыту"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функцыі"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10644,57 +10710,57 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Выразы"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Рэплікацыя"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10702,47 +10768,47 @@ msgstr ""
"На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму "
"статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Атрымана"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Адпраўлена"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "максымум адначасовых злучэньняў"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Няўдалых спробаў"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Спынена"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Каманда"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10752,17 +10818,17 @@ msgstr ""
"якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для "
"захоўваньня выразаў транзакцыі."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10774,11 +10840,11 @@ msgstr ""
"павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў "
"памяці, а не на дыску."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Колькасьць часовых файлаў, створаных mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10786,7 +10852,7 @@ msgstr ""
"Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна "
"створаныя сэрвэрам падчас выкананьня выразаў."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10794,7 +10860,7 @@ msgstr ""
"Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя "
"памылкі (пэўна, дубляваныя ключы)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10803,23 +10869,23 @@ msgstr ""
"Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны "
"паток."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Колькасьць запісаных INSERT DELAYED радкоў."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Колькасьць выкананых FLUSH-выразаў."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Колькасьць унутраных COMMIT-выразаў."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Колькасьць разоў выдаленьня радка з табліцы."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10829,7 +10895,7 @@ msgstr ""
"яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. "
"Handler_discover паказвае колькасьць высьвятленьняў табліц."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10840,7 +10906,7 @@ msgstr ""
"сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 "
"індэксаваная."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10848,7 +10914,7 @@ msgstr ""
"Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна "
"вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10858,7 +10924,7 @@ msgstr ""
"павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам "
"абмежаваньняў або калі адбываецца сканаваньне індэксаў."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10866,7 +10932,7 @@ msgstr ""
"Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад "
"чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10878,7 +10944,7 @@ msgstr ""
"прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам "
"або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10890,37 +10956,37 @@ msgstr ""
"што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб "
"выкарыстоўваць перавагі індэксаў."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Колькасьць унутраных выразаў ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Колькасьць запытаў устаўкі радка ў табліцу."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Колькасьць зьмененых старонак."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Колькасьць вольных старонак."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10930,7 +10996,7 @@ msgstr ""
"старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць "
"быць скінутыя ці выдаленыя з-за пэўнай прычыны."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10943,11 +11009,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Агульны памер буфэрнага пулу, у старонках."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10956,7 +11022,7 @@ msgstr ""
"адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым "
"парадку."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10964,11 +11030,11 @@ msgstr ""
"Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта "
"адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10976,7 +11042,7 @@ msgstr ""
"Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага "
"пулу, а таму зрабіла аднастаронкавае чытаньне."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10990,55 +11056,55 @@ msgstr ""
"падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны "
"правільна, гэтае значэньне мусіць быць маленькім."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Колькасьць апэрацыяў fsync() на бягучы момант."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Агульная колькасьць чытаньняў дадзеных."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Агульная колькасьць запісаў дадзеных."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, "
"якія былі запісаныя для гэтай мэты."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -11046,35 +11112,35 @@ msgstr ""
"Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і "
"таму давялося чакаць, пакуль ён не ачысьціцца."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Колькасьць запісаў у лог."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Колькасьць фізычна выкананых запісаў у лог-файл."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Колькасьць байтаў, запісаных у лог-файл."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Колькасьць створаных старонак."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -11082,55 +11148,55 @@ msgstr ""
"Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні "
"вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Колькасьць прачытаных старонак."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Колькасьць запісаных старонак."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
"Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у "
"мілісэкундах."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Колькась радкоў, прачытаных з табліц InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11138,7 +11204,7 @@ msgstr ""
"Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі "
"скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -11146,7 +11212,7 @@ msgstr ""
"Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна "
"выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -11156,17 +11222,17 @@ msgstr ""
"ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць "
"блёкаў, якія выкарастоўваліся адначасова."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Фармат імпартаванага файла"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -11176,26 +11242,26 @@ msgstr ""
"вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць "
"промахаў у кэш можна вылічыць як Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11206,17 +11272,17 @@ msgstr ""
"Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў "
"зкампіляваны."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11224,39 +11290,39 @@ msgstr ""
"Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, "
"значэньне кэшу табліц імаверна вельмі малое."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Колькасьць адкрытых файлаў."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Колькасьць адкрытых табліц."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Колькасьць вольнай памяці для кэшу запытаў."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Колькасьць зваротаў да кэшу."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Колькасьць запытаў, якія былі даданыя ў кэш."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11269,7 +11335,7 @@ msgstr ""
"выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з "
"кэшу."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11277,19 +11343,19 @@ msgstr ""
"Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за "
"значэньня дырэктывы query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Агульная колькасьць блёкаў у кэшы запытыў."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11297,13 +11363,13 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае "
"значэньне ня роўнае 0, варта праверыць індэксы ў табліцах."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай "
"табліцы."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -11312,7 +11378,7 @@ msgstr ""
"ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта "
"праверыць індэксы ў табліцах.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11320,17 +11386,17 @@ msgstr ""
"Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай "
"табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-"
"патокам."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11338,13 +11404,13 @@ msgstr ""
"Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі "
"паўтараў транзакцыі."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным "
"да сэрвэра, які яго кантралюе."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11352,14 +11418,14 @@ msgstr ""
"Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для "
"стварэньня."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым "
"long_query_time сэкундаў."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11369,25 +11435,25 @@ msgstr ""
"значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай "
"зьменнай sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
"Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх "
"слупкоў."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Колькасьць адсартаваных радкоў."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11399,7 +11465,7 @@ msgstr ""
"існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а "
"пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11409,11 +11475,11 @@ msgstr ""
"вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае "
"ў чырвоны колер, варта павялічыць значэньне thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Колькасьць адкрытых на бягучы момант злучэньняў."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11425,70 +11491,70 @@ msgstr ""
"thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага "
"павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Кэш ключоў"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Суб"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Дадаць новае поле"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Абнавіць"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Дадаць/выдаліць калёнку крытэру"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11497,7 +11563,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11505,18 +11571,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11524,11 +11590,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11536,92 +11602,92 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Перайменаваць базу дадзеных у"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Выберыце табліцу(ы)"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Некарэктнае імя табліцы"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Дадаць новага карыстальніка"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-запыт"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Статыстыка радку"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Выбраць усё"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тып запыту"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11629,7 +11695,7 @@ msgid_plural "%d seconds"
msgstr[0] "у сэкунду"
msgstr[1] "у сэкунду"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11767,7 +11833,7 @@ msgstr "Значэньне сэсіі"
msgid "Global value"
msgstr "Глябальнае значэньне"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11832,41 +11898,41 @@ msgstr ""
msgid "New server"
msgstr "Вэб-сэрвэр"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Лякальны"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Дакумэнтацыя па phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Дадзеныя"
@@ -12058,55 +12124,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Базы дадзеных адсутнічаюць"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Праглядзець зьнешнія значэньні"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ці сапраўды вы жадаеце "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ID устаўленага радку: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "У выглядзе PHP-коду"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "У выглядзе SQL-запыту"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Праверыць SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-вынік"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Створаны"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Метка"
@@ -12121,62 +12178,6 @@ msgstr "Табліца %1$s была пасьпяхова зьмененая"
msgid "The columns have been moved successfully."
msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "З-за вялікай даўжыні, гэтае поле ня можа быць адрэдагаванае "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Двайковыя дадзеныя — не рэдагуюцца"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Уставіць як новы радок"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "У выглядзе SQL-запыту"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "і пасьля"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Перайсьці да папярэдняй старонкі"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Дадаць яшчэ адзін радок"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Вярнуцца да гэтай старонкі"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Рэдагаваць наступны радок"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або "
-"CTRL+стрэлкі для перамяшчэньня ў любое іншае месца"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Пачаць устаўку зноў з %s-га радку"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12824,34 +12825,40 @@ msgstr ""
msgid "Create version"
msgstr "Стварыць сувязь"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-запыт"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "Пашырэньне PHP"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Скінуць"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13218,8 +13225,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13352,8 +13359,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14229,9 +14236,6 @@ msgstr "максымум адначасовых злучэньняў"
#~ msgid "No trigger with name %s found"
#~ msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
-#~ msgid "rows"
-#~ msgstr "Прагляд"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "радкоў, пачынаючы з запісу #"
diff --git a/po/be@latin.po b/po/be@latin.po
index 3516d2940e..89bfb84832 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: belarusian_latin \n"
-"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: be@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Pakazać usie"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Pakazać usie"
msgid "Page number:"
msgstr "Staronka:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie "
"mižvakonnych ŭzajemadziejańniaŭ"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Pošuk"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Pošuk"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Paniesłasia"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Imia kluča"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Apisańnie"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Vykarystoŭvać heta značeńnie"
@@ -121,12 +121,12 @@ msgstr "Kamentar da tablicy"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -137,6 +137,7 @@ msgstr "Nazvy kalonak"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Nazvy kalonak"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -154,12 +155,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nul"
@@ -198,13 +199,13 @@ msgstr "Kamentary"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Nie"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -369,7 +370,7 @@ msgstr "Tablica"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Radki"
@@ -423,28 +424,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Pierajści da skapijavanaj tablicy"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Paradak"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "pramy"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "advarotny"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Pakazać"
@@ -465,8 +466,8 @@ msgid "Del"
msgstr "Vydalić"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Abo"
@@ -541,8 +542,8 @@ msgstr[1] "%s supadzieńniaŭ u tablicy %s"
msgstr[2] "%s supadzieńniaŭ u tablicy %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Prahlad"
@@ -552,14 +553,14 @@ msgstr "Prahlad"
msgid "Delete the matches for the %s table?"
msgstr "Damp dadzienych tablicy"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Vydalić"
@@ -637,14 +638,14 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
-"%sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
+"sdakumentacyi%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -653,7 +654,7 @@ msgstr "Vyhlad"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikacyja"
@@ -669,20 +670,20 @@ msgstr ""
"servery."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Z adznačanymi:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Adznačyć usio"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -694,27 +695,27 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Ekspart"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Versija dla druku"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Ačyścić"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -740,13 +741,13 @@ msgstr "Analizavać tablicu"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -767,8 +768,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza dadzienych"
@@ -786,7 +787,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stan"
@@ -892,49 +893,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Dadać novaje pole"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Radki padzielenyja"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -944,15 +945,15 @@ msgstr ""
msgid "Add a linestring"
msgstr "Dadać abmiežavańni"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -977,8 +978,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -1004,8 +1005,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
-"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
+"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:373
@@ -1028,7 +1029,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s stvoranaja"
@@ -1056,7 +1057,7 @@ msgstr ""
"kali vy nie pavialičycie limity vykanańnia php-skryptoŭ."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1071,7 +1072,7 @@ msgstr "Nazad"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
@@ -1081,7 +1082,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
msgid "Do you really want to execute \"%s\"?"
msgstr "Ci sapraŭdy vy žadajecie "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
@@ -1186,23 +1187,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redagavać"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Vybar servera"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "Showing SQL query"
msgid "Live query chart"
@@ -1215,23 +1216,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ahułam"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1253,7 +1254,7 @@ msgstr "Vybar servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Pracesy"
@@ -1273,7 +1274,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Databases statistics"
msgid "Query statistics"
@@ -1324,14 +1325,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1393,32 +1394,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Atrymana"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Padłučeńni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1435,11 +1436,11 @@ msgstr "%s tablic(y)"
msgid "Questions"
msgstr "Suviazi"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1466,10 +1467,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nijakaja"
@@ -1569,7 +1570,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ"
msgid "Current settings"
msgstr "Mahčymaści asnoŭnych suviaziaŭ"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1659,9 +1660,9 @@ msgstr "Praanalizavać"
msgid "Explain output"
msgstr "Tłumačyć SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Čas"
@@ -1774,7 +1775,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Imrart"
@@ -1924,19 +1925,19 @@ msgstr "Dadać novaje pole"
msgid "Show indexes"
msgstr "Pakazać sietku"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Adklučyć pravierku źniešnich klučoŭ"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Uklučana"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -2021,7 +2022,7 @@ msgstr "U vyhladzie SQL-zapytu"
msgid "No rows selected"
msgstr "Nivodny radok nia vybrany"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Źmianić"
@@ -2030,17 +2031,18 @@ msgstr "Źmianić"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie źjaŭlajecca karektnym numaram radka."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Zachavać"
@@ -2071,178 +2073,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Pamier ukazalnika na dadzienyja"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignaravać"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Skapijavać"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dadać %s novyja pali"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Vybierycie spasyłkavy kluč"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Vybierycie źniešni kluč"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Vybierycie pole dla adlustravańnia"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Nazvy kalonak"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Pakazanyja zapisy"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Zgieneravać parol"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Zgieneravać"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Źmianić parol"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pan"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2250,31 +2244,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "Bazy dadzienych adsutničajuć"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nijakaja"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Papiaredniaja staronka"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2282,96 +2276,96 @@ msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Tra"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2379,78 +2373,78 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2458,115 +2452,115 @@ msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nijakaja"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2619,16 +2613,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "u sekundu"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "u chvilinu"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "u hadzinu"
@@ -2760,15 +2754,15 @@ msgstr ""
msgid "Databases"
msgstr "Bazy dadzienych"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2780,20 +2774,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ustavić"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Aperacyi"
@@ -2853,12 +2847,12 @@ msgstr "Karystalnik"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Dvajkovy łog"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Źmiennyja"
@@ -2875,8 +2869,9 @@ msgid "Engines"
msgstr "Mašyny"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Pamyłka"
@@ -3002,35 +2997,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Papiaredni prahlad niedastupny."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "hetaja"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s nia znojdzienaja!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nia znojdzieny šlach da temy %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3071,14 +3066,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3338,8 +3333,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -3449,7 +3444,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tablic"
@@ -3504,25 +3499,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3534,24 +3529,24 @@ msgstr ""
"Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym "
"kanfihuracyjnym fajle!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Niekarektny indeks servera: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie "
"kanfihurycyju."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
@@ -3586,8 +3581,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-zapyt"
@@ -3625,7 +3620,7 @@ msgid "Create PHP Code"
msgstr "Stvaryć PHP-kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Abnavić"
@@ -3648,43 +3643,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mašyny"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Prafilavańnie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ndz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Pracedury"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Pieršaja staronka"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3692,8 +3687,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Papiaredniaja staronka"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3701,55 +3696,55 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nastupnaja staronka"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Apošniaja staronka"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Pierajści da bazy dadzienych \"%s\"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Druk"
@@ -3933,9 +3928,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Skinuć"
@@ -4085,7 +4080,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4147,7 +4142,7 @@ msgstr "Prapanavanaja struktura tablicy"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5982,7 +5977,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6132,7 +6127,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6140,21 +6135,21 @@ msgid ""
"configured)."
msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server nie adkazvaje"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Padrabiaźniej..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6341,12 +6336,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -6563,54 +6558,59 @@ msgstr ""
msgid "Language"
msgstr "Mova"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Dadać/vydalić kalonku kryteru"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Kolkaść paloŭ"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Pan"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "haryzantalna"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "haryzantalna (paviernutyja zahałoŭki)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertykalna"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Vykanać zapyt z zakładak"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Prahlad"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sartavać pa klučy"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6628,101 +6628,101 @@ msgstr "Sartavać pa klučy"
msgid "Options"
msgstr "Nałady"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Častkovyja teksty"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Poŭnyja teksty"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Kluč suviazi"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Adlustravanaje pole suviazi"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Pieraŭtvareńnie MIME-typu braŭzeram"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Spynić"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "pa zapytu"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Pakazanyja zapisy"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "usiaho"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Zapyt vykonvaŭsia %01.4f sek"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Versija dla druku (z usim tekstam)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Pakazać PDF-schiemu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Stvaryć"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Suviaź nia znojdzienaja"
@@ -6770,7 +6770,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puł buferu"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stan InnoDB"
@@ -7069,8 +7069,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7223,12 +7223,12 @@ msgstr "Dastupnyja MIME-typy"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Chost"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Čas stvareńnia"
@@ -7441,8 +7441,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)."
@@ -7615,6 +7615,103 @@ msgstr "Režym sumiaščalnaści SQL"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcyja"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Schavać"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Dvajkovy"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Dvajkovyja dadzienyja — nie redagujucca"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "tečka web-servera dla zahruzki fajłaŭ"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Ustavić"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Pačać ustaŭku znoŭ z %s-ha radku"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "i paśla"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Ustavić jak novy radok"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Pierajści da papiaredniaj staronki"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Dadać jašče adzin radok"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Viarnucca da hetaj staronki"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Redagavać nastupny radok"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia "
+"abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Značeńnie"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "U vyhladzie SQL-zapytu"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ID ustaŭlenaha radku: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7627,38 +7724,38 @@ msgstr "Nijakaja"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Piat"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Adpravić"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Dadać novaje pole"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ci sapraŭdy vy žadajecie "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Niama źmienaŭ"
@@ -7666,11 +7763,6 @@ msgstr "Niama źmienaŭ"
msgid "Charset"
msgstr "Kadyroŭka"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Dvajkovy"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Baŭharskaja"
@@ -8001,18 +8093,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Źmiennaja"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Značeńnie"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID servera"
@@ -8372,11 +8456,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Pracedury"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcyja"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8746,7 +8825,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8756,11 +8835,11 @@ msgstr ""
msgid "Columns"
msgstr "Nazvy kalonak"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Dadać hety SQL-zapyt u zakładki"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
@@ -8784,10 +8863,6 @@ msgstr "Pakazać hety zapyt znoŭ"
msgid "View only"
msgstr "Tolki prahlad"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "tečka web-servera dla zahruzki fajłaŭ"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8860,8 +8935,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
-"%sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
+"sdakumentacyi%s."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -9003,12 +9078,6 @@ msgstr "Aperatar"
msgid "Table Search"
msgstr "Pošuk"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Ustavić"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9091,8 +9160,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
-"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
+"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -9283,7 +9352,7 @@ msgstr "Versija pratakołu"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Karystalnik"
@@ -9515,10 +9584,6 @@ msgstr "Schavać/pakazać usie tablicy"
msgid "Hide/Show Tables with no relation"
msgstr "Schavać/pakazać tablicy biaz suviaziaŭ"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Schavać"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Kolkaść tablic"
@@ -9739,17 +9804,17 @@ msgstr "Tablicy \"%s\" nie isnuje!"
msgid "Select binary log to view"
msgstr "Vyłučycie dvajkovy łog dla prahladu"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Fajły"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Abrazać pakazanyja zapyty"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Pakazać poŭnyja zapyty"
@@ -10206,8 +10271,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
@@ -10334,7 +10399,7 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Pakazać stan zaležnych serveraŭ"
@@ -10472,160 +10537,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Patok %s byŭ paśpiachova spynieny."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Apracoŭnik"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Keš zapytaŭ"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Patoki"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Časovyja dadzienyja"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Adkładzienyja ŭstaŭki"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Keš klučoŭ"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Ab'jadnańni"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sartavańnie"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Kaardynatar pierakładu"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Skinuć (zakryć) usie tablicy"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Pakazać zaležnyja servery"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Pakazać stan zaležnych serveraŭ"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Skinuć keš zapytaŭ"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Biahučaja infarmacyja"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Abnavić"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nie źmianiać parol"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Pakazać adkrytyja tablicy"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Suviazi"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Typ zapytu"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcyi"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10633,56 +10698,56 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Vyrazy"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10690,47 +10755,47 @@ msgstr ""
"Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu "
"statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Atrymana"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Adpraŭlena"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "maksymum adnačasovych złučeńniaŭ"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Niaŭdałych sprobaŭ"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Spyniena"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Kamanda"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10740,17 +10805,17 @@ msgstr ""
"jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł "
"dla zachoŭvańnia vyrazaŭ tranzakcyi."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
msgid ""
"The number of temporary tables on disk created automatically by the server "
"while executing statements. If Created_tmp_disk_tables is big, you may want "
@@ -10762,11 +10827,11 @@ msgstr ""
"pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ "
"pamiaci, a nie na dysku."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10774,7 +10839,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10782,7 +10847,7 @@ msgstr ""
"Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja "
"pamyłki (peŭna, dublavanyja klučy)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10791,23 +10856,23 @@ msgstr ""
"Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj "
"ułasny patok."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Kolkaść vykananych FLUSH-vyrazaŭ."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Kolkaść unutranych COMMIT-vyrazaŭ."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10817,7 +10882,7 @@ msgstr ""
"viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. "
"Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10828,7 +10893,7 @@ msgstr ""
"skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 "
"indeksavanaja."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10837,7 +10902,7 @@ msgstr ""
"vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra "
"indeksavanyja."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10847,7 +10912,7 @@ msgstr ""
"pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham "
"abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10855,7 +10920,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10868,7 +10933,7 @@ msgstr ""
"całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć "
"klučy."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10880,37 +10945,37 @@ msgstr ""
"aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja "
"tak, kab vykarystoŭvać pieravahi indeksaŭ."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo "
"niaźmienienych)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Kolkaść źmienienych staronak."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Kolkaść volnych staronak."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10920,7 +10985,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:1346
+#: server_status.php:1349
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 "
@@ -10933,11 +10998,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Ahulny pamier bufernaha pułu, u staronkach."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10946,7 +11011,7 @@ msgstr ""
"adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym "
"paradku."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10954,11 +11019,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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10966,7 +11031,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:1352
+#: server_status.php:1355
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 "
@@ -10980,55 +11045,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Ahulnaja kolkaść zapisaŭ dadzienych."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -11036,35 +11101,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Kolkaść zapisaŭ u łog."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Kolkaść stvoranych staronak."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -11073,54 +11138,54 @@ msgstr ""
"vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho "
"ŭ bajty."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Kolkaść pračytanych staronak."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Kolkaść zapisanych staronak."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11128,7 +11193,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:1385
+#: server_status.php:1388
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."
@@ -11136,7 +11201,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:1386
+#: server_status.php:1389
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 "
@@ -11146,17 +11211,17 @@ msgstr ""
"stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, "
"jakija vykarastoŭvalisia adnačasova."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Farmat impartavanaha fajła"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -11166,26 +11231,26 @@ msgstr ""
"vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść "
"promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11196,17 +11261,17 @@ msgstr ""
"Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ "
"zkampilavany."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11214,39 +11279,39 @@ msgstr ""
"Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, "
"značeńnie kešu tablic imavierna vielmi małoje."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Kolkaść adkrytych fajłaŭ."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Kolkaść adkrytych tablic."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Kolkaść zvarotaŭ da kešu."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11259,7 +11324,7 @@ msgstr ""
"vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać "
"z kešu."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11267,19 +11332,19 @@ msgstr ""
"Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za "
"značeńnia dyrektyvy query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11287,13 +11352,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11302,7 +11367,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11310,17 +11375,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11328,13 +11393,13 @@ msgstr ""
"Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi "
"paŭtaraŭ tranzakcyi."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11342,14 +11407,14 @@ msgstr ""
"Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla "
"stvareńnia."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11359,25 +11424,25 @@ msgstr ""
"hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia "
"systemnaj źmiennaj sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
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:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Kolkaść adsartavanych radkoŭ."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11389,7 +11454,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11399,11 +11464,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11415,68 +11480,68 @@ 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:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Keš klučoŭ"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Dadać novaje pole"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Abnavić"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dadać/vydalić kalonku kryteru"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11485,7 +11550,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11493,18 +11558,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11512,11 +11577,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11524,93 +11589,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Pierajmienavać bazu dadzienych u"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Vybierycie tablicu(y)"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Niekarektnaje imia tablicy"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "Dadać novaha karystalnika"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "Statystyka radku"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Vybrać usio"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Typ zapytu"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11619,7 +11684,7 @@ msgstr[0] "u sekundu"
msgstr[1] "u sekundu"
msgstr[2] "u sekundu"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11757,7 +11822,7 @@ msgstr "Značeńnie sesii"
msgid "Global value"
msgstr "Hlabalnaje značeńnie"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11821,39 +11886,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -12041,55 +12106,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Bazy dadzienych adsutničajuć"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Prahladzieć źniešnija značeńni"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ci sapraŭdy vy žadajecie "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ID ustaŭlenaha radku: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "U vyhladzie PHP-kodu"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "U vyhladzie SQL-zapytu"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pravieryć SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-vynik"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Stvorany"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Mietka"
@@ -12104,61 +12160,6 @@ msgstr "Tablica %1$s była paśpiachova źmienienaja"
msgid "The columns have been moved successfully."
msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Dvajkovyja dadzienyja — nie redagujucca"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Ustavić jak novy radok"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "i paśla"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Pierajści da papiaredniaj staronki"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Dadać jašče adzin radok"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Viarnucca da hetaj staronki"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Redagavać nastupny radok"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia "
-"abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Pačać ustaŭku znoŭ z %s-ha radku"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12804,34 +12805,40 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "pa zapytu"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Skinuć"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13204,8 +13211,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13340,8 +13347,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14211,9 +14218,6 @@ msgstr "maksymum adnačasovych złučeńniaŭ"
#~ msgid "No trigger with name %s found"
#~ msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
-#~ msgid "rows"
-#~ msgstr "Prahlad"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "radkoŭ, pačynajučy z zapisu #"
diff --git a/po/bg.po b/po/bg.po
index c541948d19..5fc3bd9679 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 20:44+0200\n"
"Last-Translator: Стоян Димитров \n"
"Language-Team: bulgarian \n"
-"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Показване на всички"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Показване на всички"
msgid "Page number:"
msgstr "Страница:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от "
"един прозорец в друг от съображения за сигурност."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Търсене"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Търсене"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Изпълнение"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Име на ключ"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Описание"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Използване тази стойност"
@@ -122,12 +122,12 @@ msgstr "Коментари към таблицата"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kолона"
@@ -136,6 +136,7 @@ msgstr "Kолона"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Kолона"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -153,12 +154,12 @@ msgstr "Тип"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Празно"
@@ -197,13 +198,13 @@ msgstr "Коментари"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Не"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Таблица"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Редове"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Превключване към %sвизуален строител%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Сортиране"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Възходящо"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Низходящо"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Показване"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Изтрий"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Или"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s съвпадение в таблица %2$s"
msgstr[1] "%1$s съвпадения в таблица %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Прелистване"
@@ -530,14 +531,14 @@ msgstr "Прелистване"
msgid "Delete the matches for the %s table?"
msgstr "Изтриване на съвпаденията от таблицата %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Изтриване"
@@ -605,11 +606,11 @@ msgstr "Проследяването е активно."
msgid "Tracking is not active."
msgstr "Проследяването е неактивно."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -619,7 +620,7 @@ msgstr "Изглед"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Репликация"
@@ -633,20 +634,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Когато има отметка:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Маркиране всички"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -658,27 +659,27 @@ msgstr "Маркиране на таблиците със загубено мя
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Експорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Преглед за печат"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Изчистване"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -704,11 +705,11 @@ msgstr "Анализиране на таблицата"
msgid "Add prefix to table"
msgstr "Добавяне представка към таблица"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Замяна на представката на таблица"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Копиране на таблицата с представка"
@@ -727,8 +728,8 @@ msgstr "Следени таблици"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "БД"
@@ -746,7 +747,7 @@ msgstr "Съвременен"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Състояние"
@@ -846,45 +847,45 @@ msgstr "Използване на OpenStreetMaps като основен сло
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Геометрия"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Точка"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Точка %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Добавяне на точка"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linestring"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Външен пръстен"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Вътрешен пръстен"
@@ -892,15 +893,15 @@ msgstr "Вътрешен пръстен"
msgid "Add a linestring"
msgstr "Добавяне LineString"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Добавяне вътрешен пръстен"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Многоъгълник"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Добавяне многоъгълник"
@@ -921,8 +922,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -973,7 +974,7 @@ msgstr ""
"Не могат да бъдат заредени разширенията за импорт, моля проверете "
"инсталацията!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Белязка %s беше създадена"
@@ -1001,7 +1002,7 @@ msgstr ""
"импорт, освен ако не бъдат увеличени времевите ограничения в PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1018,7 +1019,7 @@ msgstr ""
"phpMyAdmin е по-дружелюбен ако използвате браузър с поддържка на рамки"
"b>."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" заявката е забранена."
@@ -1027,7 +1028,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена."
msgid "Do you really want to execute \"%s\"?"
msgstr "Наистина ли искате да изпълните \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Вие ще УНИЩОЖИТЕ цяла БД!"
@@ -1113,21 +1114,21 @@ msgstr "Затваряне"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Редакция"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Диаграма на трафик в реално време"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Диаграма на връзки/процеси в реално време"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Диаграма на заявки в реално време"
@@ -1138,23 +1139,23 @@ msgstr "Статична информация"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Общо"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Друго"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1174,7 +1175,7 @@ msgstr "Сървър трафик (в KiB)"
msgid "Connections since last refresh"
msgstr "Връзки след последното опресняване"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процеси"
@@ -1192,7 +1193,7 @@ msgstr "Запитвания след последното опресняван
msgid "Questions (executed statements by the server)"
msgstr "Запитвания (изпълнени от сървъра заявки)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Статистика за заявките"
@@ -1237,14 +1238,14 @@ msgid "System swap"
msgstr "Системен swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1296,32 +1297,32 @@ msgstr "Байта изпратени"
msgid "Bytes received"
msgstr "Байта получени"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Връзки"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЕБ"
@@ -1335,11 +1336,11 @@ msgstr "%d таблица(и)"
msgid "Questions"
msgstr "Запитвания"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Настройки"
@@ -1360,10 +1361,10 @@ msgid "Please add at least one variable to the series"
msgstr "Моля добавете поне една променлива към сериите"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Няма"
@@ -1463,7 +1464,7 @@ msgstr "Промяна настройки"
msgid "Current settings"
msgstr "Текущи настройки"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Заглавие на диаграмата"
@@ -1545,9 +1546,9 @@ msgstr "Анализиране..."
msgid "Explain output"
msgstr "Обяснение на изхода"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Време"
@@ -1643,7 +1644,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Импорт"
@@ -1763,15 +1764,15 @@ msgstr "Скриване на индексите"
msgid "Show indexes"
msgstr "Показване на индексите"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Проверки на външен ключ:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Позволено)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Забрано)"
@@ -1838,7 +1839,7 @@ msgstr "Показване формата за заявки"
msgid "No rows selected"
msgstr "Няма върнати редове"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Промяна"
@@ -1847,17 +1848,18 @@ msgstr "Промяна"
msgid "Query execution time"
msgstr "Време за изпълнение на заявката"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d не е валиден номер на ред."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Зпазване"
@@ -1882,79 +1884,70 @@ msgid "Hovering over a point will show its label."
msgstr "Посочване на точка ще покаже етикета ѝ."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-"Използвайте колелцето на мишката, за да приближавате или отдалечавате екрана."
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Кликнете и влачете мишката за да навигирате по екрана."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Щракнете върху връзката за възстановяване на мащабирането, за да се върнете "
"в първоначално състояние."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Низовете са преобразувани в числа, за да бъдат изобразени"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Изберете две колони"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Изберете две различни колони"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Резултати от заявката"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Игнориране"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Копиране"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Добавяне колони"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Изберете посочвания ключ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Избор външен ключ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Изберете първичен или уникален ключ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Изберете колона за показване"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1962,15 +1955,15 @@ msgstr ""
"Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги "
"запазите. Искате ли да продължите?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Добавяне опция към колона "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Натиснете Esc за отмяна на редакцията"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1978,27 +1971,27 @@ msgstr ""
"Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете "
"страницата преди запазването им?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Завличане за промяна на подредбата"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Щракване за сортиране"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Щракване за маркиране/отмаркиране"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Щракнете двукратно за копиране името на колона"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Щракнете стрелката, за да изберете колони"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2007,47 +2000,47 @@ msgstr ""
"редакция, отметката, връзките редактиране, копиране и изтриване може да не "
"работят след запазване."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Можете също да редактирате повечето колони като щракнете директно върху "
"тяхното съдържание."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Към връзка"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Копиране името на колоната"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"С десния бутон върху името на колоната, за да го копирате в системния буфер."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Генериране парола"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генериране"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Смяна парола"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Още"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2057,266 +2050,266 @@ msgstr ""
"версия е %s, излязла на %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", актуална стабилна версия:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "актуално"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Готово"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Преден"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Днес"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "януари"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "февруари"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "март"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "април"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "май"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "юни"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "юли"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "август"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "септември"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "октомври"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "ноември"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "декември"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "яну"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "септ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "ное"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "дек"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "неделя"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "понеделник"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "вторник"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "сряда"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "четвъртък"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "петък"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "събота"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Сед"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "календар-месец-година"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "няма"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Час"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "минута"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "секунда"
@@ -2368,16 +2361,16 @@ msgstr "Неочаквани знаци на ред %s"
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr "Неочакван знак на ред %1$s. Очакван табулатор, но намерен \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "на секунда"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "на минута"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "на час"
@@ -2509,15 +2502,15 @@ msgstr ""
msgid "Databases"
msgstr "БД"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сървър"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2529,20 +2522,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вмъкване"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2600,12 +2593,12 @@ msgstr "Потребители"
msgid "Synchronize"
msgstr "Синхронизиране"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Двоичен дневник"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Променливи"
@@ -2622,8 +2615,9 @@ msgid "Engines"
msgstr "Хранилища"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
@@ -2735,35 +2729,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не открито изображение към тема %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Прегледът не е достъпен."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "тази ще е"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Темата по подразбиране %s не е намерена!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Тема %s не е намерена!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Не е открит път към тема %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Тема"
@@ -2804,14 +2798,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3069,8 +3063,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете."
@@ -3174,7 +3168,7 @@ msgstr "споделен"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Таблици"
@@ -3225,11 +3219,11 @@ msgstr "възможен пробив в сигурността"
msgid "numeric key detected"
msgstr "цифров ключ открит"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Неуспешно прочитане на конфигурацията"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3237,12 +3231,12 @@ msgstr ""
"Това обикновено означава, че има синтактична грешка в него, моля, проверете "
"всички грешки, показани по-долу."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Конфигурацията по подразбиране не може да бъде заредена от: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3250,21 +3244,21 @@ msgstr ""
"На [code]$cfg['PmaAbsoluteUri'][/code] ТРЯБВА да бъде зададена стойност в "
"конфигурационния файл!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Невалиден индекс на сървър: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Невалиден метод за удостоверяване в конфогурацията:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Осъвременете до %s %s или по-нова."
@@ -3299,8 +3293,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL заявка"
@@ -3338,7 +3332,7 @@ msgid "Create PHP Code"
msgstr "Създаване на PHP код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Опресняване"
@@ -3359,95 +3353,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "На място"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Профилиране"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%e %B %Y в %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дена, %s часа, %s минути и %s секунди"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Липсващ параметър:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Предна"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Следваща"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Последна"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Показване БД "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Функционалността %s се влияе от известен дефект, виж %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Щракване за превключване"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Разглеждане на компютъра:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Избор от директорията за качване %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Папката, която сте указали за качване е недостъпна"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Няма файлве за качване"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Изпълнение"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Печат"
@@ -3619,9 +3613,9 @@ msgstr "Стойност по подразбиране"
msgid "Allow users to customize this value"
msgstr "Позволение на потребители да променят стойността"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Изчистване"
@@ -3787,7 +3781,7 @@ msgid "Compress on the fly"
msgstr "Компресиране в движение"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Конфигурационен файл"
@@ -3847,7 +3841,7 @@ msgstr "Скриване на действията за промяна на ст
msgid "Show binary contents as HEX by default"
msgstr "Показване на двоичните данни по подразбиране в шестнадесетичен вид"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Показване на двоичните данни в шестнадесетичен вид"
@@ -5636,7 +5630,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Проверка за обновление"
@@ -5778,7 +5772,7 @@ msgstr "Разширението %s липсва. Проверете конфи
msgid "possible deep recursion attack"
msgstr "възможна атака чрез дълбока рекурсия"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5786,19 +5780,19 @@ msgstr ""
"Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран "
"правилно)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Сървърът не отговаря."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Проверете правата на папката, съдържаща БД."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Подробности..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5961,8 +5955,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6140,48 +6134,53 @@ msgstr "Специфични настройки:"
msgid "Language"
msgstr "Език"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Съхраняване на редактираните данни"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Възстановяване на подредбата на колоните"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Начален ред"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Брой редове"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Режим"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "хоризонтален"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "хоризонтален (обърнати хедъри)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикален"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Заглавки всеки %s реда"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "реда"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Сортиране по ключ"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6199,89 +6198,89 @@ msgstr "Сортиране по ключ"
msgid "Options"
msgstr "Настройки"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Частични текстове"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Пълни текстове"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Показване на двоичните данни"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Показване на BLOB-данните"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Без трансформация от браузъра"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Добре познат текст"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Добре позната двоична стойност"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Редът беше изтрит"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Спиране"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "в зявката"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Показване на записи"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "общо"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Заявката отне %01.4f секунди"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Операции с резултата от заявката"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Преглед за печат (с пълните текстове)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Диаграма"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Визуализиране на GIS данни"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Създаване на изглед"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Връзките не са намерени"
@@ -6325,7 +6324,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Състояние"
@@ -6576,8 +6575,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6699,12 +6698,12 @@ msgstr "Показване MIME типове"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Време на генериране"
@@ -6904,8 +6903,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
@@ -7067,6 +7066,98 @@ msgstr "Режим на съвместимост на SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функция"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Скриване"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "двоичен"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Поради дължината си, това поле може да е нередактируемо"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Двоично - не се редактира"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "директорията за upload на web сървъра"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Редакция/Вмъкване"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "и след това"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Вмъкване като нов ред"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Показване заявка за вмъкване"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Обратно към предната страница"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Вмъкване нов ред"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Връщане към тази страница"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Редакция на следващия ред"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност "
+"или CTRL+стрелка, за да премествате курсора в съответната посока"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Стойност"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7077,32 +7168,32 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "От"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Изпълнение"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Добавяне на представка на таблица"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Добавяне на представка"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Наистина ли искате да изпълните следната заявка?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Няма промяна"
@@ -7110,11 +7201,6 @@ msgstr "Няма промяна"
msgid "Charset"
msgstr "Знаков набор"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "двоичен"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Български"
@@ -7442,18 +7528,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Променлива"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Стойност"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Сървър идентификатор"
@@ -7777,11 +7855,6 @@ msgstr "Изпълнение на процедура"
msgid "Routine parameters"
msgstr "Параметри на процедурата"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функция"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Съжаляваме, но възстановяването на изтрития тригер е неуспешно."
@@ -8103,7 +8176,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изпълнение на SQL заявка/заявки към БД %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Изчистване"
@@ -8111,11 +8184,11 @@ msgstr "Изчистване"
msgid "Columns"
msgstr "Колони"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Отбелязване SQL заявката"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Всеки потребител да има достъп до тази белязка"
@@ -8139,10 +8212,6 @@ msgstr "Показване на заявката отново"
msgid "View only"
msgstr "Само показване"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "директорията за upload на web сървъра"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8213,8 +8282,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
-"%s."
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
+"s."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -8341,10 +8410,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Търсене в таблица"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Редакция/Вмъкване"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8550,7 +8615,7 @@ msgstr "Версия на протокола"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Потребител"
@@ -8759,10 +8824,6 @@ msgstr "Показване/скриване всички"
msgid "Hide/Show Tables with no relation"
msgstr "Показване/скриване таблици без релации"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Скриване"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Брой таблици"
@@ -8922,8 +8983,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
-"%sскрипта за настройки%s."
+"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
+"sскрипта за настройки%s."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -8963,17 +9024,17 @@ msgstr "Файлът не съществува"
msgid "Select binary log to view"
msgstr "Изберете двоичен дневник за преглед"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файлове"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Съкращаване на показаните заявки"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Показване на пълните заявки"
@@ -9414,8 +9475,8 @@ msgstr "Изтриване на БД, които имат имена като т
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@@ -9536,7 +9597,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9675,146 +9736,146 @@ msgstr ""
"Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Нишка %s беше успешно спряна."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Буфер за заявки"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Нишки"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Временни данни"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Забавени вмъквания"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Буфер за ключове"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Сортиране"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Координатор на транзакциите"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Показване на отворените теблици"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Изчистване на буфера за заявки"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Информация за състоянието на MySQL сървъра"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Всички променливи на състоянието"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Наблюдател"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Съветник"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Скорост на опресняване: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Филтри"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Съдържащ думата:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Само тревожни стойности"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Филтър по категория..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Неформатирани стойности"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Пускане анализатор"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Инструкции"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9822,89 +9883,89 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Запитвания от включването: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Заявление"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "№"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Мрежови трафик от включването: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Този MySQL сървър работи от %1$s. Включен е на %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Състояние на репликацията"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Получени"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Изпратени"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "максимален брой едновременни връзки"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Неуспешни опити"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Прекъснати"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Команда"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9912,27 +9973,27 @@ msgstr ""
"Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори "
"правилно връзките."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Броят неуспешни опити за връзка към MySQL сървъра."
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9940,78 +10001,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Броят създадени от mysqld временни файлове."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Броят вмъкнати посредством INSERT DELAYED редове."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10019,7 +10080,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10027,42 +10088,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Брой заявки за обновяване на ред в таблица."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Брой заявки за вмъкване на ред в таблица."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10070,33 +10131,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10105,195 +10166,195 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Броят на заявки за запис в дневника."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Броят изтрити редове от InnoDB таблици."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Броят вмъкнати редове в InnoDB таблици."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Броят прочетени редове от InnoDB таблици."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Броят обновени редове в InnoDB таблици."
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10301,48 +10362,48 @@ msgstr ""
"Максималният брой едновременно използвани връзки от като е стартиран "
"сървърът."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Броят отворени файлове."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Броят отворени потоци (използва се главно за дневници)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Броят отворени таблици."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Количеството свободна памет за буфер за заявки."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Броят попадения в кеш."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Броят заявки добавени към буфера."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10350,99 +10411,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Броят заявки регистрирани в буфера."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Общият брой блокове в буфера за заявки."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Брой временни таблици отворени от подчинена SQL нишка."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Броят сортирани редове."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10450,18 +10511,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Брой текущо отворени връзки."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10469,61 +10530,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Броят на нишките, които не са спящи."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Включване на Наблюдателя"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Добавяне диаграма"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Скорост на опресняване"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Стойност по подразбиране"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Инструкции на наблюдателя"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10537,7 +10598,7 @@ msgstr ""
"general_log. Отбележете обаче, че general_log генерира много данни и "
"натоварването на сървъра се увеличава с до 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10545,18 +10606,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Използване наблюдател:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10564,11 +10625,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10576,86 +10637,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Променливи(а) на състоянието"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Избор на серии:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "или въведете променлива:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Прилагане на разделител"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Статистика на дневника"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Анализатор заявки"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d секунда"
msgstr[1] "%d секунди"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10789,7 +10850,7 @@ msgstr "Сесийна стойност"
msgid "Global value"
msgstr "Глобална стойност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Изтегляне"
@@ -10851,39 +10912,39 @@ msgstr ""
msgid "New server"
msgstr "Нов сървър"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Език по подразбиране"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "нека потребитлят избере"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- никой -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Сървър по подразбиране"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Край на ред"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Показване"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Зареждане"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin страница"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Дарение"
@@ -11071,51 +11132,42 @@ msgstr "Ключът трябва да съдържа букви, цифри [em
msgid "Wrong data"
msgstr "Грешни данни"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Разглеждане на външни стойности"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Наистина ли искате да изпълните следната заявка?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Показване като PHP-код"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Валидиран SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL резултат"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Генерирано от"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Етикет"
@@ -11128,58 +11180,6 @@ msgstr "Таблицата %1$s беше променена"
msgid "The columns have been moved successfully."
msgstr "Колоните бяха преместени упешно."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Поради дължината си, това поле може да е нередактируемо"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Двоично - не се редактира"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Вмъкване като нов ред"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Показване заявка за вмъкване"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "и след това"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Обратно към предната страница"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Вмъкване нов ред"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Връщане към тази страница"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Редакция на следващия ред"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност "
-"или CTRL+стрелка, за да премествате курсора в съответната посока"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11766,32 +11766,38 @@ msgstr "Проследяване следните изрази за манипу
msgid "Create version"
msgstr "Създаване на версия"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Изпълняване \"заявка по шаблон\" (знак за заместване: \"%\") за две различни "
"колони"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Допълнителен критерий за търсене"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Използване колоната като етикет за всяка точка"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Максимален брой редове за изчертаване"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Прелистване/Редакция точки"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Как да бъде използвано"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Изчистване"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Още теми!"
@@ -12129,8 +12135,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12249,8 +12255,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -12479,8 +12485,8 @@ msgstr ""
msgid ""
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
msgstr ""
-"Максимално използван %% от буфера за ключове на MyISAM използван някога: %s"
-"%%, стойността трябва да е над 95%%"
+"Максимално използван %% от буфера за ключове на MyISAM използван някога: %s%"
+"%, стойността трябва да е над 95%%"
#: libraries/advisory_rules.txt:304
msgid "Percentage of MyISAM key buffer used"
@@ -12889,6 +12895,17 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert e 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Използвайте колелцето на мишката, за да приближавате или отдалечавате "
+#~ "екрана."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Кликнете и влачете мишката за да навигирате по екрана."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Низовете са преобразувани в числа, за да бъдат изобразени"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13092,9 +13109,6 @@ msgstr "concurrent_insert e 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Не открит тригер %s"
-#~ msgid "rows"
-#~ msgstr "реда"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "ред(а) започвайки от №"
diff --git a/po/bn.po b/po/bn.po
index 26e2e67096..739180e251 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-27 16:56+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: bangla \n"
-"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "সবগুলো দেখাও"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "সবগুলো দেখাও"
msgid "Page number:"
msgstr "পাতার সংখ্যাঃ"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে "
"দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "খুঁজুন"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "খুঁজুন"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "যাও"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Keyname"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "বর্ণনা"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "এই মান ব্যাবহার করুন"
@@ -122,12 +122,12 @@ msgstr "টেবিলের মন্তব্য সমূহ"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "কলামের"
@@ -136,6 +136,7 @@ msgstr "কলামের"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "কলামের"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "ধরন"
@@ -153,12 +154,12 @@ msgstr "ধরন"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "খালি"
@@ -197,13 +198,13 @@ msgstr "মন্তব্যসমূহ"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "না"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "টেবিল"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rows"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%sদৃষ্টিলব্ধ নির্মাতা%s পরিবর্তন করুন"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "সাজাঁন"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "দেখান"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "অথবা"
@@ -524,8 +525,8 @@ msgstr[0] "%s ভিতরের টেবিলটি মানানসই
msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "ব্রাউজ করুন"
@@ -534,14 +535,14 @@ msgstr "ব্রাউজ করুন"
msgid "Delete the matches for the %s table?"
msgstr "%s মানানসই টেবিলটি মুছে দেবেন?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "মুছে ফেল"
@@ -609,11 +610,11 @@ msgstr "ট্র্যাকিং সক্রিয়।"
msgid "Tracking is not active."
msgstr "ট্র্যাকিং সক্রিয় নয়।"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -623,7 +624,7 @@ msgstr "View"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replication"
@@ -637,20 +638,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "সব পরীক্ষা করুন"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -662,27 +663,27 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "খালি"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -708,11 +709,11 @@ msgstr "টেবিল বিশ্লেষণ কর"
msgid "Add prefix to table"
msgstr "টেবিলে উপসর্গ যোগ করুন"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "টেবিল উপসর্গ প্রতিস্থাপন"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "উপসর্গ সহ টেবিলটি অনুলিপি করুন"
@@ -731,8 +732,8 @@ msgstr "টেবিলগুলি ট্রাক করা"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "ডাটাবেজ"
@@ -750,7 +751,7 @@ msgstr "আপডেটেড"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "অবস্থা"
@@ -848,45 +849,45 @@ msgstr "বেজ লেয়ার হিসাবে OpenStreetMaps ব্য
msgid "SRID"
msgstr "এসআরআইডি"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "জ্যামিতি"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "পয়েন্ট"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "এক্স"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "ওয়াই"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "পয়েন্ট %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "একটি পয়েন্ট যোগ কর"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "লাইনস্ট্র্রিং"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "আউটার রিং"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "ইনার রিং"
@@ -894,15 +895,15 @@ msgstr "ইনার রিং"
msgid "Add a linestring"
msgstr "একটি লাইনস্ট্রিং যোগ করুন"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "একটি ইনার রিং যোগ করুন"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "পলিগন"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "একটি পলিগন যোগ করুন"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -969,7 +970,7 @@ msgstr "অক্ষর সেট রূপান্তর গ্রন্থা
msgid "Could not load import plugins, please check your installation!"
msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
@@ -992,7 +993,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1007,7 +1008,7 @@ msgstr "পিছনে"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1017,7 +1018,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr "আপনি কি সত্যি চান?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
@@ -1103,21 +1104,21 @@ msgstr "বন্ধ"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "সম্পাদনা কর"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "সরাসরি ট্রাফিক লেখচিত্র"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "সংযোগ/প্রক্রিয়া লেখচিত্র সরাসরি"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "কুয়েরী লেখচিত্র সরাসরি"
@@ -1128,23 +1129,23 @@ msgstr "স্থিসি উপাত্ত"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "মোট"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "স্থিতি উপাত্ত"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1164,7 +1165,7 @@ msgstr "সার্ভার ট্রাফিক (in KiB)"
msgid "Connections since last refresh"
msgstr "গত রিফ্রেস থেকে সংযোগসমূহ"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processes"
@@ -1182,7 +1183,7 @@ msgstr "গত রিফ্রেস থেকে প্রশ্নসমূহ
msgid "Questions (executed statements by the server)"
msgstr "প্রশ্নসমূহ (সার্ভারের দ্বারা সঞ্চালিত বিবৃতি)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "কুয়েরী পরিসংখ্যান"
@@ -1226,14 +1227,14 @@ msgid "System swap"
msgstr "সিস্টেম বিনিময়"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "মেগাবাইট"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "কিলোবাইট"
@@ -1285,32 +1286,32 @@ msgstr "পাঠনো বাইটস"
msgid "Bytes received"
msgstr "গৃহীত বাইটস"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "সংযোগসমূহ"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "বাইট"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "গিগাবাইট"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "টেরাবাইট"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "পেটাবাইট"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "এক্সাবাইট"
@@ -1324,11 +1325,11 @@ msgstr "%d টেবিল(সমূহ)"
msgid "Questions"
msgstr "প্রশ্ন"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "সেটিংস"
@@ -1349,10 +1350,10 @@ msgid "Please add at least one variable to the series"
msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "কোনটিই নয়"
@@ -1452,7 +1453,7 @@ msgstr "General relation features"
msgid "Current settings"
msgstr "General relation features"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1538,9 +1539,9 @@ msgstr ""
msgid "Explain output"
msgstr "SQL ব্যাখ্যা কর"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "সময়"
@@ -1650,7 +1651,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "ইম্পোর্ট কর"
@@ -1797,19 +1798,19 @@ msgstr "ইন্ডেস্ক সমূহ"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Disable foreign key checks"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Enabled"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1888,7 +1889,7 @@ msgstr "SQL query"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Change"
@@ -1897,17 +1898,18 @@ msgstr "Change"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "সেভ করুন"
@@ -1936,179 +1938,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Add/Delete Field Columns"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Query results operations"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Data pointer size"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s ক্ষেত্রসমূহ যোগ কর"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "কোন ডাটাবেজ নাই"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "কলামের নাম"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Start"
msgid "Show data row(s)"
msgstr "শনিবার"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "পাসওয়ার্ড তৈরী কর"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "তৈরী কর"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "পাসওয়ার্ড পরিবর্তন কর"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "সোমবার"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2116,30 +2110,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Server version"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "কোন ডাটাবেজ নাই"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "ডাটা"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "পূর্ববর্তী"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2147,96 +2141,96 @@ msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "মোট"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "বাইনারী"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "মে"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "জুন"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "আগস্ট"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2244,78 +2238,78 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "ডিসেম্বর"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2323,113 +2317,113 @@ msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "শনিবার"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "রবিবার"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "সোমবার"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "মঙ্গলবার"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "বুধবার"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "বৃহস্পতিবার"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "শুক্রবার"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "শনিবার"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "কোনটিই নয়"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2482,16 +2476,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per second"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minute"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per hour"
@@ -2618,15 +2612,15 @@ msgstr ""
msgid "Databases"
msgstr "ডাটাবেজসমূহ Databases"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "সার্ভার"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2638,20 +2632,20 @@ msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insert"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operations"
@@ -2712,12 +2706,12 @@ msgstr "User"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "বাইনারী লগ"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "চলকসমূহ"
@@ -2734,8 +2728,9 @@ msgid "Engines"
msgstr "ইঞ্জিনসমূহ"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "ভূল"
@@ -2858,35 +2853,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "take it"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2927,14 +2922,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3192,8 +3187,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -3297,7 +3292,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "টেবিলসমূহ"
@@ -3351,46 +3346,46 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Invalid server index: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3425,8 +3420,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL query"
@@ -3464,7 +3459,7 @@ msgid "Create PHP Code"
msgstr "PHP কোড তৈরী করুনCreate PHP Code"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Refresh"
@@ -3487,41 +3482,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ইঞ্জিনসমূহ"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "রবিবার"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "শুরু"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3529,8 +3524,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "পূর্ববর্তী"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3538,53 +3533,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "পরবর্তী"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "প্রিন্ট কর"
@@ -3768,9 +3763,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "রিসেট করুন"
@@ -3920,7 +3915,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3984,7 +3979,7 @@ msgstr "ব্যাবহারকারীর জন্য ডাটাবে
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5853,7 +5848,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5991,7 +5986,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5999,21 +5994,21 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "The server is not responding"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6202,12 +6197,12 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6415,57 +6410,62 @@ msgstr ""
msgid "Language"
msgstr "ভাষা"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Data home directory"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Add/Delete Field Columns"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "শনিবার"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Number of fields"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "সোমবার"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "আনুভূমিক"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "লম্ব"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Execute bookmarked query"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "ব্রাউজ করুন"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6484,101 +6484,101 @@ msgstr "Sort by key"
msgid "Options"
msgstr "Operations"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relational schema"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "মোট"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Display PDF schema"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Server version"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "লিংক পাওয়া যায়নি"
@@ -6622,7 +6622,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6875,8 +6875,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7031,12 +7031,12 @@ msgstr "Available MIME types"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "হোষ্ট"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "তৈরী করার জন্য সময়"
@@ -7248,8 +7248,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7419,6 +7419,101 @@ msgstr "SQL compatibility mode"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "ফাংশন"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "বাইনারী"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Because of its length, this field might not be editable "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "বাইনারী -সম্পাদনা করবেন না"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Insert"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "এবং তারপর"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "পূর্বের পাতায় ফিরে যাও"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "নতুন আরেকটি সাড়ি যোগ করুন"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "এই পাতায় ফিরে যাও"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "পরবর্তী সাড়ি সম্পাদনা করুন"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "মান"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+#, fuzzy
+msgid "Showing SQL query"
+msgstr "Show Full Queries"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7431,36 +7526,36 @@ msgstr "কোনটিই নয়"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "শুক্রবার"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submit"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "আপনি কি সত্যি চান?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "No change"
@@ -7468,11 +7563,6 @@ msgstr "No change"
msgid "Charset"
msgstr "Charset"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "বাইনারী"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "বুলগেরিয়ান"
@@ -7804,18 +7894,10 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "চলক"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "মান"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "সার্ভারের আইডি"
@@ -8164,11 +8246,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "ফাংশন"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8535,7 +8612,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "ক্যালেন্ডার"
@@ -8546,11 +8623,11 @@ msgstr "ক্যালেন্ডার"
msgid "Columns"
msgstr "কলামের নাম"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "এই SQL query টি বুকমার্ক করুন"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
@@ -8574,10 +8651,6 @@ msgstr ""
msgid "View only"
msgstr "শুধু দেখ"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8773,12 +8846,6 @@ msgstr "অপারেটর"
msgid "Table Search"
msgstr "খুঁজুন"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Insert"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9032,7 +9099,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "User"
@@ -9252,10 +9319,6 @@ msgstr "Show all"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
#, fuzzy
msgid "Number of tables"
@@ -9478,18 +9541,18 @@ msgstr "The \"%s\" table doesn't exist!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "ক্ষেত্রসমূহ"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9932,8 +9995,8 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -10057,7 +10120,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -10198,161 +10261,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Threads"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "সাজাঁন"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Refresh"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "ক্ষেত্রসমূহ"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Do not change the password"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Show open tables"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Query type"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "ফাংশনসমূহ"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10360,119 +10423,119 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "This MySQL server has been running for %s. It started up on %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Replication"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "গৃহীত"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Sent"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "বাদ দেওয়া হল"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "আইডি"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "নির্দেশ"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10480,78 +10543,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10559,7 +10622,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10567,42 +10630,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10610,33 +10673,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10645,248 +10708,248 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10894,99 +10957,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10994,18 +11057,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11013,70 +11076,70 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Key cache"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "শনিবার"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s ক্ষেত্রসমূহ যোগ কর"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Refresh"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Add/Delete Field Columns"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11085,7 +11148,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11093,18 +11156,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11112,11 +11175,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11124,92 +11187,92 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "ডাটাবেজ রিনেম কর"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "টেবিল সিলেক্ট করুন"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Invalid table name"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL query"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Row Statistics"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "সব সিলেক্ট করুন"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Query type"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11217,7 +11280,7 @@ msgid_plural "%d seconds"
msgstr[0] "per second"
msgstr[1] "per second"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11354,7 +11417,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11418,41 +11481,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "লোকাল"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin documentation"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "ডাটা"
@@ -11643,56 +11706,46 @@ msgstr ""
msgid "Wrong data"
msgstr "কোন ডাটাবেজ নাই"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "আপনি কি সত্যি চান?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-#, fuzzy
-msgid "Showing SQL query"
-msgstr "Show Full Queries"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL result"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "লেবেল"
@@ -11706,58 +11759,6 @@ msgstr "The selected users have been deleted successfully."
msgid "The columns have been moved successfully."
msgstr "The selected users have been deleted successfully."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Because of its length, this field might not be editable "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "বাইনারী -সম্পাদনা করবেন না"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "এবং তারপর"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "পূর্বের পাতায় ফিরে যাও"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "নতুন আরেকটি সাড়ি যোগ করুন"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "এই পাতায় ফিরে যাও"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "পরবর্তী সাড়ি সম্পাদনা করুন"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12401,34 +12402,40 @@ msgstr ""
msgid "Create version"
msgstr "Server version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL query"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "PHP Version"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "রিসেট করুন"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12795,8 +12802,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12930,8 +12937,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13777,9 +13784,6 @@ msgstr "max. concurrent connections"
#~ msgid "No trigger with name %s found"
#~ msgstr "No valid image path for theme %s found!"
-#~ msgid "rows"
-#~ msgstr "ব্রাউজ করুন"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "row(s) starting from record #"
diff --git a/po/br.po b/po/br.po
index d404c44bf1..8cffbdb6aa 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,24 +7,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 14:55+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: LANGUAGE \n"
-"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Diskouez pep tra"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,7 +32,7 @@ msgstr "Diskouez pep tra"
msgid "Page number:"
msgstr "Pajenn niv. : "
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -42,21 +42,22 @@ msgstr ""
"serret ar prenestr orin ganeoc'h pe stanket eo an hizivadurioù etre "
"prenestroù gant ho merdeer evit abegoù surentez."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Klask"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -72,28 +73,27 @@ msgstr "Klask"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Mont"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Anv ar meneger"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Deskrivadur"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Ober gant an talvoud-mañ"
@@ -126,12 +126,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Bann"
@@ -140,6 +140,7 @@ msgstr "Bann"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -147,9 +148,9 @@ msgstr "Bann"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Seurt"
@@ -157,12 +158,12 @@ msgstr "Seurt"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -201,13 +202,13 @@ msgstr "Evezhiadennoù"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,19 +219,19 @@ msgstr "Ket"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -363,7 +364,7 @@ msgstr "Taolenn"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Linennoù"
@@ -414,28 +415,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Cheñch evit ar %ssavour gwelet%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Urzhiañ"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "War gresk"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "War zigresk"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Diskouez"
@@ -456,8 +457,8 @@ msgid "Del"
msgstr "Diverk."
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Pe"
@@ -528,8 +529,8 @@ msgstr[0] "%s glotadenn en daolenn %s"
msgstr[1] "%s klotadenn en daolenn %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Furchal"
@@ -538,14 +539,14 @@ msgstr "Furchal"
msgid "Delete the matches for the %s table?"
msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Diverkañ"
@@ -613,14 +614,14 @@ msgstr "Oberiant eo an heuliañ."
msgid "Tracking is not active."
msgstr "N'eo ket oberiant an heuliañ."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
-"%steulioù titouriñ%s."
+"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
+"steulioù titouriñ%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -629,7 +630,7 @@ msgstr "Gwelet"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Eilañ"
@@ -643,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Evit ar re zo diuzet :"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Askañ pep tra"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -668,27 +669,27 @@ msgstr "Askañ an taolennoù gant dilerc'hioù"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Ezporzhiañ"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Stumm da voullañ"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Goullonderiñ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -714,11 +715,11 @@ msgstr "Dielfennañ an daolenn"
msgid "Add prefix to table"
msgstr "Ouzhpennañ ur rakger d'an daolenn"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Erlec'hiañ rakger an daolenn"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Eilañ an daolenn enni ur rakger"
@@ -737,8 +738,8 @@ msgstr "Taolennoù heuliet-pizh"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Diaz roadennoù"
@@ -756,7 +757,7 @@ msgstr "Hizivaet"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Statud"
@@ -856,45 +857,45 @@ msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Mentoniezh"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Poent"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Poent %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Ouzhpennañ ur poent"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Aradennad linennoù"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Kelc'h diavaez"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Kelc'h diabarzh"
@@ -902,15 +903,15 @@ msgstr "Kelc'h diabarzh"
msgid "Add a linestring"
msgstr "Ouzhpennañ un aradennad linennoù"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Ouzhpennañ ur c'helc'h diabarzh"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Lieskorneg"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Ouzhpennañ ul lieskorneg"
@@ -933,11 +934,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
-"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
+"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
+"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -983,7 +984,7 @@ msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ"
msgid "Could not load import plugins, please check your installation!"
msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Krouet eo bet ar sined %s"
@@ -1011,7 +1012,7 @@ msgstr ""
"ne vez ket kresket ganeoc'h bevenn amzer PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1027,7 +1028,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
@@ -1037,7 +1038,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
msgid "Do you really want to execute \"%s\"?"
msgstr "Ha sur oc'h e fell deoc'h "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !"
@@ -1128,21 +1129,21 @@ msgstr "Serriñ"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Kemmañ"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Grafik an tremenerezh evel m'emañ diouzhtu"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Grafik ar rekedoù evel m'emaint diouzhtu"
@@ -1153,23 +1154,23 @@ msgstr "Roadennoù stadegel"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Hollad"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Udb all"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1189,7 +1190,7 @@ msgstr "Tremenerezh war ar servijer (e Kio)"
msgid "Connections since last refresh"
msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Argerzhioù"
@@ -1207,7 +1208,7 @@ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ"
msgid "Questions (executed statements by the server)"
msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Stadegoù war ar rekedoù"
@@ -1248,14 +1249,14 @@ msgid "System swap"
msgstr "Takad eskemm reizhiad (swap)"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "Kio"
@@ -1307,32 +1308,32 @@ msgstr "Oktedoù kaset"
msgid "Bytes received"
msgstr "Oktedoù resevet"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Kevreadennoù"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "o"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "Gio"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "Tio"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "Pio"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "Eio"
@@ -1348,11 +1349,11 @@ msgstr "%s daolenn"
msgid "Questions"
msgstr "Goulennoù"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tremenerezh"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Arventennoù"
@@ -1373,10 +1374,10 @@ msgid "Please add at least one variable to the series"
msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Hini"
@@ -1476,7 +1477,7 @@ msgstr "Kemmañ an arventennoù"
msgid "Current settings"
msgstr "Arventennoù zo bremañ"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Titl ar grafik"
@@ -1563,9 +1564,9 @@ msgstr "O tilesa..."
msgid "Explain output"
msgstr "Displegañ SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1669,7 +1670,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Enporzhiañ"
@@ -1799,19 +1800,19 @@ msgstr "Kuzhat menegerioù"
msgid "Show indexes"
msgstr "Diskouez menegerioù"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enable %s"
msgid "(Enabled)"
msgstr "Gweredekaat %s"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1886,7 +1887,7 @@ msgstr "Diskouez ar voest rekedoù SQL"
msgid "No rows selected"
msgstr "N'eus bet diuzet linenn ebet"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Kemmañ"
@@ -1897,17 +1898,18 @@ msgstr "Kemmañ"
msgid "Query execution time"
msgstr "Pad seveniñ hirañ"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Enrollañ"
@@ -1934,81 +1936,73 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "Ouzhpennañ/Diverkañ bannoù"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Hide search results"
msgid "Query results"
msgstr "Kuzhat disoc'hoù an enklask"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Na ober van"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Add columns"
msgstr "Ouzhpennañ/Diverkañ bannoù"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Diuzit an alc'hwez daveet"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Diuzit an alc'hwez estren"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Dibab ar bann da ziskouez"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -2016,86 +2010,86 @@ msgstr ""
"N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint "
"ma n'o enrollit ket. Kenderc'hel memes tra ?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Ouzhpennañ un dibarzh evit ar bann "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Sort"
msgid "Show data row(s)"
msgstr "Urzhiañ"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Genel ur ger-tremen"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genel"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Cheñch ger-tremen"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Muioc'h"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2105,27 +2099,27 @@ msgstr ""
"hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", stumm stabil diwezhañ"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "hizivaet"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Graet"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Kent"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2133,149 +2127,149 @@ msgid "Next"
msgstr "War-lerc'h"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hiziv"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Genver"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "C'hwevrer"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Meurzh"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Ebrel"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mae"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Mezheven"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Gouere"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Eost"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Gwengolo"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Here"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Du"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Kerzu"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "C'hwe"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Meu"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mae"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Mezh"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Goue"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Eost"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Gwen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Here"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Du"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Kzu"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Sul"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Meurzh"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Merc'her"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Yaou"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Gwener"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sadorn"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2283,97 +2277,97 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Meu"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Yaou"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "L"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Mz"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Mc"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Y"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "G"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sizh."
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Hini"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Eur"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Munut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Eilenn"
@@ -2424,16 +2418,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2566,15 +2560,15 @@ msgstr ""
msgid "Databases"
msgstr "Diazoù roadennoù"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servijer"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2586,20 +2580,20 @@ msgid "Structure"
msgstr "Framm"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ensoc'hañ"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Oberiadennoù"
@@ -2657,12 +2651,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2679,8 +2673,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fazi"
@@ -2794,35 +2789,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "N'haller ket rakwelet."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "tapit-eñ"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "N'eo ket bet kavet an tem dre ziouer %s !"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "N'eo ket bet kavet an tem %s !"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "N'eo ket bet kavet an hent evit an tem %s !"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tem"
@@ -2863,14 +2858,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3128,11 +3123,11 @@ msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
-"%1$sskript kefluniañ%2$s da sevel unan."
+"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
+"1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3239,7 +3234,7 @@ msgstr "kenrannet"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Taolennoù"
@@ -3290,11 +3285,11 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Dibosupl lenn ar restr keluniañ"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3302,12 +3297,12 @@ msgstr ""
"Peurliesañ e talvez ez eus ur fazi ereadurezh enni. Gwiriit ha n'eus ket ur "
"fazi o tont war wel a-is."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "N'eus ket bet gallet kargañ ar c'hefluniadur dre ziouer adalek %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3319,21 +3314,21 @@ msgstr ""
"RET eo d'an arventenn $cfg['PmaAbsoluteUri'] bezañ resisaet er "
"restr kefluniañ!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Meneger servijer faziek : %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh."
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
@@ -3368,8 +3363,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Reked SQL"
@@ -3407,7 +3402,7 @@ msgid "Create PHP Code"
msgstr "Krouiñ kod PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Freskaat"
@@ -3428,41 +3423,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Enlinenn"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "O profilañ"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y da %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s deiz, %s eur, %s munut ha %s eilenn"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Kregiñ"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3470,8 +3465,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Kent"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3479,52 +3474,52 @@ msgctxt "Next page"
msgid "Next"
msgstr "War-lerc'h"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Mont d'an diaz roadennoù "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klikañ evit gwintañ"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Furchal en hoc'h urzhiataer"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet."
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "N'eus restr ebet da enporzhiañ"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Seveniñ"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Moullañ"
@@ -3697,9 +3692,9 @@ msgstr "Adlakaat an talvoud dre ziouer"
msgid "Allow users to customize this value"
msgstr "Aotren an implijerien da bersonelaat an talvoud-mañ"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Adderaouekaat"
@@ -3864,7 +3859,7 @@ msgid "Compress on the fly"
msgstr "Gwaskañ war ar prim"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Restr gefluniañ"
@@ -3926,7 +3921,7 @@ msgstr "Enklozañ an istitloù"
msgid "Show binary contents as HEX by default"
msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù) dre ziouer"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)"
@@ -5698,7 +5693,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5838,25 +5833,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6014,8 +6009,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6195,50 +6190,55 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "Muioc'h"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute"
+msgid "Headers every"
+msgstr "Seveniñ"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Furchal"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6256,89 +6256,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6382,7 +6382,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6633,8 +6633,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6755,12 +6755,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6962,8 +6962,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)."
@@ -7131,6 +7131,98 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Kuzhat"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Ensoc'hañ"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7141,34 +7233,34 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ha sur oc'h e fell deoc'h "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7176,11 +7268,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7507,18 +7594,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7858,11 +7937,6 @@ msgstr "Seveniñ an argerzh"
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
@@ -8201,7 +8275,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8209,11 +8283,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8237,10 +8311,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8416,12 +8486,6 @@ msgstr ""
msgid "Table Search"
msgstr "Klask"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Ensoc'hañ"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8599,7 +8663,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8800,10 +8864,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Kuzhat"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8994,17 +9054,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9437,8 +9497,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9553,7 +9613,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9686,153 +9746,153 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Freskaat"
# verb pe ak. ?
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Silañ"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Connections"
msgid "Instructions"
msgstr "Kevreadennoù"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9840,116 +9900,116 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Personelaat ar bajenn deraouiñ"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Urzhiad"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9957,78 +10017,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10036,7 +10096,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10044,42 +10104,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10087,33 +10147,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10122,244 +10182,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Furmad ar restr enporzhiañ"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10367,99 +10427,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10467,18 +10527,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10486,69 +10546,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "N'eo ket oberiant an heuliañ."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Freskaat"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "Bannoù evit an takadoù skrid CHAR"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Adlakaat an talvoud dre ziouer"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10557,7 +10617,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10565,20 +10625,20 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
#, fuzzy
#| msgid "Pause monitor"
msgid "Using the monitor:"
msgstr "Paouez gant an evezhiañ"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10586,11 +10646,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10598,96 +10658,96 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove chart"
msgid "Preset chart"
msgstr "Dilemel ar grafik"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Foreign Key"
msgid "Select series:"
msgstr "Diuzit an alc'hwez estren"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Anv taolenn direizh"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add user"
msgid "Add this series"
msgstr "Ouzhpennañ un implijer"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Query statistics"
msgid "Log statistics"
msgstr "Stadegoù war ar rekedoù"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10821,7 +10881,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10883,39 +10943,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11101,53 +11161,44 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ha sur oc'h e fell deoc'h "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11162,56 +11213,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "Diverket eo bet an diaz roadennoù %s."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -11816,32 +11817,38 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Kuzhat an dezverkoù klask"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Adderaouekaat"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12211,8 +12218,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12341,8 +12348,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13146,8 +13153,5 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Talvoud re hir er furmskrid !"
-#~ msgid "rows"
-#~ msgstr "Furchal"
-
#~ msgid "Query \"%s\" failed"
#~ msgstr "C'hwitet eo bet ar reked \"%s\""
diff --git a/po/bs.po b/po/bs.po
index 57e6c59108..a5bdb9740b 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: bosnian \n"
-"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: bs\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Prikaži sve"
msgid "Page number:"
msgstr "Broj strane:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među "
"prozorima zbog sigurnosnih podešavanja"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Pretraživanje"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Ime ključa"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Opis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Koristi ovu vrijednost"
@@ -121,12 +121,12 @@ msgstr "Komentari tabele"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -137,6 +137,7 @@ msgstr "Imena kolona"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Imena kolona"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -154,12 +155,12 @@ msgstr "Tip"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Komentari"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -369,7 +370,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redova"
@@ -422,28 +423,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Pređi na kopiranu tabelu"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortiranje"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Prikaži"
@@ -464,8 +465,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ili"
@@ -539,8 +540,8 @@ msgstr[0] "%s pogodaka unutar tabele %s"
msgstr[1] "%s pogodaka unutar tabele %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Pregled"
@@ -550,14 +551,14 @@ msgstr "Pregled"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Obriši"
@@ -634,11 +635,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -648,7 +649,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
#, fuzzy
msgid "Replication"
msgstr "Relacije"
@@ -663,20 +664,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -688,27 +689,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -734,13 +735,13 @@ msgstr "Analiziraj tabelu"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -761,8 +762,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -781,7 +782,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -889,49 +890,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Dodaj novo polje"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Linije se završavaju sa"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -941,17 +942,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "Dodaj novo polje"
@@ -974,8 +975,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1015,7 +1016,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1038,7 +1039,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1053,7 +1054,7 @@ msgstr "Nazad"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin preferira čitače koji podržavaju okvire."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
@@ -1063,7 +1064,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena."
msgid "Do you really want to execute \"%s\"?"
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1162,23 +1163,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Izbor servera"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1190,23 +1191,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1228,7 +1229,7 @@ msgstr "Izbor servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesi"
@@ -1248,7 +1249,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statistike reda"
@@ -1293,14 +1294,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1358,32 +1359,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Konekcije"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "bajta"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1399,11 +1400,11 @@ msgstr "%s tabela"
msgid "Questions"
msgstr "Operacije"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Saobraćaj"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1427,10 +1428,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "nema"
@@ -1530,7 +1531,7 @@ msgstr "Opšte osobine relacija"
msgid "Current settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1614,9 +1615,9 @@ msgstr ""
msgid "Explain output"
msgstr "Objasni SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Vrijeme"
@@ -1726,7 +1727,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Izvoz"
@@ -1869,17 +1870,17 @@ msgstr "Dodaj novo polje"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Omogućeno"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1959,7 +1960,7 @@ msgstr "SQL upit"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Promijeni"
@@ -1968,17 +1969,18 @@ msgstr "Promijeni"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Sačuvaj"
@@ -2007,178 +2009,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Dodaj/obriši kolonu"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL rezultat"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Sadržaj"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "Dodaj novo polje"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Imena kolona"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Prikaz zapisa"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Promeni lozinku"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Generirao"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2186,30 +2180,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "nema"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodna"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2217,96 +2211,96 @@ msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "maj"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2314,78 +2308,78 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2393,113 +2387,113 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "nema"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2551,16 +2545,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "u sekundi"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "u minuti"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "na sat"
@@ -2686,15 +2680,15 @@ msgstr ""
msgid "Databases"
msgstr "Baze"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2706,20 +2700,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2779,13 +2773,13 @@ msgstr "Korisnik"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binarni"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Promjenljive"
@@ -2802,8 +2796,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Greška"
@@ -2919,35 +2914,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2988,14 +2983,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3252,8 +3247,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3358,7 +3353,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabele"
@@ -3411,22 +3406,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3438,21 +3433,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u "
"konfiguracionoj datoteci!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3487,8 +3482,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL upit"
@@ -3526,7 +3521,7 @@ msgid "Create PHP Code"
msgstr "Napravi PHP kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3547,43 +3542,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Dodaj novo polje"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3591,8 +3586,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3600,53 +3595,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Slijedeći"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Direkcija koju ste izabrali za slanje nije dostupna"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Štampaj"
@@ -3831,9 +3826,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Resetuj"
@@ -3981,7 +3976,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4042,7 +4037,7 @@ msgstr "Predloži strukturu tabele"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5878,7 +5873,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6016,25 +6011,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6216,8 +6211,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6411,56 +6406,61 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Dodaj/obriši kolonu"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sub"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Broj redova po strani"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Pon"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontalnom"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontalnom (rotirana zaglavlja)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikalnom"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Izvrši upamćen upit"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Pregled"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6479,101 +6479,101 @@ msgstr ""
msgid "Options"
msgstr "Operacije"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Dio teksta"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pun tekst"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Verzija servera"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -6619,7 +6619,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6871,8 +6871,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7019,12 +7019,12 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Vrijeme kreiranja"
@@ -7235,8 +7235,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -7401,6 +7401,101 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binarni"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Zbog njehove veličine, polje možda nećete moći da izmenite"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binarni - ne mijenjaj"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "direkcija za slanje web servera"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Novi zapis"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Unesi kao novi red"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Nazad na prethodnu stranu"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Dodaj još jedan novi red"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "Nazad na prethodnu stranu"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vrijednost"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7413,38 +7508,38 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Pet"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Pošalji"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Dodaj novo polje"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Da li stvarno hoćete da "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nema izmjena"
@@ -7452,11 +7547,6 @@ msgstr "Nema izmjena"
msgid "Charset"
msgstr "Karakter set"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binarni"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bugarski"
@@ -7791,18 +7881,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Promjenljiva"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vrijednost"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8151,11 +8233,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8516,7 +8593,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8526,11 +8603,11 @@ msgstr ""
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Obilježi SQL-upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8554,10 +8631,6 @@ msgstr "Prikaži ponovo ovaj upit"
msgid "View only"
msgstr "Vidi samo"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "direkcija za slanje web servera"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8769,12 +8842,6 @@ msgstr "Operacije"
msgid "Table Search"
msgstr "Pretraživanje"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Novi zapis"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9006,7 +9073,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Korisnik"
@@ -9226,10 +9293,6 @@ msgstr "Prikaži sve"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9447,18 +9510,18 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Polja"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -9914,8 +9977,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -10037,7 +10100,7 @@ msgstr "Privilegije su uspešno ponovo učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10176,160 +10239,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Proces %s je uspješno prekinut."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Vrsta upita"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Prošireni INSERT"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Prikaži tabele"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Generirao"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da mijenjaš lozinku"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Prikaži tabele"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Prikaži tabele"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funkcija"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10337,117 +10400,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Ime"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10455,78 +10518,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10534,7 +10597,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10542,42 +10605,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10585,33 +10648,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10620,243 +10683,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Karakter set datoteke:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10864,99 +10927,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10964,18 +11027,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10983,69 +11046,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Vrsta upita"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Dodaj novo polje"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Generirao"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/obriši kolonu"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11054,7 +11117,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11062,18 +11125,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11081,11 +11144,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11093,89 +11156,89 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
msgid "Preset chart"
msgstr "Promjeni ime tabele u "
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Izaberi tabele"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Dodaj novog korisnika"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL upit"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statistike reda"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Izaberi sve"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11183,7 +11246,7 @@ msgid_plural "%d seconds"
msgstr[0] "u sekundi"
msgstr[1] "u sekundi"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11319,7 +11382,7 @@ msgstr "Vrijednost sesije"
msgid "Global value"
msgstr "Globalna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11383,41 +11446,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokalni"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11607,55 +11670,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza ne postoji"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Pregledaj strane vrijednosti"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Da li stvarno hoćete da "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjeri SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL rezultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generirao"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Naziv"
@@ -11670,59 +11724,6 @@ msgstr "Izabrani korisnici su uspješno obrisani."
msgid "The columns have been moved successfully."
msgstr "Izabrani korisnici su uspješno obrisani."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Zbog njehove veličine, polje možda nećete moći da izmenite"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binarni - ne mijenjaj"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Unesi kao novi red"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Nazad na prethodnu stranu"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Dodaj još jedan novi red"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "Nazad na prethodnu stranu"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12362,33 +12363,39 @@ msgstr ""
msgid "Create version"
msgstr "Verzija servera"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Resetuj"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12746,8 +12753,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12873,8 +12880,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13627,9 +13634,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Nedostaje vrijednost u obrascu!"
-#~ msgid "rows"
-#~ msgstr "Pregled"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "redova počev od reda"
diff --git a/po/ca.po b/po/ca.po
index d51122be9a..665eaea4e8 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-28 14:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: catalan \n"
-"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostra tot"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostra tot"
msgid "Page number:"
msgstr "Número de pàgina:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre "
"finestres per la teva configuració de seguretat."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Cerca"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executa"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nom de clau"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descripció"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Fes servir aquest valor"
@@ -122,12 +122,12 @@ msgstr "Comentaris de la taula"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Columna"
@@ -136,6 +136,7 @@ msgstr "Columna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Columna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipus"
@@ -153,12 +154,12 @@ msgstr "Tipus"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nul"
@@ -197,13 +198,13 @@ msgstr "Comentaris"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "No"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Taula"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Fila"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Canviar al %sconstructor visual%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Classificació"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascendent"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descendent"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostra"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Sup"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "O"
@@ -524,8 +525,8 @@ msgstr[0] "%s resultat a la taula %s"
msgstr[1] "%s resultats a la taula %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Navega"
@@ -534,14 +535,14 @@ msgstr "Navega"
msgid "Delete the matches for the %s table?"
msgstr "Esborrar les coincidències per a la taula %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Esborra"
@@ -609,11 +610,11 @@ msgstr "El seguiment està actiu."
msgid "Tracking is not active."
msgstr "El seguiment no està actiu."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -624,7 +625,7 @@ msgstr "Vista"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicació"
@@ -638,20 +639,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Amb marca:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Marcar-ho tot"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -663,27 +664,27 @@ msgstr "Comprova taules desfragmentades"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exporta"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Imprimeix vista"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Buida"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -709,11 +710,11 @@ msgstr "Analitza la taula"
msgid "Add prefix to table"
msgstr "Afegeix un prefix a la taula"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Canvia el prefix de la taula"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copia la taula amb prefix"
@@ -732,8 +733,8 @@ msgstr "Taules seguides"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Base de dades"
@@ -751,7 +752,7 @@ msgstr "Actualitzat"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Estat"
@@ -851,45 +852,45 @@ msgstr "Utilitzar OpenStreetMaps com a capa base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Afegir un punt"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Cadena de línies"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Cercle exterior"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Cercle interior"
@@ -897,15 +898,15 @@ msgstr "Cercle interior"
msgid "Add a linestring"
msgstr "Afegeix una cadena de línies"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Afegeix un cercle interior"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polígon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Afegeix un polígon"
@@ -928,11 +929,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
-"%sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
+"sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -979,7 +980,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"No es poden carregar les extensions d'importació, comprova l'instal.lació!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "%s creat com a Consulta desada"
@@ -1007,7 +1008,7 @@ msgstr ""
"incrementeu els límits de temps de php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1023,7 +1024,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin és més fàcil amb un navegador que suporti marcs -frames-."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Instrucció \"DROP DATABASE\" desactivada."
@@ -1033,7 +1034,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada."
msgid "Do you really want to execute \"%s\"?"
msgstr "Realment vols fer?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Ets a punt de DESTRUIR completament una base de dades!"
@@ -1119,21 +1120,21 @@ msgstr "Tanca"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Gràfic de tràfic en viu"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Gràfic de conexions/processos en viu"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Gràfic de consultes en viu"
@@ -1144,23 +1145,23 @@ msgstr "Dades estàtiques"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Altre"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1180,7 +1181,7 @@ msgstr "Tràfic del servidor (en KiB)"
msgid "Connections since last refresh"
msgstr "Connexions des de la darrera actualització"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processos"
@@ -1198,7 +1199,7 @@ msgstr "Consultes des de la darrera actualització"
msgid "Questions (executed statements by the server)"
msgstr "Consultes (sentències executades pel servidor)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Consulta d'estadístiques"
@@ -1244,14 +1245,14 @@ msgid "System swap"
msgstr "Intercanvi del sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1303,32 +1304,32 @@ msgstr "Bytes enviats"
msgid "Bytes received"
msgstr "Bytes rebuts"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Connexions"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1342,11 +1343,11 @@ msgstr "%d taula(es)"
msgid "Questions"
msgstr "Consultes"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tràfic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Configuració"
@@ -1367,10 +1368,10 @@ msgid "Please add at least one variable to the series"
msgstr "Afegeix al menys una variable a la serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Res"
@@ -1470,7 +1471,7 @@ msgstr "Canviar configuracions"
msgid "Current settings"
msgstr "Configuracions actuals"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Títol del gràfic"
@@ -1559,9 +1560,9 @@ msgstr "Analitzant..."
msgid "Explain output"
msgstr "Explicar sortida"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Temps"
@@ -1663,7 +1664,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importa"
@@ -1787,19 +1788,19 @@ msgstr "Amagar índex"
msgid "Show indexes"
msgstr "Mostra índex"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Desactiva les comprovacions de claus externes"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Activat"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1868,7 +1869,7 @@ msgstr "Mostrar quadre de consultes"
msgid "No rows selected"
msgstr "No s'han triat arxius"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Canvi"
@@ -1877,17 +1878,18 @@ msgstr "Canvi"
msgid "Query execution time"
msgstr "Temps d'execució de la consulta"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d no és un num. vàlid de fila."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Desa"
@@ -1912,162 +1914,154 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "selecciona dues columnes"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Resultats de consultes"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Contingut del punter de dades"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Còpia"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Afegeix columnes"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Tria la clau referenciada"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Tria una clau externa"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Tria la clau principal o una clau única"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Tria la columna a mostrar"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Afegeix una opció per a la columna "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Clica per clasificar"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Vés a l'enllaç"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Nom de les columnes"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Actualitza fila(es)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Genera una contrasenya"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Canvi de contrasenya"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Més"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2077,266 +2071,266 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "actualitzat"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Fet"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Mes anterior"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Mes següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Avui"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Gener"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Febrer"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Març"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Abril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maig"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juny"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juliol"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agost"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Setembre"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Octubre"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembre"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Des"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Diumenge"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Dilluns"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Dimarts"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Dimecres"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Dijous"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Divendres"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Se"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Sufix de l'any"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Segon"
@@ -2387,16 +2381,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per segon"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minut"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per hora"
@@ -2528,15 +2522,15 @@ msgstr ""
msgid "Databases"
msgstr "Bases de dades"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2548,20 +2542,20 @@ msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insereix"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacions"
@@ -2619,12 +2613,12 @@ msgstr "Usuaris"
msgid "Synchronize"
msgstr "Sincronitza"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Registre binari"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variables"
@@ -2641,8 +2635,9 @@ msgid "Engines"
msgstr "Motors"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
@@ -2759,35 +2754,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "El camí de les imatges del tema %s és incorrecte!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "No hi ha vista prèvia disponible."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "agafa"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema per defecte %s no trobat!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s no trobat!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
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:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2828,14 +2823,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3095,8 +3090,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -3206,7 +3201,7 @@ msgstr "compartit"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Taules"
@@ -3257,22 +3252,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "No es pot llegir l'arxiu de configuració"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "No es pot carregar la configuració per defecte des de: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3284,22 +3279,22 @@ msgstr ""
"La directiva $cfg['PmaAbsoluteUri'] HA d'estar establerta a "
"l'arxiu de configuració!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Index de servidor invàlid: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Mètode d'identificació incorrecte establert a la configuració:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Es necessari actualitzar a %s %s o posterior."
@@ -3334,8 +3329,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Consulta SQL"
@@ -3373,7 +3368,7 @@ msgid "Create PHP Code"
msgstr "Crea codi PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Refresca"
@@ -3394,96 +3389,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línia"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Perfils"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Diu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a les %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Falta paràmetre:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Inici"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Pàgina anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Pàgina següent"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Darrera pàgina"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Vés a la base de dades "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Prem per canviar"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Navega al teu ordinador:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "No hi ha cap arxiu per pujar"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimeix"
@@ -3655,9 +3650,9 @@ msgstr "Restaura el valor per defecte"
msgid "Allow users to customize this value"
msgstr "Permet als usuaris configurar aquest valor"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reinicia"
@@ -3816,7 +3811,7 @@ msgid "Compress on the fly"
msgstr "Compressió al vol"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Arxiu de configuració"
@@ -3878,7 +3873,7 @@ msgstr "Proposa una estructura de taula"
msgid "Show binary contents as HEX by default"
msgstr "Mostra el contingut binari com HEX per defecte"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostra el contingut binari com HEX"
@@ -5785,7 +5780,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Activa la pestanya del Desenvolupador en les opcions"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Comprova la darrera versió"
@@ -5927,7 +5922,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5935,19 +5930,19 @@ msgstr ""
"El servidor no està responent (o el sòcol del servidor local MySQL no està "
"configurat correctament)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "El servidor no respon."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalls..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6110,12 +6105,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
-"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
+"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:285
@@ -6309,48 +6304,51 @@ msgstr "Opcions específiques de format:"
msgid "Language"
msgstr "Idioma"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Desar dades editades"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Reataurar ordre de columnes"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Fila d'inici"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Nombre de files"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Mode"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horitzontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horitzontal (capçaleres rotades)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Navega"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Classifica per la clau"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6368,89 +6366,89 @@ msgstr "Classifica per la clau"
msgid "Options"
msgstr "Opcions"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Textos parcials"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Textos sencers"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Clau relacional"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Columna relacional a mostrar"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Mostra continguts binaris"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Mostra contingut BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Amagar transformació del navegador"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Finalitzar"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "en consulta"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrant registres"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tarda %01.4f seg"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operacions de resultats de consultes"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Vista d'impresió (amb texts sencers)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Mostra el gràfic"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Crea una vista"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç"
@@ -6499,7 +6497,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Grup de memòries intermitges"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Estat InnoDB"
@@ -6794,8 +6792,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@@ -6918,12 +6916,12 @@ msgstr "Mostra tipus MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Temps de generació"
@@ -7149,8 +7147,8 @@ msgstr "No s'han trobat dades per a visualització GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)."
@@ -7326,6 +7324,99 @@ msgstr "Modus de compatibilitat SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "No feu servir AUTO_INCREMENT per a valors zero"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funció"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Amaga"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binari"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+" A causa de la seva longitud, aquesta columna no pot ser editable"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binari - no editeu"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "directori de pujada d'arxius del servidor web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Edita/Insereix"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Continua l'inserció amb %s files"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "i llavors"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Insereix com a nova fila"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Insereix com a nova fila i ignora els errors"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Mostra la consulta d'inserció"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Torna"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Insereix un nou registre"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Torna a aquesta pàgina"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Edita el següent registre"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't "
+"on vulguis"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valor"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Mostrant consulta SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Id de la fila inserida: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7336,34 +7427,34 @@ msgstr "Cap"
msgid "Convert to Kana"
msgstr "Converteix a Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "De"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Envia"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Afegir prefix"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Realment vols fer?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Sense canvis"
@@ -7371,11 +7462,6 @@ msgstr "Sense canvis"
msgid "Charset"
msgstr "Joc de caràcters"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binari"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Búlgar"
@@ -7711,18 +7797,10 @@ msgid "Slave status"
msgstr "Estat de l'esclau"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valor"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID de Servidor"
@@ -8044,11 +8122,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Paràmetres de rutina"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funció"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8370,7 +8443,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa consulta/s SQL a la Base de Dades %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Neteja"
@@ -8378,11 +8451,11 @@ msgstr "Neteja"
msgid "Columns"
msgstr "Columnes"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Desa aquesta consulta SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
@@ -8406,10 +8479,6 @@ msgstr "Mostra aquesta consulta de nou"
msgid "View only"
msgstr "Només mirar"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "directori de pujada d'arxius del servidor web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8480,8 +8549,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
-"%sdocumentació%s."
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
+"sdocumentació%s."
#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
@@ -8611,10 +8680,6 @@ msgstr "Operador"
msgid "Table Search"
msgstr "Cerca de taules"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Edita/Insereix"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8834,7 +8899,7 @@ msgstr "Versió del protocol"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Usuari"
@@ -9059,10 +9124,6 @@ msgstr "Amaga/Mostra tot"
msgid "Hide/Show Tables with no relation"
msgstr "Amaga/Mostra taules sense relacions"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Amaga"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Nombre de taules"
@@ -9256,17 +9317,17 @@ msgstr "L'arxiu no existeix"
msgid "Select binary log to view"
msgstr "Tria el registre binari per veure"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Arxius"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Talla les consultes mostrades"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostra Consultes completes"
@@ -9711,8 +9772,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -9837,7 +9898,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Mostra l'estat del mestre -show master status-"
@@ -9986,146 +10047,146 @@ msgstr ""
"Aquest servidor no està configurat com a esclau en un procés de replicació. "
"Vols configurar-lo ?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Fil %s cancel.lat correctament."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Memòria cau de consultes"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Fils"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dades temporals"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Insercions demorades"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Memòria cau de claus"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Unions"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Classificant"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordinador de transaccions"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Sincronitza (tanca) totes les taules"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Mostra taules obertes"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Mostra servidors esclaus"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Mostra l'estat d'esclaus"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Buida la memòria cau de consultes"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informació d'execució"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Totes les variables d'estat"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Velocitat de refresc: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtres"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Incloent la paraula:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Mostra només valors d'alerta"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Mostra valors sense format"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Enllaços relacionats:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Executar analitzador"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instruccions"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10133,31 +10194,31 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Consultes des de l'inici: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sentències"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Aquest servidor MySQL és en marxa durant %1$s. Es va iniciar en %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10165,19 +10226,19 @@ msgstr ""
"Aquest servidor MySQL treballa com a mestre i esclau en un "
"procés de replicació ."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10185,11 +10246,11 @@ msgstr ""
"Per obtenir més informació sobre l'estat de replicació al servidor, visita "
"la secció de replicació."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Estat de la replicació"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10197,45 +10258,45 @@ 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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Rebut"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Enviat"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. connexions a la vegada"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Intents erronis"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Avortat"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Ordre"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "La quantitat d'intents fallits de connexió al servidor MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10245,17 +10306,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10267,11 +10328,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Arxius temporals creats per mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10279,7 +10340,7 @@ msgstr ""
"El nombre de taules temporals creades en memòria per el servidor mentre "
"executa instruccions."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10287,7 +10348,7 @@ msgstr ""
"El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat "
"quelcom error (possile clau duplicada)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10295,23 +10356,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "El nombre de files escrites amb INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "El nombre d'instruccions FLUSH executades."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "El nombre d'instruccions COMMIT internes."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10321,7 +10382,7 @@ msgstr ""
"coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. "
"Handler_discover indica el nombre de taules descobertes."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10331,7 +10392,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10340,7 +10401,7 @@ msgstr ""
"és una bona indicació de que les consultes i taules estàn indexades "
"acuradament."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10350,7 +10411,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10359,7 +10420,7 @@ msgstr ""
"Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... "
"DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10371,7 +10432,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:1337
+#: server_status.php:1340
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 "
@@ -10383,37 +10444,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "El nombre d'instruccions ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "El nombre de pàgines contenint dades (brutes o netes)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "El nombre de pàgines actualment brutes."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "El nombre de pàgines lliures."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10423,7 +10484,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:1346
+#: server_status.php:1349
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 "
@@ -10435,11 +10496,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Tamany total de la memòria cau, en pàgines."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10447,7 +10508,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10455,11 +10516,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10467,7 +10528,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:1352
+#: server_status.php:1355
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 "
@@ -10481,55 +10542,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:1353
+#: server_status.php:1356
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:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "El nombre d'operacions fsync() aproximades."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "El nombre actual d'operacions fsync() pendents."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "El nombre actual de lectures pendents."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "El nombre actual d'escritures pendents."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "La quantitat aproximada de dades llegides, en bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "El nombre total de dades llegides."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "El nombre total de dades escrites."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "La quantitat aproximada de dades escrites, en bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10537,35 +10598,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "El nombre de peticions d'escriptura al registre."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Escriptures pendents a l'arxiu de registre."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "El nombre de bytes escrits a l'arxiu de registre."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "El nombre de pàgines creades."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10574,51 +10635,51 @@ msgstr ""
"comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment "
"a bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "El nombre de pàgines llegides."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "El nombre de pàgines escrites."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "El nombre de bloquejos de files actualment en espera."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "El nombre de files esborrades de taules InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "El nombre de files afegides a taules InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "El nombre de files llegides de taules InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "El nombre de files actualitzades en taules InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10627,7 +10688,7 @@ msgstr ""
"però que encara no han estat actualitzades a disc. Es coneix com a "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10635,7 +10696,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:1386
+#: server_status.php:1389
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 "
@@ -10644,17 +10705,17 @@ 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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Format de l'arxiu importat"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10664,27 +10725,27 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10695,17 +10756,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10713,39 +10774,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "El nombre d'arxius que estàn oberts."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "El nombre de taules que estàn obertes."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
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:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "El nombre d'encerts a memòria cau."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "El nombre de consultes afegides a la memòria cau."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10758,7 +10819,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10766,19 +10827,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "El nombre de consultes registrades a la memòria cau."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
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:1410
+#: server_status.php:1413
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."
@@ -10786,12 +10847,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10800,7 +10861,7 @@ msgstr ""
"cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els "
"indexs de les taules.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10808,16 +10869,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10825,25 +10886,25 @@ msgstr ""
"Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació "
"de SQL ha recuperat transaccions."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10853,23 +10914,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "El nombre de classificacions fetes amb rangs."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "El nombre de files classificades."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "El nombre de classificacions fetes cercant la taula."
-#: server_status.php:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10882,7 +10943,7 @@ msgstr ""
"consultes, o també dividir la taula o taules en vàries o bé utilitzar la "
"replicació."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10892,11 +10953,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "El nombre de connexions obertes simultàniament."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10907,63 +10968,63 @@ 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:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "El seguiment no està actiu."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "El nombre de fils que no estàn dormint."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Començar monitorització"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Afegir gràfic"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Velocitat de refresc"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Columnes del gràfic"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Ordenació del gràfic"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Restaura el valor per defecte"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instruccions de Monitorització"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10972,7 +11033,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10980,18 +11041,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10999,11 +11060,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11011,86 +11072,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Gràfic predefinit"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variable(s) d'estat"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Seleccionar series:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "o escriu el nom de variable:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Afegir aquesta serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Series al gràfic:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Estadístiques del registre"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Rang de temps seleccionat:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analitzador de consultes"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d segon"
msgstr[1] "%d segons"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11227,7 +11288,7 @@ msgstr "Valor de sessió"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Descarrega"
@@ -11298,39 +11359,39 @@ msgstr "No hi ha servidors configurats"
msgid "New server"
msgstr "Nou servidor"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Idioma predeterminat"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "deixa triar a l'usuari"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- cap -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Servidor predeterminat"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Fi de linia"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Mostra"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Carregar"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "pàgina principal de phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Donacions"
@@ -11484,8 +11545,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
-"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
+"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:310
@@ -11513,8 +11574,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
-"phpMyAdmin pot accedir al teu panel directament. Estableix el "
-"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
+"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:314
#, php-format
@@ -11560,53 +11621,44 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
msgid "Wrong data"
msgstr "Dades incorrectes"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Navega valors externs"
-#: sql.php:255
+#: sql.php:253
#, 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:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Realment vols fer?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Id de la fila inserida: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Mostrant com a codi PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Mostrant consulta SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL validat"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Resultat SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generat per"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiqueta"
@@ -11621,59 +11673,6 @@ msgstr "S'ha modificat la taula %1$s correctament"
msgid "The columns have been moved successfully."
msgstr "S'han esborrat correctament els usuaris triats."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-" A causa de la seva longitud, aquesta columna no pot ser editable"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binari - no editeu"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Insereix com a nova fila"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Insereix com a nova fila i ignora els errors"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Mostra la consulta d'inserció"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "i llavors"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Torna"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Insereix un nou registre"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Torna a aquesta pàgina"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Edita el següent registre"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't "
-"on vulguis"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Continua l'inserció amb %s files"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12272,32 +12271,38 @@ msgstr "Segueix aquestes declaracions de manipulació de dades:"
msgid "Create version"
msgstr "Crea versió"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Fer una \"consulta segons exemple\" (comodí: \"%\") per a dos columnes "
"diferents"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Criteri de cerca addicionals"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Màxim nombre de files a dibuixar"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Cóm utilitzar"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reinicia"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Obtenir més temes!"
@@ -12644,8 +12649,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12780,8 +12785,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13885,9 +13890,6 @@ msgstr "max. connexions a la vegada"
#~ msgid "No trigger with name %s found"
#~ msgstr "El camí de les imatges del tema %s és incorrecte!"
-#~ msgid "rows"
-#~ msgstr "Navega"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "fila(es) començant des de la fila #"
diff --git a/po/ckb.po b/po/ckb.po
index 6a5fe878ce..20d3039ba8 100644
--- a/po/ckb.po
+++ b/po/ckb.po
@@ -7,24 +7,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-20 00:56+0200\n"
"Last-Translator: dilan kurdistani \n"
"Language-Team: none\n"
-"Language: ckb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ckb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "پیشاندانی هەموو"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,28 +32,29 @@ msgstr "پیشاندانی هەموو"
msgid "Page number:"
msgstr "ژمارەی پەڕە:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "گەڕان"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "گەڕان"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "بڕۆ"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "کلیلەناو"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "پێناسە"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "ئەم نرخە هەڵبژێرە"
@@ -123,12 +123,12 @@ msgstr "تێبینیەکانی خشتە"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "ستون"
@@ -137,6 +137,7 @@ msgstr "ستون"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "ستون"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "جۆر"
@@ -154,12 +155,12 @@ msgstr "جۆر"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "بەتاڵ"
@@ -198,13 +199,13 @@ msgstr "بۆچوون"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "نەخێر"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "خشتە"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "خانە"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "ڕیزکردن"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "لە سەرەتاوە بۆ کۆتایی"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "لە کۆتایی بۆ سەرەتا"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "پیشاندان"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "سڕینەوە"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "یان"
@@ -520,8 +521,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "گەڕۆک"
@@ -530,14 +531,14 @@ msgstr "گەڕۆک"
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "سڕینەوە"
@@ -606,11 +607,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -620,7 +621,7 @@ msgstr "نیشاندان"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "دووپاتکاری"
@@ -634,20 +635,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "پشکنینی هەموو"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -659,27 +660,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "هەناردن"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "پارچەیەک بۆ چاپکردن"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "بەتاڵ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -705,11 +706,11 @@ msgstr "شیکردنەوەى خشتە"
msgid "Add prefix to table"
msgstr "زیادکردنی پێشگر بۆ خشتە"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "گۆڕینی پێشگری خشتە"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر"
@@ -728,8 +729,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "بنکەی دراو"
@@ -747,7 +748,7 @@ msgstr "بارکراوە"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "ڕەوش"
@@ -845,45 +846,45 @@ msgstr ""
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "خاڵ"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "زیادکردنی خاڵ"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -891,15 +892,15 @@ msgstr ""
msgid "Add a linestring"
msgstr ""
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -920,8 +921,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -961,7 +962,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -984,7 +985,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -999,7 +1000,7 @@ msgstr "گەڕانەوە"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1008,7 +1009,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1094,21 +1095,21 @@ msgstr "داخستن"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "چاکردن"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1119,23 +1120,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "سەرجەم"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1155,7 +1156,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1173,7 +1174,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1214,14 +1215,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr ""
@@ -1273,32 +1274,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr ""
@@ -1312,11 +1313,11 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr ""
@@ -1337,10 +1338,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "هیچ"
@@ -1433,7 +1434,7 @@ msgstr ""
msgid "Current settings"
msgstr "ڕێکخستنەکانی هەنووکە"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr ""
@@ -1509,9 +1510,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "کات"
@@ -1602,7 +1603,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "هێنان"
@@ -1722,15 +1723,15 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(چالاکە)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(ناچالاکە)"
@@ -1797,7 +1798,7 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "گۆڕین"
@@ -1806,17 +1807,18 @@ msgstr "گۆڕین"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "پاشەکەوتکردن"
@@ -1841,158 +1843,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr ""
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr ""
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2000,266 +1994,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr ""
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr ""
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr ""
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr ""
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr ""
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr ""
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr ""
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr ""
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr ""
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr ""
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr ""
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr ""
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr ""
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr ""
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr ""
@@ -2309,16 +2303,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2443,15 +2437,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2463,20 +2457,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2534,12 +2528,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2556,8 +2550,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
@@ -2669,35 +2664,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2738,14 +2733,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -2995,8 +2990,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3094,7 +3089,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3145,42 +3140,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3215,8 +3210,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3254,7 +3249,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3275,95 +3270,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3535,9 +3530,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3681,7 +3676,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3739,7 +3734,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5472,7 +5467,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "پشکنین بۆ دۆزینەوەی نوێترین وەشان"
@@ -5610,25 +5605,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5786,8 +5781,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5963,48 +5958,53 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Browse"
+msgid "rows"
+msgstr "گەڕۆک"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6022,89 +6022,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6148,7 +6148,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6399,8 +6399,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6521,12 +6521,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6724,8 +6724,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6887,6 +6887,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6897,32 +6987,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6930,11 +7020,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7259,18 +7344,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7588,11 +7665,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7912,7 +7984,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7920,11 +7992,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7948,10 +8020,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8122,10 +8190,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8297,7 +8361,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8490,10 +8554,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8684,17 +8744,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9119,8 +9179,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9235,7 +9295,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9368,146 +9428,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9515,115 +9575,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9631,78 +9691,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9710,7 +9770,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9718,42 +9778,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -9761,33 +9821,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -9796,242 +9856,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10039,99 +10099,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10139,18 +10199,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10158,61 +10218,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10221,7 +10281,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10229,18 +10289,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10248,11 +10308,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10260,86 +10320,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10471,7 +10531,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10533,39 +10593,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10751,51 +10811,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10808,56 +10859,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr ""
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11438,30 +11439,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -11797,8 +11802,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -11916,8 +11921,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/cs.po b/po/cs.po
index 1fe944bc1e..7e1430f83b 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,24 +5,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:35+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
-"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Zobrazit vše"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -30,7 +30,7 @@ msgstr "Zobrazit vše"
msgid "Page number:"
msgstr "Strana číslo:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -40,21 +40,22 @@ msgstr ""
"rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu "
"bezpečnostních nastavení."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Vyhledávání"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -70,28 +71,27 @@ msgstr "Vyhledávání"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Proveď"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Název klíče"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Popis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Použít tuto hodnotu"
@@ -124,12 +124,12 @@ msgstr "Komentář k tabulce"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Pole"
@@ -138,6 +138,7 @@ msgstr "Pole"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -145,9 +146,9 @@ msgstr "Pole"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -155,12 +156,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulový"
@@ -199,13 +200,13 @@ msgstr "Komentáře"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -216,19 +217,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Tabulka"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Řádků"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Přepnout na %svizuálního návrháře%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Řadit"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Vzestupně"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Sestupně"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Zobrazit"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "Smazat"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Nebo"
@@ -524,8 +525,8 @@ msgstr[1] "V tabulce %2$s jsou %1$s odpovídající záznamy"
msgstr[2] "V tabulce %2$s je %1$s odpovídajících záznamů"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Projít"
@@ -534,14 +535,14 @@ msgstr "Projít"
msgid "Delete the matches for the %s table?"
msgstr "Odstranit nalezené záznamy z tabulky %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Odstranit"
@@ -610,11 +611,11 @@ msgstr "Sledování je zapnuté."
msgid "Tracking is not active."
msgstr "Sledování není zapnuté."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -625,7 +626,7 @@ msgstr "Pohled"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikace"
@@ -639,20 +640,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Zaškrtnuté:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Zaškrtnout vše"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -664,27 +665,27 @@ msgstr "Zaškrtnout neoptimální"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Náhled pro tisk"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Vyprázdnit"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -710,11 +711,11 @@ msgstr "Analyzovat tabulku"
msgid "Add prefix to table"
msgstr "Přidat tabulce předponu"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Změnit tabulce předponu"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Zkopírovat tabulku s předponou"
@@ -733,8 +734,8 @@ msgstr "Sledované tabulky"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databáze"
@@ -752,7 +753,7 @@ msgstr "Aktualizováno"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stav"
@@ -852,45 +853,45 @@ msgstr "Použít OpenStreetMap jako základní vrstvu"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrie"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Bod"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Bod %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Přidat bod"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linka"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Vnější obrys"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Vnitřní obrys"
@@ -898,15 +899,15 @@ msgstr "Vnitřní obrys"
msgid "Add a linestring"
msgstr "Přidat linku"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Přidat vnitřní obrys"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Mnohoúhelník"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Přidat mnohoúhelník"
@@ -927,8 +928,8 @@ msgstr "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -976,7 +977,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Vytvořen oblíbený dotaz %s"
@@ -1004,7 +1005,7 @@ msgstr ""
"časové limity v PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1019,7 +1020,7 @@ msgstr "Zpět"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Příkaz „DROP DATABASE“ je vypnutý."
@@ -1028,7 +1029,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý."
msgid "Do you really want to execute \"%s\"?"
msgstr "Opravdu si přejete provést „%s“?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte se ZRUŠIT celou databázi!"
@@ -1114,21 +1115,21 @@ msgstr "Ukončit"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Upravit"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Živý graf provozu"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Živý graf připojení a procesů"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Živý graf dotazů"
@@ -1139,23 +1140,23 @@ msgstr "Statická data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Celkem"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Ostatní"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1175,7 +1176,7 @@ msgstr "Síťový provoz (v KiB)"
msgid "Connections since last refresh"
msgstr "Spojení od posledního obnovaní"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesy"
@@ -1193,7 +1194,7 @@ msgstr "Dotazů od poslední aktualizace"
msgid "Questions (executed statements by the server)"
msgstr "Dotazy (příkazy spuštěné na serveru)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistika dotazů"
@@ -1237,14 +1238,14 @@ msgid "System swap"
msgstr "Odkládací oblast"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1296,32 +1297,32 @@ msgstr "Odesláno bajtů"
msgid "Bytes received"
msgstr "Přijato bajtů"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Připojení"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1335,11 +1336,11 @@ msgstr "%d tabulek"
msgid "Questions"
msgstr "Dotazy"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Provoz"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Nastavení"
@@ -1360,10 +1361,10 @@ msgid "Please add at least one variable to the series"
msgstr "Prosím přidejte do série alespoň jednu hodnotu"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Žádná"
@@ -1462,7 +1463,7 @@ msgstr "Změnit nastavení"
msgid "Current settings"
msgstr "Aktuální nastavení"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Název grafu"
@@ -1547,9 +1548,9 @@ msgstr "Analyzuji..."
msgid "Explain output"
msgstr "Vysvětlení dotazu"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Čas"
@@ -1646,7 +1647,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Import"
@@ -1766,15 +1767,15 @@ msgstr "Skrýt klíče"
msgid "Show indexes"
msgstr "Zobrazit klíče"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Kontrola cizích klíčů:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Zapnutá)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Vypnutá)"
@@ -1841,7 +1842,7 @@ msgstr "Zobrazit pole pro dotaz"
msgid "No rows selected"
msgstr "Nebyl vybrán žádný řádek"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Změnit"
@@ -1850,17 +1851,18 @@ msgstr "Změnit"
msgid "Query execution time"
msgstr "Doba běhu dotazu"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d není platné číslo řádku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Uložit"
@@ -1885,75 +1887,67 @@ msgid "Hovering over a point will show its label."
msgstr "Najetí myší nad bod ukáže jeho název."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Použijte kolečko myši pro změnu velikosti grafu."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Kliknutím a táhnutím myší se můžete po grafu pohybovat."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Klikněte na odkaz pro obnovení zvětšení pro návrat do původního stavu."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Klikněte na datový bod pro zobrazení a případnou úpravu řádky."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "Graf můžete zvětšit táhnutím za pravý dolní roh."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Texty byly pro vykreslení převedeny na čísla"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Zvolte dva sloupce"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Zvolte dva odlišné sloupce"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Výsledky dotazu"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Obsah datového bodu"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorovat"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopírovat"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Přidat sloupce"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Zvolte odkazovaný klíč"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Zvolte cizí klíč"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Zvolte, prosím, primární nebo unikátní klíč"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Zvolte která pole zobrazit"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1961,41 +1955,41 @@ msgstr ""
"Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. "
"Přejete si pokračovat?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Přidat paramer pro sloupec "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Klávesou Esc ukončíte editaci"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr "Na stránce jsou neuložené změny. Chcete ji opravdu opustit?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Uspořádejte přetažením"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Klikněte pro řazení"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klikněte pro označení"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Poklepejte pro zkopírování jména pole"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klikněte na šipku pro vybrání sloupců"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2004,45 +1998,45 @@ msgstr ""
"editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání "
"fungovat."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Většinu sloupců můžete také přímo upravit kliknutím na jejich obsah."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Přejít na odkaz"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Zkopírovat název pole"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Klikněte pravým tlačítkem myši pro zkopírování názvu pole do schránky."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Zobrazit datové řádky"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Vytvořit heslo"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Vytvořit"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Změnit heslo"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Více"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2052,266 +2046,266 @@ msgstr ""
"je %s a byla vydána %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", poslední stabilní verze:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "aktuální"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Hotovo"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Předchozí"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Následující"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "leden"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "únor"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "březen"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "duben"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "květen"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "červen"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "červenec"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "srpen"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "září"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "říjen"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "listopad"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "pro"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Týd"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekundy"
@@ -2364,16 +2358,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
"Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“"
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "za sekundu"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "za minutu"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "za hodinu"
@@ -2507,15 +2501,15 @@ msgstr ""
msgid "Databases"
msgstr "Databáze"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2527,20 +2521,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vložit"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Úpravy"
@@ -2598,12 +2592,12 @@ msgstr "Uživatelé"
msgid "Synchronize"
msgstr "Synchronizace"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binární log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Proměnné"
@@ -2620,8 +2614,9 @@ msgid "Engines"
msgstr "Úložiště"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Chyba"
@@ -2740,35 +2735,35 @@ msgstr ""
"Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení "
"stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Náhled není k dispozici."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "zvolit"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Výchozí vzhled %s nebyl nalezen!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Vzhled %s nebyl nalezen!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Vzhled"
@@ -2820,21 +2815,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od "
-"-3.402823466E+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do "
-"3.402823466E+38"
+"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -3.402823466E"
+"+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od "
-"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od "
+"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -"
+"1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od "
"2.2250738585072014E-308 do 1.7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -3088,8 +3082,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -3195,7 +3189,7 @@ msgstr "sdílený"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabulky"
@@ -3246,11 +3240,11 @@ msgstr "možný pokus o exploit"
msgid "numeric key detected"
msgstr "detekován číselný klíč"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Nepodařilo se načíst konfigurační soubor"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3258,12 +3252,12 @@ msgstr ""
"Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv "
"chyby vypsané níže."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nepodařilo se nahrát výchozí konfiguraci ze souboru: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3271,21 +3265,21 @@ msgstr ""
"V konfiguračním souboru musí být nastaven parametr [code]$cfg"
"['PmaAbsoluteUri'][/code]!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Chybné číslo serveru: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "V konfiguraci máte špatnou přihlašovací metodu:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
@@ -3320,8 +3314,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-dotaz"
@@ -3359,7 +3353,7 @@ msgid "Create PHP Code"
msgstr "Vytvořit PHP kód"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Obnovit"
@@ -3380,95 +3374,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upravit zde"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilování"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d. %b %Y, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Chybějící parametr:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "První"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Předchozí"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Následující"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Poslední"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Přejít na databázi „%s“."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klikněte pro přepnutí"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procházet váš počítač:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nebyl zvolen žádný soubor pro nahrání"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Spustit"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Vytisknout"
@@ -3640,9 +3634,9 @@ msgstr "Obnovit výchozí hodnotu"
msgid "Allow users to customize this value"
msgstr "Povolit uživatelům změnit tuto hodnotu"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Původní"
@@ -3803,7 +3797,7 @@ msgid "Compress on the fly"
msgstr "Komprimovat za letu"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurační soubor"
@@ -3862,7 +3856,7 @@ msgstr "Schovat akce při zobrazení struktury 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:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Zobrazit binární obsah šestnáctkově (HEX)"
@@ -4587,7 +4581,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minimální počet tabulek pro zobrazení filtru tabulek"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Minimální počet tabulek pro zobrazení filtru databází"
@@ -5744,7 +5737,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Povolit záložku Pro vývojáře v nastaveních"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Zkontrolovat nejnovější verzi"
@@ -5885,27 +5878,27 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP."
msgid "possible deep recursion attack"
msgstr "možný útok rekurzí"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Server neodpovídá."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Podrobnosti..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6067,8 +6060,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -6262,48 +6255,53 @@ msgstr "Parametry pro výstupní formát:"
msgid "Language"
msgstr "Jazyk"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Uložit upravovaná data"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Obnovit pořadí sloupců"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Počáteční řádek"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Počet řádků"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Režim"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vodorovném"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vodorovném (otočené hlavičky)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "svislém"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Záhlaví opakovat každých %s řádek"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "řádcích"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Seřadit podle klíče"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6321,89 +6319,89 @@ msgstr "Seřadit podle klíče"
msgid "Options"
msgstr "Nastavení"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Zkrácené texty"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Celé texty"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relační klíč"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Pole pro zobrazení v relacích"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Zobrazit binární obsah"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Zobrazit obsah BLOBu"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Nepoužít při prohlížení transformace"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Text (WKT)"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Binární (WKB)"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Řádek byl smazán"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Ukončit"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "v dotazu"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Zobrazeny záznamy"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "celkem"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dotaz trval %01.4f sekund"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operace s výsledky dotazu"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Náhled pro tisk (s kompletními texty)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Zobrazit graf"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Zobrazit data GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Vytvořit pohled"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Odkaz nenalezen"
@@ -6449,7 +6447,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávací paměť"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -6738,8 +6736,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@@ -6862,12 +6860,12 @@ msgstr "Zobrazit MIME typy"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Počítač"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Vygenerováno"
@@ -7085,8 +7083,8 @@ msgstr "Nebyla nalezena žádná data zobrazení GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Pokus o přepsání GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)."
@@ -7258,6 +7256,98 @@ msgstr "Režim kompatibility SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkce"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Skrýt"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binární"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Toto pole možná nepůjde kvůli délce upravit"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binární - neupravujte"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "soubor z adresáře pro upload"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Upravit/Vložit"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Pokračovat ve vkládání s %s řádky"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "a poté"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Vložit jako nový řádek"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Vložit jako nový řádek a ignorovat chyby"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Zobrazit dotaz pro vložení"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Návrat na předchozí stránku"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Vložit další řádek"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Návrat na tuto stránku"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Upravit následující řádek"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi "
+"směry"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Hodnota"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Zobrazuji SQL dotaz"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ID vloženého řádku: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7268,32 +7358,32 @@ msgstr "Žádná"
msgid "Convert to Kana"
msgstr "Převést na Kanu"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Z"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Na"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Provést"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Přidat tabulce předponu"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Přidat předponu"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Opravdu si přejete vykonat následující příkaz?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Žádná změna"
@@ -7301,11 +7391,6 @@ msgstr "Žádná změna"
msgid "Charset"
msgstr "Znaková sada"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binární"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulharština"
@@ -7639,18 +7724,10 @@ msgid "Slave status"
msgstr "Stav podřízeného"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Proměnná"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Hodnota"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID serveru"
@@ -7979,11 +8056,6 @@ msgstr "Spustit rutinu"
msgid "Routine parameters"
msgstr "Parametry rutiny"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkce"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Bohužel se nepodařilo obnovit odstraněnou spoušť."
@@ -8305,7 +8377,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Spustit SQL dotaz(y) na databázi %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Vyčistit"
@@ -8313,11 +8385,11 @@ msgstr "Vyčistit"
msgid "Columns"
msgstr "Pole"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Přidat tento SQL dotaz do oblíbených"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
@@ -8341,10 +8413,6 @@ msgstr "Zobrazit zde tento dotaz znovu"
msgid "View only"
msgstr "Zobrazit"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "soubor z adresáře pro upload"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8457,8 +8525,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
-"%spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
+"spopisy transformací%s"
#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
@@ -8540,18 +8608,14 @@ msgstr "Operátor"
msgid "Table Search"
msgstr "Vyhledávání v tabulce"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Upravit/Vložit"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
"No description is available for this transformation. Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co "
-"%s dělá."
+"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co %"
+"s dělá."
#: libraries/transformations/application_octetstream__download.inc.php:13
msgid ""
@@ -8760,7 +8824,7 @@ msgstr "Verze protokolu"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Uživatel"
@@ -8899,7 +8963,6 @@ msgid "No databases"
msgstr "Žádné databáze"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Filtrovat databáze podle jména"
@@ -8980,10 +9043,6 @@ msgstr "Skrýt/Zobrazit vše"
msgid "Hide/Show Tables with no relation"
msgstr "Skrýt/Zobrazit tabulky bez relací"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Skrýt"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Počet tabulek"
@@ -9136,8 +9195,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
-"%sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
+"sNastavovacího skriptu%s."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -9176,17 +9235,17 @@ msgstr "Soubor neexistuje"
msgid "Select binary log to view"
msgstr "Zvolte binární log pro zobrazení"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Soubory"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Zobrazit zkrácené dotazy"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Zobrazit celé dotazy"
@@ -9624,8 +9683,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -9748,7 +9807,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Zobrazit stav nadřízeného"
@@ -9895,12 +9954,12 @@ msgstr ""
"Tento server není nastaven jako podřízený v replikačním procesu. Přejete si "
"ho nastavit?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Vlákno %s bylo úspěšně zabito."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9908,115 +9967,115 @@ msgstr ""
"phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již "
"skončil."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Obslužné rutiny"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Vyrovnávací paměť dotazů"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Počet vláken"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dočasná data"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Odložené inserty"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Vyrovnávací paměť klíčů"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Použité výběry"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Řazení"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinátor transakcí"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Zavřít všechny tabulky"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Zobrazit otevřené tabulky"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Zobrazit podřízené servery"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Zobrazit stav podřízených serverů"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Vyprázdnit vyrovnávací paměť dotazů"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Všechny stavové proměnné"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Poradce"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Obnovovací frekvence: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtry"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Obsahující slovo:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Zobrazit jen hodnoty s upozorněním"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrovat podle kategorie..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Zobrazit neformátované hodnoty"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Související odkazy:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Spustit analýzu"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Návod"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10024,7 +10083,7 @@ msgstr ""
"Poradce vám může doporučit změny v nastavení serveru analýzou stavových "
"proměnných."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10034,7 +10093,7 @@ msgstr ""
"jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro "
"váš systém."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10044,7 +10103,7 @@ msgstr ""
"(čtením dokumentace) a jak případně vrátit změny zpět. Špatné nastavení může "
"mít velmi negativní vliv na výkon serveru."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10055,31 +10114,31 @@ msgstr ""
"znatelnému zlepšení, můžete nastavení vrátit zpět."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Dotazů od spuštění: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Údaj"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Síťový provoz od spuštění: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Tento MySQL server běží %1$s. Čas spuštění: %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10087,17 +10146,17 @@ msgstr ""
"Tento server pracuje jako nadřízený i podřízený v "
"replikačním procesu."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10105,11 +10164,11 @@ msgstr ""
"Pro více informací o stavu replikace se podívejte do sekce replikace."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Stav replikace"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10117,46 +10176,46 @@ 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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Přijato"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Odesláno"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "maximum současných připojení"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Nepovedených pokusů"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Přerušené"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Příkaz"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
"Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Počet chybných připojení k MySQL serveru."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10166,16 +10225,16 @@ msgstr ""
"binlog_cache_size a musely použít dočasný soubor pro uložení příkazů "
"transakce."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Celkový počet připojení (i chybných) k MySQL serveru."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10186,18 +10245,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Počet vytvořených dočasných souborů."
-#: server_status.php:1324
+#: server_status.php:1327
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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10205,7 +10264,7 @@ msgstr ""
"Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba "
"(pravděpodobně duplicitní klíč)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10213,23 +10272,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet řádků zapsaných pomocí INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Počet provedených příkazů FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Počet interních příkazů COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Počet požadavků na smazání řádku."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10238,7 +10297,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10248,7 +10307,7 @@ msgstr ""
"provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, "
"pokud je col1 v klíči."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10256,7 +10315,7 @@ msgstr ""
"Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota "
"znamená, že dotazy správně využívají klíče."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10266,7 +10325,7 @@ msgstr ""
"zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo "
"prohledáváte klíč."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10274,7 +10333,7 @@ msgstr ""
"Počet požadavků na přečtení předchozího řádku z klíče. Používané pro "
"optimalizaci dotazů ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10286,7 +10345,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í klíčů."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10296,35 +10355,35 @@ msgstr ""
"Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká "
"pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interních příkazů ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Počet požadavků na aktualizaci řádku."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Počet požadavků na vložení řádku."
-#: server_status.php:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Počet změněných stránek."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Počet volných stránek."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10333,7 +10392,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:1346
+#: server_status.php:1349
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 "
@@ -10345,11 +10404,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Celková velikost InnoDB bufferů, ve stránkách."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10357,7 +10416,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10365,11 +10424,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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet provedených logických čtení."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10377,7 +10436,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:1352
+#: server_status.php:1355
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 "
@@ -10390,55 +10449,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisů provedených do InnoDB bufferu."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Počet provedených synchronizací fsync()."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Počet nevyřízených synchronizací fsync()."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Počet nevyřízených čtení."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Počet nevyřízených zápisů."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Velikost přečtených dat, v bajtech."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Počet provedených čtení dat."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Počet provedených zápisů dat."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Velikost zapsaných dat, v bajtech."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10446,35 +10505,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Počet požadavků na zápis do logovacího souboru."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Počet nevyřízených synchronizací logovacích souborů."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Počet nevyřízených zápisů do logovacích souborů."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Počet bajtů zapsaných do logovacího souboru."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Počet vytvořených stránek."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10482,51 +10541,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Počet přečtených stránek."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Počet zapsaných stránek."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet řádků odstraněných z InnoDB tabulek."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet řádků vložených do InnoDB tabulek."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Počet řádků přečtených z InnoDB tabulek."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet řádků aktualizovaných v InnoDB tabulkách."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10534,7 +10593,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:1385
+#: server_status.php:1388
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."
@@ -10542,7 +10601,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:1386
+#: server_status.php:1389
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 "
@@ -10551,15 +10610,15 @@ 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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Procento využití vyrovnávací paměti klíčů (vypočítaná hodnota)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10569,7 +10628,7 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10577,22 +10636,22 @@ msgstr ""
"Úspěšnost vyrovnávací paměti klíčů spočítaná jako poměr skutečných a "
"požadovaných čtení (vypočítaná hodnota)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná "
"hodnota)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10602,17 +10661,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "Maximální počet současně používaných připojení od spuštění serveru."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10620,19 +10679,19 @@ msgstr ""
"Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, "
"pravděpodobně máte malou vyrovnávací paměť pro tabulky."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Počet otevřených souborů."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Počet aktuálně otevřených tabulek."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10642,19 +10701,19 @@ msgstr ""
"na problému s fragmentací, která může být vyřešena spuštěním příkazu FLUSH "
"QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Počet zásahů vyrovnávací paměti dotazů."
-#: server_status.php:1404
+#: server_status.php:1407
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:1405
+#: server_status.php:1408
msgid ""
"The number of queries that have been removed from the cache to free up "
"memory for caching new queries. This information can help you tune the query "
@@ -10666,7 +10725,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10674,19 +10733,19 @@ msgstr ""
"Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli "
"nastavení query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Počet dotazů ve vyrovnávací paměti dotazů."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikace."
-#: server_status.php:1410
+#: server_status.php:1413
msgid ""
"The number of joins that do not use indexes. If this value is not 0, you "
"should carefully check the indexes of your tables."
@@ -10694,12 +10753,12 @@ msgstr ""
"Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli "
"byste zkontrolovat klíče tabulek."
-#: server_status.php:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10707,7 +10766,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 klíče tabulek.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10715,38 +10774,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10755,23 +10814,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Počet řazení, které byly omezeny rozsahem."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Počet řazených řádek."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10782,7 +10841,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10792,11 +10851,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Počet aktuálně otevřených připojení."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10807,47 +10866,47 @@ 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:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Úspěšnost vyrovnávací paměti vláken (vypočítaná hodnota)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Počet vláken, která nespí."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Spustit monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Návod/Nastavení"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Ukončit upravování grafů"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Přidat graf"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Upravit/Uspořádat grafy"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Obnovovací frekvence"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Sloupce grafu"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Uspořádání grafů"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10855,15 +10914,15 @@ msgstr ""
"Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější "
"nastavení, můžete ho chtít exportovat a zálohovat."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Obnovit na výchozí hodnotu"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instrukce monitoru"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10876,7 +10935,7 @@ msgstr ""
"log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech "
"dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10888,11 +10947,11 @@ msgstr ""
"podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít "
"zobrazování grafů s informacemi o serveru."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Používání monitoru:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10902,7 +10961,7 @@ msgstr ""
"můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či "
"odstranit grafy."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10914,11 +10973,11 @@ msgstr ""
"nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další "
"analýze."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Poznámka:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10930,79 +10989,79 @@ msgstr ""
"vybírat krátké časové období a záznam vypnout poté co již monitorování "
"nebudete potřebovat."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Předdefinované grafy"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Stavové proměnné"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Vyberte série:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Obvykle monitorované"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "nebo zadejte jméno proměnné:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Zobrazit jako rozdíl"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Vynásobit"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Přidat jednoty"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Přidat tuto sérii"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Odstranit série"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Série v grafu:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Statistiky záznamů"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Zvolený časový rozsah:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Před sloučením odstranit proměnná data v příkazech INSERT"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Zvolte ze kterého záznamu chcete vygenerovat statistiku."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Výsledky jsou sloučeny podle textu dotazu."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analýza dotazu"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -11010,7 +11069,7 @@ msgstr[0] "%d sekunda"
msgstr[1] "%d sekundy"
msgstr[2] "%d sekund"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11145,7 +11204,7 @@ msgstr "Hodnota sezení"
msgid "Global value"
msgstr "Globální hodnota"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Stáhnout"
@@ -11220,39 +11279,39 @@ msgstr "Žádné servery nejsou nastaveny"
msgid "New server"
msgstr "Nový server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Výchozí jazyk"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "nechat uživatele, aby si vybral"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- žádný -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Výchozí server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Konec řádku"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Zobrazit"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Nahrát"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Domovská stránka phpMyAdmina"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Přispějte"
@@ -11407,8 +11466,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
-"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
+"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:310
@@ -11419,8 +11478,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
-"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
+"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@@ -11481,51 +11540,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Chybná data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Projít hodnoty cizích klíčů"
-#: sql.php:255
+#: sql.php:253
#, 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:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Opravdu si přejete vykonat následující příkaz?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ID vloženého řádku: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Zobrazuji jako PHP kód"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Zobrazuji SQL dotaz"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Proběhlo zkontrolování SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Výsledek SQL dotazu"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Vygeneroval"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s klíči v tabulce „%s\""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Název"
@@ -11538,58 +11588,6 @@ msgstr "Tabulka %1$s byla úspěšně změněna"
msgid "The columns have been moved successfully."
msgstr "Vybraná pole byla úspěšně přesunuta."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Toto pole možná nepůjde kvůli délce upravit"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binární - neupravujte"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Vložit jako nový řádek"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Vložit jako nový řádek a ignorovat chyby"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Zobrazit dotaz pro vložení"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "a poté"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Návrat na předchozí stránku"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Vložit další řádek"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Návrat na tuto stránku"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Upravit následující řádek"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi "
-"směry"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Pokračovat ve vkládání s %s řádky"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12174,31 +12172,37 @@ msgstr "Sledovat tyto příkazy pro úpravu dat:"
msgid "Create version"
msgstr "Vytvořit verzi"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Provést „dotaz podle příkladu“ (zástupný znak: „%“) pro dva různé sloupce"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Další parametr vyhledávání"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Použít tento sloupec pro přiřazení názvu každému bodu"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Nejvyšší počet vykreslených řádků"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Projít/Upravit body"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Návod k použití"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Původní"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Získejte další témata vzhledu!"
@@ -12318,8 +12322,8 @@ msgid ""
"You have a slow query rate of %s per hour, you should have less than 1%% per "
"hour."
msgstr ""
-"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod "
-"1%%."
+"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod 1%"
+"%."
#: libraries/advisory_rules.txt:77
msgid "Long query time"
@@ -12572,8 +12576,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"V současné době je volno %s%% vyrovnávací paměti. Tato hodnota by se měla "
"držet nad 80%%"
@@ -12725,11 +12729,11 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
-"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod "
-"10%%."
+"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%"
+"%."
#: libraries/advisory_rules.txt:211
msgid "Rate of sorts that cause temporary tables"
@@ -13477,6 +13481,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastaveno na 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Použijte kolečko myši pro změnu velikosti grafu."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Kliknutím a táhnutím myší se můžete po grafu pohybovat."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Texty byly pro vykreslení převedeny na čísla"
+
#~ msgid "String"
#~ msgstr "Řetězce"
@@ -13883,9 +13896,6 @@ msgstr "concurrent_insert je nastaveno na 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Spoušť se jménem %s nebyla nalezena"
-#~ msgid "rows"
-#~ msgstr "řádcích"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "řádků začínající od"
diff --git a/po/cy.po b/po/cy.po
index 79b9be90b8..e57878f2a4 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,24 +6,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:20+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Welsh \n"
-"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Dangos pob"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -31,7 +31,7 @@ msgstr "Dangos pob"
msgid "Page number:"
msgstr "Rhif tudalen:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -41,21 +41,22 @@ msgstr ""
"ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod "
"caniatáu diweddariadau traws-ffenest."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Chwilio"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -71,28 +72,27 @@ msgstr "Chwilio"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Ewch"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Enw allweddol"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Disgrifiad"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Defnyddiwch y gwerth hwn"
@@ -125,12 +125,12 @@ msgstr "Sylwadau tabl"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Colofn"
@@ -139,6 +139,7 @@ msgstr "Colofn"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -146,9 +147,9 @@ msgstr "Colofn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Math"
@@ -156,12 +157,12 @@ msgstr "Math"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -200,13 +201,13 @@ msgstr "Sylwadau"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -217,19 +218,19 @@ msgstr "Na"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -362,7 +363,7 @@ msgstr "Tabl"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rhesi"
@@ -414,28 +415,28 @@ msgid "Switch to %svisual builder%s"
msgstr "adeiladwr gweledol"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Trefnu"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Esgynnol"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Disgynnol"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Dangos"
@@ -456,8 +457,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Or"
@@ -527,8 +528,8 @@ msgstr[0] "%s ergyd mewn tabl %s"
msgstr[1] "%s ergyd mewn tabl %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Pori"
@@ -537,14 +538,14 @@ msgstr "Pori"
msgid "Delete the matches for the %s table?"
msgstr "Dileu'r cydweddau ar gyfer tabl %s"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Dileu"
@@ -616,11 +617,11 @@ msgstr "Mae tracio'n weithredol"
msgid "Tracking is not active."
msgstr "Nid yw tracio'n weithredol"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -631,7 +632,7 @@ msgstr "Dangos"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Dyblygiad"
@@ -645,20 +646,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Gyda'r dewis:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Dewis Pob"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -670,27 +671,27 @@ msgstr "Gwiriwch dablau â gorbenion"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Allforio"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Argraffu golwg"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Gwagu"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -716,13 +717,13 @@ msgstr "Dadansoddi tabl"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Rename table to"
msgid "Replace table prefix"
msgstr "Ailenwi tabl i"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -741,8 +742,8 @@ msgstr "Tablau a draciwyd"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Cronfa ddata"
@@ -760,7 +761,7 @@ msgstr "Diweddarwyd"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Statws"
@@ -866,49 +867,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Routines"
msgid "Add a point"
msgstr "Rheolweithiau"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Terfynwyd llinellau gan"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -918,17 +919,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Ychwanegwch cyfyngiadau"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new server"
msgid "Add an inner ring"
msgstr "Ychwanegwch weinydd newydd"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -951,8 +952,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@@ -1000,7 +1001,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Clustnodi %s a grëwyd"
@@ -1024,7 +1025,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1039,7 +1040,7 @@ msgstr "Nôl"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
@@ -1049,7 +1050,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
msgid "Do you really want to execute \"%s\"?"
msgstr "A ydych chi wir am"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
@@ -1152,23 +1153,23 @@ msgstr "Cau"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Golygu"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Dewis Gweinydd"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "Show insert query"
msgid "Live query chart"
@@ -1181,23 +1182,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Cyfanswm"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1219,7 +1220,7 @@ msgstr "Dewis Gweinydd"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prosesau"
@@ -1237,7 +1238,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
@@ -1288,14 +1289,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1355,32 +1356,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1398,11 +1399,11 @@ msgstr "%s tabl"
msgid "Questions"
msgstr "Fersiynau"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1429,10 +1430,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Dim"
@@ -1533,7 +1534,7 @@ msgstr "Nodweddion perthynas cyffredinol"
msgid "Current settings"
msgstr "Nodweddion perthynas cyffredinol"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1625,9 +1626,9 @@ msgstr "Dadansoddi"
msgid "Explain output"
msgstr "Esbonio SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Amser"
@@ -1740,7 +1741,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Mewnforio"
@@ -1890,18 +1891,18 @@ msgstr "Indecsau"
msgid "Show indexes"
msgstr "Dangos grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgctxt "BLOB repository"
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Galluogwyd"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1986,7 +1987,7 @@ msgstr "Dangos ymholiad mewnosod"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Newid"
@@ -1997,17 +1998,18 @@ msgstr "Newid"
msgid "Query execution time"
msgstr "Gweithrediad SQL"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "Dydy %d ddim yn rhif rhes dilys."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Cadw"
@@ -2038,178 +2040,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data definition statement"
msgid "Data point content"
msgstr "Datganiad diffiniad data"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Anwybyddu"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s column(s)"
msgid "Add columns"
msgstr "Ychwanegwch %s colofn"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Dewis Allwedd Estron"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Dewis colofn i'w dangos"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Pwyso i ddewis"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Columns"
msgid "Copy column name"
msgstr "Colofnau"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Yn dangos rhesi"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generadu Cyfrinair"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generadu"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Newid cyfrinair"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "Llu"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2217,31 +2211,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Gwiriwch y fersiwn diweddaraf"
-#: js/messages.php:378
+#: js/messages.php:374
#, 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:397
+#: js/messages.php:393
msgid "Done"
msgstr "Gorffen"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Cynt"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2249,149 +2243,149 @@ msgid "Next"
msgstr "Nesaf"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Heddiw"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Ionawr"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Chwefror"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Mawrth"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Ebrill"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Mehefin"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Gorffennaf"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Awst"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Medi"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Hydref"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Tachwedd"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Rhagfyr"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Ion"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Chwe"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Maw"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Ebr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Meh"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Gor"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aws"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Med"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Hyd"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Tach"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Rhag"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Dydd Sul"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Dydd Llun"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Dydd Mawrth"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "DYdd Mercher"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Dydd Iau"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Dydd Gwener"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Dydd Sadwrn"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2399,97 +2393,97 @@ msgid "Sun"
msgstr "Sul"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Llun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Maw"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Iau"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Gwe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sad"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Llu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Ia"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Gw"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Wy"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Dim"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Awr"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Munud"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Eiliad"
@@ -2540,16 +2534,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2676,15 +2670,15 @@ msgstr ""
msgid "Databases"
msgstr "Cronfeydd Data"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Gweinydd"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2696,20 +2690,20 @@ msgid "Structure"
msgstr "Strwythur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Mewnosod"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Gweithrediadau"
@@ -2769,12 +2763,12 @@ msgstr "Defnyddiwr"
msgid "Synchronize"
msgstr "Cydamseru"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Log deuaidd"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Newidynnau"
@@ -2791,8 +2785,9 @@ msgid "Engines"
msgstr "Peiriannau"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Gwall"
@@ -2912,35 +2907,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Dim rhagolwg ar gael"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "cymerwch e"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Thema diofyn %s heb ei darganfod!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Heb ddarganfod thema ddiofyn %s!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2981,14 +2976,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3246,11 +3241,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
-"%1$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
+"$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3359,7 +3354,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tablau"
@@ -3412,45 +3407,45 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Failed to write file to disk."
msgid "Failed to read configuration file"
msgstr "Methu ag ysgrifennu i'r ddisg."
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Indecs gweinydd annilys: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Dylech uwchraddio i %s %s neu'n well."
@@ -3485,8 +3480,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Ymholiad SQL"
@@ -3526,7 +3521,7 @@ msgid "Create PHP Code"
msgstr "Creu Cod PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Adfywio"
@@ -3547,43 +3542,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Mewnol"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Proffilio"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y am %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rheolweithiau"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Dechrau"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3591,8 +3586,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Cynt"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3600,57 +3595,57 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nesaf"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Diwedd"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Neidio i gronfa ddata "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Pwyso i ddewis"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Argraffu"
@@ -3832,9 +3827,9 @@ msgstr "Adfer gwerth diofyn"
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Ailosod"
@@ -3984,7 +3979,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4048,7 +4043,7 @@ msgstr "Cynnwys pennawd y tabl"
msgid "Show binary contents as HEX by default"
msgstr "Dangos cynnwys deuaidd fel HEX"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Dangos cynnwys deuaidd fel HEX"
@@ -5864,7 +5859,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Gwiriwch y fersiwn diweddaraf"
@@ -6016,27 +6011,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Dyw'r gweinydd ddim yn ymateb"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Manylion..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6217,8 +6212,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6422,54 +6417,59 @@ msgstr ""
msgid "Language"
msgstr "iaith"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Restore column order"
msgstr "Ychwanegu/Dileu colofnau"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of columns"
msgid "Number of rows"
msgstr "Nifer y colofnau"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mo"
msgid "Mode"
msgstr "Llu"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "llorweddol"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "llorweddol (penawdau wedi cylchdroi)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "fertigol"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Gweithredu ymholiad a glustnodwyd"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Pori"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Trefnu gan allwedd"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6487,99 +6487,99 @@ msgstr "Trefnu gan allwedd"
msgid "Options"
msgstr "Opsiynau"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Testunau Rhannol"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Testunau Llawn"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Allwedd perthynol"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Colofn dangosydd perthynol"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Dangos cynnwys deuaidd"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Dangos cynnwys BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Trawsffurfiad porwr"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Cafodd y rhes ei dileu"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Lladd"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "mewn ymholiad"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Yn dangos rhesi"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "cyfanswm"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Gweithrediadau canlyniadau ymholiad"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Argraffu golwg (gyda thestunau llawn)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Dangos sgema PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Crëwch fersiwn"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Methu â darganfod y cysylltiad"
@@ -6623,7 +6623,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pwll Byffer"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Statws InnoDB"
@@ -6874,8 +6874,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7022,12 +7022,12 @@ msgstr "Mathau MIME ar gael"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Gwesteiwr"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Amser Generadu"
@@ -7235,8 +7235,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7408,6 +7408,100 @@ msgstr "Modd cytunedd SQL"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Swyddogaeth"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Cuddio"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Deuaidd"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Deuaidd - peidiwch â golygu"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Mewnosod"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ac yna"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Mewnosod fel rhes newydd"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Dangos ymholiad mewnosod"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Dychwelyd i'r dudalen flaenorol"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Mewnosod rhes newydd arall"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Dychwelyd i'r dudalen hon"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Golygu'r rhes nesaf"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i "
+"symud unrhyw le"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Gwerth"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7418,36 +7512,36 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "Gw"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Gyrru"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "A ydych chi wir am"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Dim newid"
@@ -7455,11 +7549,6 @@ msgstr "Dim newid"
msgid "Charset"
msgstr "Set nodau"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Deuaidd"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bwlgareg"
@@ -7784,18 +7873,10 @@ msgid "Slave status"
msgstr "Statws y caeth"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Newidyn"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Gwerth"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID y Gweinydd"
@@ -8147,11 +8228,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Rheolweithiau"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Swyddogaeth"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8515,7 +8591,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Clirio"
@@ -8523,11 +8599,11 @@ msgstr "Clirio"
msgid "Columns"
msgstr "Colofnau"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Clustnodwch yr ymholiad SQL hwn"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8551,10 +8627,6 @@ msgstr "Dangoswch yr ymholiad hwn yma eto"
msgid "View only"
msgstr "Dangos yn unig"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8730,12 +8802,6 @@ msgstr ""
msgid "Table Search"
msgstr "Chwilio"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Mewnosod"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8921,7 +8987,7 @@ msgstr "Fersiwn protocol"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Defnyddiwr"
@@ -9133,10 +9199,6 @@ msgstr "Cuddio/Dangos pob"
msgid "Hide/Show Tables with no relation"
msgstr "Cuddio/Dangos Tablau heb berthynas"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Cuddio"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Nifer y tablau"
@@ -9351,17 +9413,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Ffeiliau"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9796,8 +9858,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9914,7 +9976,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10051,159 +10113,159 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Adfywio"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Hidlydd"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show only listed databases"
msgid "Show only alert values"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show only listed databases"
msgid "Show unformatted values"
msgstr "Dangoswch gronfeydd data a restrir yn unig"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Perthnasau"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "Ymholiad"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Swyddogaethau"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10211,117 +10273,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Gorchymyn"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10329,78 +10391,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10408,7 +10470,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10416,42 +10478,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10459,33 +10521,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10494,244 +10556,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Fformat y ffeil a mewnforiwyd"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10739,99 +10801,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10839,18 +10901,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10858,70 +10920,70 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Nid yw tracio'n weithredol"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Routines"
msgid "Add chart"
msgstr "Rheolweithiau"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Adfywio"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "Ychwanegu/Dileu colofnau"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Adfer gwerth diofyn"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10930,7 +10992,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10938,18 +11000,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10957,11 +11019,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10969,93 +11031,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Tynnwch y gronfa ddata"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Dewis Tablau"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Enw tabl annilys"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Ychwanegwch weinydd newydd"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Dangos ystadegau"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Dewis Tablau"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "Ymholiad"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -11063,7 +11125,7 @@ msgid_plural "%d seconds"
msgstr[0] "Eiliad"
msgstr[1] "Eiliad"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11198,7 +11260,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11262,39 +11324,39 @@ msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
msgid "New server"
msgstr "Gweinydd newydd"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Iaith ddiofyn"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "gadewch i'r defnyddiwr ddewis"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "-dim-"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Gweinydd diofyn"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Diwedd y llinell"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Dangos"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "llwytho"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "hafan phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Rhodd"
@@ -11482,55 +11544,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Dim cronfeydd data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "A ydych chi wir am"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Dilysu SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11545,58 +11598,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "Cafodd cronfa ddata %s ei gollwng."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Deuaidd - peidiwch â golygu"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Mewnosod fel rhes newydd"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Dangos ymholiad mewnosod"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ac yna"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Dychwelyd i'r dudalen flaenorol"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Mewnosod rhes newydd arall"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Dychwelyd i'r dudalen hon"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Golygu'r rhes nesaf"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i "
-"symud unrhyw le"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12234,34 +12235,40 @@ msgstr "Traciwch y datganiadau trin data hyn:"
msgid "Create version"
msgstr "Crëwch fersiwn"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "mewn ymholiad"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
msgstr "Estyniad PHP i'w ddefnyddio"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Ailosod"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Cael gafael ar mwy o themâu"
@@ -12631,8 +12638,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12763,8 +12770,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13494,8 +13501,8 @@ msgstr ""
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
-#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata "
-#~ "%s?"
+#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %"
+#~ "s?"
#, fuzzy
#~ msgid "Unknown error while uploading."
@@ -13589,9 +13596,6 @@ msgstr ""
#~ msgid "No trigger with name %s found"
#~ msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
-#~ msgid "rows"
-#~ msgstr "Pori"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rhes(i) yn dechrau o rhes #"
diff --git a/po/da.po b/po/da.po
index 20c2cb5f25..b0a6b656a0 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:00+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: danish \n"
-"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Vis alle"
msgid "Page number:"
msgstr "Side nummer:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"overliggende vindue eller din browser blokerer for tvær-vindue opdateringer "
"i sikkerhedsindstillingerne."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Søg"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Søg"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Udfør"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nøglenavn"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Beskrivelse"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Brug denne værdi"
@@ -121,12 +121,12 @@ msgstr "Tabel kommentarer"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolonnenavn"
@@ -135,6 +135,7 @@ msgstr "Kolonnenavn"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Kolonnenavn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Datatype"
@@ -152,12 +153,12 @@ msgstr "Datatype"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulværdi"
@@ -196,13 +197,13 @@ msgstr "Kommentarer"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Nej"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rækker"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Skift til %svisuel konstruktør%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sorter"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Faldende"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Vis"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Del (Slet)"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Eller"
@@ -522,8 +523,8 @@ msgstr[0] "%s sammenfald i tabel %s"
msgstr[1] "%s sammenfald i tabel %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Vis"
@@ -532,14 +533,14 @@ msgstr "Vis"
msgid "Delete the matches for the %s table?"
msgstr "Slet sammenfald for %s tabellen?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Slet"
@@ -607,11 +608,11 @@ msgstr "Sporing er aktiv."
msgid "Tracking is not active."
msgstr "Sporing er ikke aktiv."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s."
@@ -622,7 +623,7 @@ msgstr "Visning"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikation"
@@ -636,20 +637,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard datalageret på denne MySQL-server."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Med det markerede:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Vælg alle"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -661,29 +662,29 @@ msgstr "Check tabeller der har overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Udskriv"
# By "Empty", if this is an action, it should translate to "Tøm" but if it's a
# state it should translate to "Tom".
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Tøm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -709,11 +710,11 @@ msgstr "Analyser tabel"
msgid "Add prefix to table"
msgstr "Tilføj præfiks til tabel"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Erstat tabel præfiks"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopier tabel med præfiks"
@@ -732,8 +733,8 @@ msgstr "Sporede tabeller"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -751,7 +752,7 @@ msgstr "Opdateret"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -851,45 +852,45 @@ msgstr "Brug OpenStreetMaps som basislag"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometri"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punkt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punkt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Tilføj et punkt"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linjestreng"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Ydre ring"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Indre ring"
@@ -897,15 +898,15 @@ msgstr "Indre ring"
msgid "Add a linestring"
msgstr "Tilføj en linjestreng"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Tilføj en indre ring"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Tilføj polygon"
@@ -928,11 +929,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
-"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
+"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:216 import.php:443
@@ -980,7 +981,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Kunne ikke indlæse importplugins, check venligst din installation!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bogmærke %s oprettet"
@@ -1008,7 +1009,7 @@ msgstr ""
"mindre du forøger PHP-tidsbegrænsningerne."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1024,7 +1025,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin er mere brugervenlig med en browser, der kan klare frames."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
@@ -1034,7 +1035,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
msgid "Do you really want to execute \"%s\"?"
msgstr "Er du sikker på at du vil "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Du er ved at DESTRUERE en komplet database!"
@@ -1125,21 +1126,21 @@ msgstr "Luk"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ret"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Realtids trafikoversigt"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Realtids forbind./opgave-oversigt"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Realtid forespørgsels-oversigt"
@@ -1150,23 +1151,23 @@ msgstr "Statiske data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Andet"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1186,7 +1187,7 @@ msgstr "Server-trafik (i KiB)"
msgid "Connections since last refresh"
msgstr "Forbindelser siden sidste visning"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processer"
@@ -1204,7 +1205,7 @@ msgstr "Spørgsmål siden sidste visning"
msgid "Questions (executed statements by the server)"
msgstr "Spørgsmål (eksekverede forespørgsler på serveren)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistik over forespørgsler"
@@ -1249,14 +1250,14 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1308,32 +1309,32 @@ msgstr "Bytes sendt"
msgid "Bytes received"
msgstr "Bytes modtaget"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Forbindelser"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1349,11 +1350,11 @@ msgstr "%s tabel"
msgid "Questions"
msgstr "Spørgsmål"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Indstillinger"
@@ -1374,10 +1375,10 @@ msgid "Please add at least one variable to the series"
msgstr "Tilføj mindst en variabel til serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ingen"
@@ -1477,7 +1478,7 @@ msgstr "Ændre indstillinger"
msgid "Current settings"
msgstr "Aktuelle indstillinger"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Diagramtitel"
@@ -1570,9 +1571,9 @@ msgstr "Analyser"
msgid "Explain output"
msgstr "Forklar SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tid"
@@ -1685,7 +1686,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importer"
@@ -1809,19 +1810,19 @@ msgstr "Skjul indekser"
msgid "Show indexes"
msgstr "Vis indekser"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Slå fremmednøgle-checks fra"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Slået til"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1899,7 +1900,7 @@ msgstr "Vis forespørgselsbox"
msgid "No rows selected"
msgstr "Ingen rækker valgt"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ret"
@@ -1908,17 +1909,18 @@ msgstr "Ret"
msgid "Query execution time"
msgstr "Eksekveringstid for forespørgsel"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d er ikke et gyldigt rækkenummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Gem"
@@ -1943,82 +1945,74 @@ msgid "Hovering over a point will show its label."
msgstr "Ved at holde pointeren over et punkt vises dets etiket"
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Brug musehjul til at zoome ind eller ud af plottet."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Klik og træk musen for at navigere i plottet"
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Klik på linket for nulstil zoom for at vende tilbage til den oprindelige "
"tilstand."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Klik et datapunkt for at se og muligvis redigere datarækken"
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Plottet kan ændres i størrelse ved at trække det i nederste højre hjørne."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Strenge er konverteret til heltal i plottet."
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Vælg to kolonner"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Vælg to forskellige kolonner"
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Forespørgselsresultat operationer"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Data pointer-størrelse"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopi"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Tilføj kolonner"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Vælg refereret nøgle"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Vælg fremmednøgle"
-#: js/messages.php:343
+#: js/messages.php:339
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:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Vælg kolonne til visning"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -2026,15 +2020,15 @@ msgstr ""
"Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke "
"gemmer dem. Vil du fortsætte?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Tilføj mulighed for kolonne "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Tryk på ESC for at annullere redigeringen."
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2042,27 +2036,27 @@ msgstr ""
"Du har redigeret nogle data og de er ikke blevet gemt. Er du sikker på, at "
"du vil forlade siden uden at gemme data ?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Træk for at ændre orden"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Klik for at sortere"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klik for at markere/afmarkere"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klik på pilen for valgboks for at skifte kolonnens synlighed"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2071,50 +2065,50 @@ msgstr ""
"redigering af gitter, afkrydsningsboks og links til redigering, kopiering og "
"sletning fungerer måske ikke, efter at data er gemt."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Du kan også redigere de fleste kolonner ved at klikke direkte på deres "
"indhold."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Gå til link"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Kolonnenavne"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Opdater række(r)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Generer adgangskode"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Ændre adgangskode"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mere"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2124,268 +2118,268 @@ msgstr ""
"opgradere. Den nyeste version er %s, udgivet den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", seneste stabile version:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "up-to-date"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Færdig"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "I dag"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "januar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "februar"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "marts"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "april"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "maj"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "august"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "september"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "november"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "søndag"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "mandag"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "tirsdag"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "onsdag"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "torsdag"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "fredag"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "lørdag"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "sø"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "ti"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "on"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "fr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "lø"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "uge"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Ingen"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Time"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekund"
@@ -2438,16 +2432,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "pr. sekund"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "pr. minut"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "pr. time"
@@ -2579,15 +2573,15 @@ msgstr ""
msgid "Databases"
msgstr "Databaser"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2599,20 +2593,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Indsæt"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operationer"
@@ -2672,12 +2666,12 @@ msgstr "Bruger"
msgid "Synchronize"
msgstr "Synkroniser"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binær log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variable"
@@ -2694,8 +2688,9 @@ msgid "Engines"
msgstr "Lagre"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fejl"
@@ -2817,35 +2812,35 @@ msgstr ""
"efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet "
"ændret."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen gyldig billedsti for tema %s fundet!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Intet billede til rådighed."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "vælg dette"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standardtema %s ikke fundet!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s ikke fundet!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Sti til tema ikke fundet for tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2886,14 +2881,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3153,8 +3148,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -3265,7 +3260,7 @@ msgstr "delt"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabeller"
@@ -3316,11 +3311,11 @@ msgstr "muligt sikkerhedshul"
msgid "numeric key detected"
msgstr "numerisk tast opfanget"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Kunne ikke indlæse konfigurationsfilen"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3328,12 +3323,12 @@ msgstr ""
"Dette betyder ofte, at der er en eller flere syntaksmæssige fejl i den, "
"kontroller venligst for fejlen(e) vist herunder."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3345,22 +3340,22 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktivet SKAL være sat i din "
"konfigurationsfil!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Server indekset %s er ugyldigt"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde opdatere til %s %s eller senere."
@@ -3395,8 +3390,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-forespørgsel"
@@ -3434,7 +3429,7 @@ msgid "Create PHP Code"
msgstr "Fremstil PHP-kode"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Opdater"
@@ -3455,95 +3450,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "I linje"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %m %Y kl. %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Manglende parameter"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Næste"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Hop til database "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klik for at skifte"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Gennemse din computer:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Vælg fra %s - webserverens upload-mappe:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Der er ikke nogen filer at uploade"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Udfør"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Print"
@@ -3719,9 +3714,9 @@ msgstr "Gendan standardværdi"
msgid "Allow users to customize this value"
msgstr "Tillad brugerdefinerede indstillinger for værdien"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Nulstil"
@@ -3885,7 +3880,7 @@ msgid "Compress on the fly"
msgstr "Komprimer undervejs"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurationsfil"
@@ -3947,7 +3942,7 @@ msgstr "Foreslå tabelstruktur"
msgid "Show binary contents as HEX by default"
msgstr "Som standard vises binært indhold som HEX"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Vis binært indhold som HEX"
@@ -5839,7 +5834,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Aktiver udviklerfanen i indstillinger"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Check for den seneste version"
@@ -5979,7 +5974,7 @@ msgstr "%s udvidelsen mangler. Check din PHP-konfiguration."
msgid "possible deep recursion attack"
msgstr "muligt dybt rekursionsangreb"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5987,21 +5982,21 @@ msgid ""
"configured)."
msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveren svarer ikke"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detaljer..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6162,8 +6157,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -6359,48 +6354,53 @@ msgstr "Formatspecifikke indstillinger:"
msgid "Language"
msgstr "Sprog"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Gem redigerede data"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Gendan kolonneorden"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Startrække"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Antal rækker"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Tilstand"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vandret"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vandret (roterede overskrifter)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "lodret"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Overskrifter for hver %s rows"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Vis"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sorteringsnøgle"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6418,91 +6418,91 @@ msgstr "Sorteringsnøgle"
msgid "Options"
msgstr "Indstillinger"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Delvise tekster"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Komplette tekster"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relationel nøgle"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relationel visningskolonne"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Vis binært indhold"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Vis indhold af BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Velkendt tekst"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Velkendt binær"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Rækken er slettet"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Dræb (Kill)"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "i forespørgsel"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Viser poster"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "forepørgsel tog %01.4f sek"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Forespørgselsresultat operationer"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Udskriv (med fulde tekster)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Vis diagram"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualiser GIS data"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Opret view"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link ikke fundet"
@@ -6550,7 +6550,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufferpool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6840,8 +6840,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation og yderliger information om PBXT kan findes på %sPrimeBase XT "
"hjemmeside%s"
@@ -6964,12 +6964,12 @@ msgstr "Vis MIME-typer"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Vært"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Genereringstid"
@@ -7195,8 +7195,8 @@ msgstr "Ingen data fundet for GIS visualization."
msgid "GLOBALS overwrite attempt"
msgstr "forsøg på overskrivning af GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
@@ -7374,6 +7374,98 @@ msgstr "SQL-kompatibilitetsmodus:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Brug ikke AUTO_INCREMENT for nulværdier"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funktion"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Skjul"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binært"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "På grund af feltets længde, kan det muligvis ikke ændres"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binært - må ikke ændres"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "webserver upload-mappe"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Rediger/Indsæt"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Fortsæt indsættelse med %s rækker"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "og derefter"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Indsæt som ny række"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Indsæt som ny række og ignorer fejl"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Vis indsættelsesforespørgsel"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Tilbage til foregående side"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Indsæt endnu en ny række"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Gå tilbage til denne side"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Rediger næste række"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL"
+"+piletasterne til at flytte frit omkring"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Værdi"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Viser SQL-forespørgsel"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Indsatte række id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7384,34 +7476,34 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Fra"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Til"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Send"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Tilføj tabelpræfiks"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Tilføj præfiks"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Er du sikker på at du vil "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ingen ændring"
@@ -7419,11 +7511,6 @@ msgstr "Ingen ændring"
msgid "Charset"
msgstr "Tegnsæt"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binært"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarsk"
@@ -7758,18 +7845,10 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Værdi"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID"
@@ -8100,11 +8179,6 @@ msgstr "Udfør rutine"
msgid "Routine parameters"
msgstr "Rutineparametre"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funktion"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Beklager, det lykkedes ikke at genetablere den slettede trigger."
@@ -8428,7 +8502,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kør SQL-forspørgsel(er) på database %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Ryd"
@@ -8436,11 +8510,11 @@ msgstr "Ryd"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Lav bogmærke til denne SQL-forespørgsel"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Lad alle brugere bruge dette bogmærke"
@@ -8464,10 +8538,6 @@ msgstr "Vis forespørgslen her igen"
msgid "View only"
msgstr "Kun oversigt"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "webserver upload-mappe"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8669,10 +8739,6 @@ msgstr "Operatør"
msgid "Table Search"
msgstr "Tabelsøgning"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Rediger/Indsæt"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8890,7 +8956,7 @@ msgstr "Protokolversion"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Bruger"
@@ -9005,8 +9071,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle "
-"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik "
-"%sher%s."
+"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik %"
+"sher%s."
#: main.php:357
#, php-format
@@ -9113,10 +9179,6 @@ msgstr "Skjul/Vis alle"
msgid "Hide/Show Tables with no relation"
msgstr "Skjul/Vis tabeller uden relation"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Skjul"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Antal tabeller"
@@ -9310,17 +9372,17 @@ msgstr "Filen eksisterer ikke"
msgid "Select binary log to view"
msgstr "Vælg binærlog til gennemsyn"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Trunker viste forespørgsler"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Vis fuldstændige forespørgsler"
@@ -9765,14 +9827,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
-"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
-"%s før du fortsætter."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
+"s før du fortsætter."
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -9892,7 +9954,7 @@ msgstr "Master server ændret til %s"
msgid "This server is configured as master in a replication process."
msgstr "Denne server er konfigureret som master i en replikationsproces."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Vis master status"
@@ -10039,127 +10101,127 @@ msgstr ""
"Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s blev stoppet."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Forespørgsel-mellemlager"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Tråde"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Forsinkede inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Nøglemellemlager"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaktionskoordinator"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (luk) alle tabeller"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Vis åbne tabeller"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Vis slaveværter"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Tøm forespørgsel-mellemlager"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Runtime-information"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Alle statusvariable"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Rådgiver"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Opdateringsrate: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtre"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Indeholdende ordet:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Vis kun alert-værdier"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrer efter kategori..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Vis uformatterede værdier"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Relaterede links:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Kør analysator"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instruktioner/Opsætning"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10167,7 +10229,7 @@ msgstr ""
"Rådgiversystemer kan give anbefalinger om servervariable ved at analysere "
"serverens statusvariable"
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10176,7 +10238,7 @@ msgstr ""
"Bemærk dog, at dette system giver anbefalinger baseret på simple beregninger "
"og tommelfingerregler, som ikke passer med dit system"
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10186,7 +10248,7 @@ msgstr ""
"dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have "
"en meget negativ effekt på ydeevnen."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10197,31 +10259,31 @@ msgstr ""
"ingen klart synlig forskel var."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Forespørgsler siden startup: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Forespørgsler"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Netværkstrafik siden startup: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Denne MySQL-server har kørt i %1$s. Den startede op den %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10229,17 +10291,17 @@ msgstr ""
"Denne MySQL server fungerer som master og slave i en "
"replikationsproces."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denne MySQL server fungerer som master i en replikationsproces."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denne MySQL server fungerer som slave i en replikationsproces."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10247,11 +10309,11 @@ msgstr ""
"For yderligere information om replikationsstatus på serveren gå til replication section."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Status for replikation"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10259,35 +10321,35 @@ msgstr ""
"På en travl server er der risiko for at bytetællerne løber over, så disse "
"statistikker som rapporteret af MySQL-serveren kan være forkerte."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Modtaget"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Maks. samtidige forbindelser"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Mislykkede forsøg"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Afbrudt"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10295,11 +10357,11 @@ msgstr ""
"Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at "
"lukke forbindelsen rigtigt."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Antal mislykkede forsøg på at forbinde til MySQL server."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10309,17 +10371,17 @@ msgstr ""
"overskred værdien for binlog_cache_size og brugte en midlertidig fil til at "
"gemme statements fra transaktionen."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10331,11 +10393,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Hvor mange midlertidige filer mysqld har oprettet."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10343,7 +10405,7 @@ msgstr ""
"Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren "
"under udførelse af statements."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10351,7 +10413,7 @@ msgstr ""
"Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke "
"der opstod fejl (sandsynligvis dublerede nøgler)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10359,23 +10421,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Antallet af INSERT DELAYED rækker skrevet."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Antallet af udførte FLUSH statements."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Antallet af interne COMMIT statements."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10385,7 +10447,7 @@ msgstr ""
"tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer "
"antallet af gange tabeller er blevet opdaget."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10395,7 +10457,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10404,7 +10466,7 @@ msgstr ""
"er høj, er det en god indikation af at dine forespørgsler og tabeller er "
"ordentligt indekserede."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10414,7 +10476,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10422,7 +10484,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10434,7 +10496,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:1337
+#: server_status.php:1340
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 "
@@ -10446,35 +10508,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Antallet af interne ROLLBACK statements."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antallet af sider der indeholder data (beskidte eller rene)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Antallet af såkaldt beskidte sider."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Antallet af frie sider."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10484,7 +10546,7 @@ msgstr ""
"sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller "
"fjernes af andre årsager."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10496,11 +10558,11 @@ msgstr ""
"også beregnes som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på buffer pool, i sider."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10509,7 +10571,7 @@ msgstr ""
"forespørgsel skal scanne en større del af en tabel men i tilfældig "
"rækkefølge."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10517,11 +10579,11 @@ msgstr ""
"Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når "
"InnoDB laver en sekventiel fuld tabelscanning."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Antallet af logiske read anmodninger InnoDB har lavet."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10529,7 +10591,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:1352
+#: server_status.php:1355
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 "
@@ -10543,55 +10605,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antallet af skrivninger til InnoDB buffer poolen."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Antallet af fsync() operationer indtil nu."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Nuværende antal ventende fsync() operationer."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Nuværende antal af ventende reads."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Nuværende antal af ventende writes."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Mængden af data læst indtil nu, i bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Det totale antal af data reads."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Det totale antal af data writes."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Mængden af data skrevet indtil nu, i bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10599,35 +10661,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Antallet af log write anmodninger."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Antallet af fysiske skrivninger til log filen."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Antallet af fsyncs skrivninger lavet til logfilen."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Antallet af ventende log fil fsyncs."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Ventende log fil skrivninger."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Antallet af bytes skrevet til log filen."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Antallet af sider oprettet."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10635,51 +10697,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Antallet af sider læst."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Antallet af sider skrevet."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Antallet af rækkelåse der ventes på i øjeblikket."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antallet af rækker slettet fra InnoDB tabeller."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antallet af rækker indsat i InnoDB tabeller."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Antallet af rækker læst fra InnoDB tables."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Antallet af rækker opdateret i InnoDB tabeller."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10688,7 +10750,7 @@ msgstr ""
"endnu ikke er blevet flushet til disk. Det hed tidligere "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10696,7 +10758,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:1386
+#: server_status.php:1389
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 "
@@ -10706,17 +10768,17 @@ msgstr ""
"mærke der indikerer det maksimale antal blokke der på noget tidspunkt har "
"været i brug på en gang."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Percentage of used open files limit"
msgid "Percentage of used key cache (calculated value)"
msgstr "Procentdel af grænse for brugte åbne filer"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10726,26 +10788,26 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10757,7 +10819,7 @@ msgstr ""
"standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler "
"endnu."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10765,12 +10827,12 @@ msgstr ""
"Det maksimale antal forbindelser, som har været i brug samtidigt, siden "
"serveren startede."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10778,19 +10840,19 @@ msgstr ""
"Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er "
"dit tabelmellemlager sandsynligvis for lille."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Antallet af filer der er åbne."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Antallet af tabeller der er åbne."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10800,19 +10862,19 @@ msgstr ""
"kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE "
"kommando."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Antallet af mellemlager hits."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Antallet af forespørgsler tilføjet til mellemlageret."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10825,7 +10887,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10833,19 +10895,19 @@ msgstr ""
"Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre "
"eller ikke mellemlagret grundet query_cache_type indstillingen)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Antallet af forespørgsler registreret i mellemlageret."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Totalt antal blokke i forespørgsels-mellemlageret."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status på fejlsikker replikation (endnu ikke implementeret)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10853,11 +10915,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10865,7 +10927,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10873,15 +10935,15 @@ msgstr ""
"Antallet af joins der brugte ranges på den første tabel. (Normalt ikke "
"kritisk selvom tallet er stort.)"
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10889,12 +10951,12 @@ msgstr ""
"Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-"
"forsøgt transaktioner."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10902,13 +10964,13 @@ msgstr ""
"Antallet af tråde der har taget mere end slow_launch_time sekunder at "
"oprette."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10918,23 +10980,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Antallet af sorteringer lavet med ranges."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Antallet af sorterede rækker."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10946,7 +11008,7 @@ msgstr ""
"optimere dine forespørgsler, og derefter enten opdele din tabel eller "
"tabeller, eller bruge replikation."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10956,11 +11018,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Antallet af i øjeblikket åbne forbindelser."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10972,49 +11034,49 @@ msgstr ""
"(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god "
"tråd-implementering.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Thread cache hit rate %%"
msgid "Thread cache hit rate (calculated value)"
msgstr "Frekvens for hits i trådmellemlager %%"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Antallet af tråde, der ikke sover."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Start Monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instruktioner/Opsætning"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Færdig med at omordne/redigere diagrammer"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Tilføj diagram"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Omordne/rediger diagrammer"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Opdateringsfrekvens"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Diagramkolonner:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Diagramopstilling"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11022,15 +11084,15 @@ msgstr ""
"Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er "
"muligt at eksportere den, hvis man har en kompleks opstilling."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Gendan standardværdi"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Monitorinstruktioner"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11044,7 +11106,7 @@ msgstr ""
"og at slow_query_log eller general_log aktiveres. Bemærk dog, at\n"
"general_log genererer en mængde data og forøger server load med op til 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11056,11 +11118,11 @@ msgstr ""
"tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig "
"bruge funktionerne for serverdiagrammer."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Brug af monitor:"
-#: server_status.php:1650
+#: server_status.php:1653
#, fuzzy
#| msgid ""
#| "Ok, you are good to go! Once you click 'Start monitor' your browser will "
@@ -11077,7 +11139,7 @@ msgstr ""
"opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at "
"bruge ikonet cog på det relevante diagram. "
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11089,11 +11151,11 @@ msgstr ""
"Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, "
"hvor man kan klikke på en given SELECT-forespørgsel for at analysere det."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Bemærk venligst:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11105,86 +11167,86 @@ msgstr ""
"tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og "
"tømme dens tabel, når der ikke er behov for den længere."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Foruddefineret diagram"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Statusvariabel/-ble"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Vælg serie:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Almindeligt overvåget"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "eller indtast variabelnavn:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Vis som forskelsværdi"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Anvend divisor"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Tilføj enhed til dataværdier"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Tilføj denne serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Slet serie"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Serier i diagram"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Logstatistik"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Valgt tidsinterval:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Resultaterne er grupperet af forespørgselstekst."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Forespørgselsanalysator"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d sekund"
msgstr[1] "%d sekunder"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11318,7 +11380,7 @@ msgstr "Sessionsværdi"
msgid "Global value"
msgstr "Global værdi"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Udtræk"
@@ -11390,39 +11452,39 @@ msgstr "Der er ingen konfigurerede servere"
msgid "New server"
msgstr "Ny server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Standardsprog"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "lad brugeren vælge"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ingen -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Standardserver"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Linjeafslutning"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Vis"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Indlæs"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin hjemmeside"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Doner"
@@ -11588,10 +11650,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - "
-"%sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-"
-"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en "
-"udbyder med mange tusinde brugere."
+" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %"
+"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret "
+"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med "
+"mange tusinde brugere."
#: setup/lib/index.lib.php:312
#, php-format
@@ -11605,8 +11667,8 @@ msgstr ""
"Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og "
"adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for "
"produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan "
-"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt "
-"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
+"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %"
+"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
#: setup/lib/index.lib.php:314
#, php-format
@@ -11652,53 +11714,44 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn."
msgid "Wrong data"
msgstr "Forkerte data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Bladre i fremmedværdier"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Bruger bogmærke \"%s\" som standard gennemsynsforespørgsel"
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Er du sikker på at du vil "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Indsatte række id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Viser som PHP-kode"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Viser SQL-forespørgsel"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Valideret SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-resultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Genereret af"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Mærke"
@@ -11713,58 +11766,6 @@ msgstr "Tabel %1$s er blevet ændret"
msgid "The columns have been moved successfully."
msgstr "De valgte brugere er blevet korrekt slettet."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "På grund af feltets længde, kan det muligvis ikke ændres"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binært - må ikke ændres"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Indsæt som ny række"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Indsæt som ny række og ignorer fejl"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Vis indsættelsesforespørgsel"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "og derefter"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Tilbage til foregående side"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Indsæt endnu en ny række"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Gå tilbage til denne side"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Rediger næste række"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL"
-"+piletasterne til at flytte frit omkring"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Fortsæt indsættelse med %s rækker"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12375,32 +12376,38 @@ msgstr "Spor disse datamanipulations-forespørgsler:"
msgid "Create version"
msgstr "Opret version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Kør en \"forespørgsel ved eksempel\" (jokertegn: \"%\") for to forskellige "
"kolonner"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Ekstra søgekriterium"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Brug denne kolonne til at navngive hvert punkt"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maksimalt antal plottede rækker"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Bladr gennem/rediger punkterne"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Hvordan man bruger"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Nulstil"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Hent flere temaer!"
@@ -12788,8 +12795,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. "
"Det bør være over 80%%"
@@ -12946,8 +12953,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være "
"mindre end 10%%."
@@ -13740,6 +13747,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert er sat til 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Brug musehjul til at zoome ind eller ud af plottet."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Klik og træk musen for at navigere i plottet"
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Strenge er konverteret til heltal i plottet."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14152,9 +14168,6 @@ msgstr "concurrent_insert er sat til 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Ingen gyldig billedsti for tema %s fundet!"
-#~ msgid "rows"
-#~ msgstr "Vis"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rækker startende fra post #"
diff --git a/po/de.po b/po/de.po
index 0ee797ea7f..cf12441f1b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-18 18:32+0200\n"
"Last-Translator: Jan Dittberner \n"
"Language-Team: none\n"
-"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.9\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Alles anzeigen"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Alles anzeigen"
msgid "Page number:"
msgstr "Seite:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"wurde das Ursprungsfenster geschlossen oder der Browser verhindert den "
"Zugriff aufgrund Ihrer Sicherheitseinstellungen."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Suche"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Suche"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Schlüsselname"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Beschreibung"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Diesen Wert verwenden"
@@ -122,12 +122,12 @@ msgstr "Tabellen-Kommentar"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Spalte"
@@ -136,6 +136,7 @@ msgstr "Spalte"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Spalte"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -153,12 +154,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Kommentare"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Nein"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -336,8 +337,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
-"%s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
+"s um herauszufinden warum."
#: db_operations.php:633
msgid "Edit or export relational schema"
@@ -357,7 +358,7 @@ msgstr "Tabelle"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Datensätze"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Zu %svisual builder%s wechseln"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortierung"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Aufsteigend"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Absteigend"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Zeige"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Entf"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Oder"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s Treffer in der Tabelle %2$s"
msgstr[1] "%1$s Treffer in der Tabelle %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Anzeigen"
@@ -530,14 +531,14 @@ msgstr "Anzeigen"
msgid "Delete the matches for the %s table?"
msgstr "Treffer für Tabelle %s löschen?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Löschen"
@@ -605,11 +606,11 @@ msgstr "Tracking ist aktiviert."
msgid "Tracking is not active."
msgstr "Tracking ist nicht aktiviert."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie "
"die %sDokumentation%s."
@@ -621,7 +622,7 @@ msgstr "Ansicht"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikation"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s ist die Standard Storage-Engine dieses MySQL-Servers."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "markierte:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Alle auswählen"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Tabellen mit Überhang auswählen"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportieren"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Druckansicht"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Leeren"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analysiere Tabelle"
msgid "Add prefix to table"
msgstr "Prefix der Tabelle voranstellen"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Tabellenprefix ersetzen"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Tabelle mit Prefix kopieren"
@@ -729,8 +730,8 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Datenbank"
@@ -748,7 +749,7 @@ msgstr "Aktualisiert"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -850,49 +851,49 @@ msgstr "Verwende OpenStreetMaps als Basis-Satz"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrie"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punkt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punkt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Punkt hinzufügen"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "LineString"
# Ankreis ist richtig http://de.wikipedia.org/wiki/Ankreis
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Ankreis"
# Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis
#
# Ja
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Inkreis"
@@ -900,15 +901,15 @@ msgstr "Inkreis"
msgid "Add a linestring"
msgstr "LineString hinzufügen"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Inkreis hinzufügen"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Polygon hinzufügen"
@@ -931,11 +932,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
-"%sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
+"sDokumentation%s zur Lösung diese Problems."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -985,7 +986,7 @@ msgstr ""
"Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre "
"phpMyAdmin-Installation!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s wurde gespeichert"
@@ -1014,7 +1015,7 @@ msgstr ""
"nicht die Ausführungszeitbeschränkungen von php gelockert werden."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1029,7 +1030,7 @@ msgstr "Zurück"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert."
@@ -1038,7 +1039,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert."
msgid "Do you really want to execute \"%s\"?"
msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!"
@@ -1124,21 +1125,21 @@ msgstr "Schliessen"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Bearbeiten"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Live Traffic Diagramm"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Live Verbindung/Prozess Diagramm"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Live Abfrage Diagramm"
@@ -1149,23 +1150,23 @@ msgstr "Statische Daten"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Insgesamt"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Weitere"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1185,7 +1186,7 @@ msgstr "Server-Datenverkehr (in KiB)"
msgid "Connections since last refresh"
msgstr "Verbindungen seit der letzten Aktualisierung"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prozesse"
@@ -1203,7 +1204,7 @@ msgstr "Anfragen seit der letzten Aktualisierung"
msgid "Questions (executed statements by the server)"
msgstr "Anfragen (Serverseitig ausgeführte SQL-Befehle)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Abfrage-Statistiken"
@@ -1249,14 +1250,14 @@ msgid "System swap"
msgstr "Auslagerungsspeicher"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1308,32 +1309,32 @@ msgstr "Bytes gesendet"
msgid "Bytes received"
msgstr "Bytes empfangen"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Verbindungen"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1347,11 +1348,11 @@ msgstr "%d Tabelle(n)"
msgid "Questions"
msgstr "Anfragen"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Netzwerkverkehr"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Einstellungen"
@@ -1372,10 +1373,10 @@ msgid "Please add at least one variable to the series"
msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "keine"
@@ -1475,7 +1476,7 @@ msgstr "Einstellungen ändern"
msgid "Current settings"
msgstr "Aktuelle Einstellungen"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Schaubild-Titel"
@@ -1565,9 +1566,9 @@ msgstr "Analysieren..."
msgid "Explain output"
msgstr "Ausgabe erklären"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Zeit"
@@ -1669,7 +1670,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importieren"
@@ -1791,15 +1792,15 @@ msgstr "Indexes verbergen"
msgid "Show indexes"
msgstr "Indexes anzeigen"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Fremdschlüsselüberprüfung:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Aktiviert)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Deaktiviert)"
@@ -1870,7 +1871,7 @@ msgstr "SQL-Querybox anzeigen"
msgid "No rows selected"
msgstr "Es wurden keine Datensätze ausgewählt"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Bearbeiten"
@@ -1879,17 +1880,18 @@ msgstr "Bearbeiten"
msgid "Query execution time"
msgstr "Ausführungszeit der Abfrage"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d ist keine gültige Zeilennummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Speichern"
@@ -1914,80 +1916,71 @@ msgid "Hovering over a point will show its label."
msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-"Verwenden Sie das Mausrad, um die Grafik zu vergrößern oder verkleinern."
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Klicken und ziehen Sie die Maus, um in der Grafik zu navigieren."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Auf \"Zoom zurücksetzen\" klicken um zum Original zurückzukehren."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Auf einen Datenpunkt klicken, um eine Datenzeile anzuzeigen bzw. zu "
"editieren."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Die Größe der Darstellung kann durch Ziehen in die rechte untere Ecke "
"verändert werden."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Zeichenketten werden für die Zeichnung in Integerwerte umgewandelt"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Zwei Spalten auswählen"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "2 unterschiedliche Spalten auswählen"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Abfrageergebnisse"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Datenpunkt-Inhalt"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorieren"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopieren"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Spalten hinzufügen"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Wählen Sie den referenzierten Schlüssel"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Wähle Fremdschlüssel"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Anzuzeigende Spalte auswählen"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1995,15 +1988,15 @@ msgstr ""
"Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren "
"wenn Sie nicht speichern. Möchten Sie fortfahren?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Option hinzufügen zu Spalte "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Drücken Sie ESC um das Bearbeiten abzubrechen"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2011,29 +2004,29 @@ msgstr ""
"Sie haben Daten verändert und noch nicht gespeichert. Sind Sie sicher, dass "
"Sie diese Seite ohne zu speichern verlassen möchten?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Zur Umsortierung ziehen"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Zur Anordnung anklicken"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klicken zum aus- bzw. abwählen"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Doppelklicken Sie um den Spaltenname zu kopieren"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Den Pfeil des Aufklappsmenüs anklicken um die Sichtbarkeit der Spalte "
"umzustellen"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2043,47 +2036,47 @@ msgstr ""
"Kopieren und Löschen von Links können nach dem Speichern eventuell nicht "
"funktionieren."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Sie können die meisten Spalten bearbeiten indem Sie auf den Inhalt "
"klicken."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Gehe zur Verknüpfung"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Spaltennamen kopieren"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Klicken Sie auf den Spaltennamen, um ihn in die Zwischenablage zu kopieren."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Zeige Daten Zeile(n)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Passwort generieren"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generieren"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Passwort ändern"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mehr"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2093,266 +2086,266 @@ msgstr ""
"empfohlen. Die aktuelle Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", aktuelle stabile Version:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "auf dem neusten Stand"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Fertig"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorher"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Nächster"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Heute"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Januar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Februar"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "März"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "April"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "August"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Sonntag"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Montag"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Dienstag"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Mittwoch"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Donnerstag"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Freitag"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Wo"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Stunde"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekunde"
@@ -2406,16 +2399,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "pro Sekunde"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "pro Minute"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "pro Stunde"
@@ -2550,15 +2543,15 @@ msgstr ""
msgid "Databases"
msgstr "Datenbanken"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2570,20 +2563,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Einfügen"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operationen"
@@ -2641,12 +2634,12 @@ msgstr "Benutzer"
msgid "Synchronize"
msgstr "Gleiche ab"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binäres Protokoll"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variablen"
@@ -2663,8 +2656,9 @@ msgid "Engines"
msgstr "Formate"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fehler"
@@ -2784,35 +2778,35 @@ msgstr ""
"Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. "
"Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Keine Vorschau verfügbar."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "auswählen"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standard-Oberflächendesign %s nicht gefunden!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Oberflächendesign %s nicht gefunden!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Pfad für das Oberflächendesign %s nicht gefunden!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Oberflächendesign"
@@ -2853,14 +2847,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3122,8 +3116,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können "
"das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen."
@@ -3233,7 +3227,7 @@ msgstr "freigegeben"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabellen"
@@ -3284,11 +3278,11 @@ msgstr "Mögliche Ausnutzung"
msgid "numeric key detected"
msgstr "Numerischer Schlüssel entdeckt"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Fehler beim Lesen der Konfigurationsdatei"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3296,12 +3290,12 @@ msgstr ""
"Dies bedeutet im Allgemeinen, dass sich ein Syntax-Fehler eingeschlichen "
"hat. Bitte überprüfen Sie die unten angezeigten Fehler."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3309,23 +3303,23 @@ msgstr ""
"Das $cfg['PmaAbsoluteUri'] Verzeichnis MUSS in Ihrer "
"Konfigurationsdatei angegeben werden!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Ungültige Server-Nummer: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre "
"Konfiguration."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ungültige Authentifikationsmethode:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sie sollten auf %s %s oder neuer aktualisieren."
@@ -3360,8 +3354,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "de"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-Befehl"
@@ -3399,7 +3393,7 @@ msgid "Create PHP Code"
msgstr "PHP-Code erzeugen"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Aktualisieren"
@@ -3420,96 +3414,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Messen"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y um %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Fehlende(r) Parameter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Anfang"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorherige"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Nächste"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Ende"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Zur Datenbank "%s" springen."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Zum Umschalten anklicken"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Durchsuchen Sie ihren Computer:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Es sind keine Dateien zum Upload vorhanden"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Ausführen"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Drucken"
@@ -3681,9 +3675,9 @@ msgstr "Voreingestellten Wert wiederherstellen"
msgid "Allow users to customize this value"
msgstr "Erlaube den Benutzern diesen Wert anzupassen"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Zurücksetzen"
@@ -3849,7 +3843,7 @@ msgid "Compress on the fly"
msgstr "On the fly komprimieren"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurationsdatei"
@@ -3909,7 +3903,7 @@ msgstr "Tabellenstrukturaktionen verbergen"
msgid "Show binary contents as HEX by default"
msgstr "Binäre Inhalte standardmäßig hexadezimal anzeigen"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Binäre Inhalte in hexadezimal anzeigen"
@@ -5819,7 +5813,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Aktiviere den Reiter "Entwickler" in den Einstellungen"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Auf neue Version prüfen"
@@ -5962,7 +5956,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP Konfiguration überprüfen."
msgid "possible deep recursion attack"
msgstr "möglicher Deep-Recursion-Angriff"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5970,21 +5964,21 @@ msgstr ""
"Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers "
"nicht korrekt konfiguriert)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Der Server antwortet nicht."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank "
"befindet."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Details..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6148,8 +6142,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -6348,48 +6342,53 @@ msgstr "Formatspezifische Optionen:"
msgid "Language"
msgstr "Sprache"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Speichere bearbeitete Daten"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Spalten-Anordnung wiederherstellen"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Anfangs-Datensatz"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Anzahl der Datensätze"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Art und Weise"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "untereinander"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (gedrehte Kopfzeilen)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "nebeneinander"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Kopfzeilen alle %s Datensätze"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Anzeigen"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Nach Schlüssel sortieren"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6407,91 +6406,91 @@ msgstr "Nach Schlüssel sortieren"
msgid "Options"
msgstr "Optionen"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Gekürzte Texte"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Vollständige Texte"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relationaler Schlüssel"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relationale Anzeigespalte"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Binäre Inhalte anzeigen"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB Inhalte anzeigen"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Darstellungsumwandlung ausblenden"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Bekannter Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Bekanntes Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Der Datensatz wurde gelöscht"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Beenden"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in der Abfrage"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Zeige Datensätze"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "insgesamt"
# (s is the abbreviation of "Sekunde", sec is it not (according to
# International System of Units), so we wrote the complete one.)
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Die Abfrage dauerte %01.4f Sekunden"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operationen für das Abfrageergebnis"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Druckansicht (vollständige Textfelder)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Diagramm anzeigen"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualisiere GIS Daten"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Erzeuge View"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Der Verweis wurde nicht gefunden"
@@ -6539,7 +6538,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puffer-Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB-Status"
@@ -6831,8 +6830,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@@ -6955,12 +6954,12 @@ msgstr "MIME-Typen anzeigen"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Erstellungszeit"
@@ -7186,8 +7185,8 @@ msgstr "Keine Daten für die GIS-Darstellung gefunden."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS Überschreibversuch"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)."
@@ -7371,6 +7370,99 @@ msgstr "SQL-Kompatibilitätsmodus:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funktion"
+
+# Hide heist im deutschen in der EDV ausblenden
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Verstecken"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binär"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Wegen seiner Länge ist dieses Feld vielleicht nicht editierbar"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binär - nicht editierbar"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Upload-Verzeichnis auf dem Webserver"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Bearbeiten/Einfügen"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Einfügen mit %s Datensätzen fortfahren"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "und dann"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Als neuen Datensatz speichern"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Als neue Zeile einfügen und Fehler ignorieren"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Zeige insert Abfrage"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "zurück"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "anschließend einen weiteren Datensatz einfügen"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Zurück zu dieser Seite"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "nächste Zeile bearbeiten"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten "
+"beliebig bewegen"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Wert"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Ansicht als SQL Abfrage"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ID der eingefügten Zeile: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7381,32 +7473,32 @@ msgstr "keine"
msgid "Convert to Kana"
msgstr "Nach Kana konvertieren"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Von"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Zu"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Abschicken"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Tabellen-Prefix hinzufügen"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Prefix hinzufügen"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Keine Änderung"
@@ -7414,11 +7506,6 @@ msgstr "Keine Änderung"
msgid "Charset"
msgstr "Zeichensatz"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binär"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarisch"
@@ -7754,18 +7841,10 @@ msgid "Slave status"
msgstr "Slave-Status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Wert"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server-ID"
@@ -8100,11 +8179,6 @@ msgstr "Führe Prozedur aus"
msgid "Routine parameters"
msgstr "Prozeduren-Parameter"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funktion"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl."
@@ -8431,7 +8505,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Werte löschen"
@@ -8439,11 +8513,11 @@ msgstr "Werte löschen"
msgid "Columns"
msgstr "Spalten"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "SQL-Abfrage speichern"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
@@ -8467,10 +8541,6 @@ msgstr "Diese Abfrage hier wieder anzeigen"
msgid "View only"
msgstr "Nur zeigen"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Upload-Verzeichnis auf dem Webserver"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8673,10 +8743,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Tabellensuche"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Bearbeiten/Einfügen"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8906,7 +8972,7 @@ msgstr "Protokoll-Version"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Benutzer"
@@ -9131,11 +9197,6 @@ msgstr "Alles ein-/ausblenden"
msgid "Hide/Show Tables with no relation"
msgstr "Tabellen ohne Verknüpfung aus-/einblenden"
-# Hide heist im deutschen in der EDV ausblenden
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Verstecken"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Anzahl Tabellen"
@@ -9332,17 +9393,17 @@ msgstr "Datei existiert nicht"
msgid "Select binary log to view"
msgstr "Binäres Protokoll zur Anzeige auswählen"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Dateien"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Zeige die SQL-Abfragen verkürzt an"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Zeige die SQL-Abfragen vollständig an"
@@ -9787,8 +9848,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden "
"MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den "
@@ -9915,7 +9976,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Zeige den Master-Status"
@@ -10067,12 +10128,12 @@ msgstr ""
"Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. "
"Möchten Sie ihn konfigurieren?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Der Thread %s wurde erfolgreich abgebrochen."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10080,115 +10141,115 @@ msgstr ""
"phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich "
"bereits geschlossen."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Bezeichner"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Abfragen-Zwischenspeicher"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Prozesse"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Temporäre Daten"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Verzögertes Einfügen (delayed inserts)"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Schlüssel-Zwischenspeicher"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Tabellenverknüpfungen (joins)"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortierung"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaktions-Koordinator"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Alle Tabellen aktualisieren (und schließen)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Zeige alle offenen Tabellen"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Zeige alle Slave-Hosts"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Zeige den Slave-Status"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Den Abfragen-Zwischenspeicher leeren. (FLUSH)"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Laufzeit-Informationen"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Alle Status Variablen"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Überwachung"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Ratgeber"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Aktualisierungs-Intervall: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filter"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Beinhalten das Wort:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Zeige nur Warn-Werte"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Nach Kategorie filtern..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Zeige unformatierte Werte"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Verwandte Links:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Analyse durchführen"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Einführung"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10196,7 +10257,7 @@ msgstr ""
"Der Ratgeber kann Empfehlungen zu Server-Variablen durch Analyse der Server-"
"Status-Variablen geben."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10206,7 +10267,7 @@ msgstr ""
"Berechnungen und Faustregeln basieren und nicht umbedingt auf Ihrem System "
"funktionieren müssen."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10216,7 +10277,7 @@ msgstr ""
"was Sie ändern und wie Sie die Änderungen rückgängig machen können. Falsche "
"Optimierungen können sehr negative Effekte hervorrufen."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10227,31 +10288,31 @@ msgstr ""
"Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Verbindungen seit Start: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Angaben"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Netzwerk-Datenverkehr seit Start: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Dieser MySQL-Server läuft bereits %1$s. Er wurde um %2$s gestartet."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10259,18 +10320,18 @@ msgstr ""
"Dieser MySQL Server arbeitet als Master und Slave im "
"Replikations-Prozess."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Master im Replikations-"
"Prozess."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Dieser MySQL Server arbeitet als Slave im Replikations-Prozess."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10278,11 +10339,11 @@ msgstr ""
"Für weitere Informationen über den Replikations-Status auf dem Server siehe "
"Abschnitt Replikation."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replikations-Status"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10291,35 +10352,35 @@ msgstr ""
"wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server "
"ausgegeben werden, falsch sein."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Empfangen"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Gesendet"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. gleichzeitige Verbindungen"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Fehlversuche"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Abgebrochen"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Befehl"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10327,12 +10388,12 @@ msgstr ""
"Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen "
"Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10343,20 +10404,20 @@ msgstr ""
"und eine temporäre Datei verwendet haben um die Statements der Transaktion "
"zu speichern."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher "
"verwendet haben."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-"
"Server."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10368,11 +10429,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10380,7 +10441,7 @@ msgstr ""
"Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei "
"der Ausführung von Statements."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10388,7 +10449,7 @@ msgstr ""
"Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei "
"denen ein Fehler auftrat (z. B. duplicate key)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10396,23 +10457,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Anzahl der ausgeführten FLUSH-Befehle."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Anzahl der Anfragen, ein COMMIT auszuführen."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10422,7 +10483,7 @@ msgstr ""
"kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle "
"kennt. Dieser Vorgang wird "discovery" genannt."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10433,7 +10494,7 @@ msgstr ""
"Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert "
"ist)."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10442,7 +10503,7 @@ msgstr ""
"dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und "
"Tabellen korrekt indiziert sind."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10453,7 +10514,7 @@ msgstr ""
"Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, "
"wenn Sie einen Index-Scan durchführen."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10462,7 +10523,7 @@ msgstr ""
"Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung "
"von ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10475,7 +10536,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:1337
+#: server_status.php:1340
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 "
@@ -10488,36 +10549,36 @@ msgstr ""
"sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile "
"aus den Indexen ziehen, die Sie haben."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Anzahl der als "dirty" markierten Seiten."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Anzahl der unbenutzten Seiten."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10527,7 +10588,7 @@ msgstr ""
"beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder "
"entfernt werden können."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10539,11 +10600,11 @@ msgstr ""
"aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Die Größe des Puffer-Pools in Seiten."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10551,7 +10612,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10559,11 +10620,11 @@ msgstr ""
"Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB "
"eine Tabelle komplett sequentiell durchsucht."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10571,7 +10632,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:1352
+#: server_status.php:1355
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 "
@@ -10586,53 +10647,53 @@ msgstr ""
"geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist "
"sollte dieser Wert klein sein."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Bisher ausgeführte fsync()-Operationen."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Momentan anstehende fsync()-Operationen."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Momentan anstehende Lesezugriffe."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Momentan anstehende Schreizugriffe."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Wieviel Daten bisher gelesen wurden, in Byte."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Wie oft Daten gelesen wurden."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Wie oft Daten geschrieben wurden."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Wieviel Daten bisher geschrieben wurden, in Byte."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Anzahl der ausgeführten doublewrite Zugriffe."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10640,35 +10701,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Anstehende fsyncs für die Protokoll-Datei."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Anzahl erstellter Seiten."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10677,55 +10738,55 @@ msgstr ""
"werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte "
"umzurechnen."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Anzahl gelesener Seiten."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Anzahl geschriebener Seiten."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Momentan anstehende Zeilen-Sperren."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in "
"Millisekunden."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10734,7 +10795,7 @@ msgstr ""
"noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt "
"als Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10743,7 +10804,7 @@ msgstr ""
"Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher "
"zu bestimmen."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10752,18 +10813,18 @@ msgstr ""
"Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-"
"Zwischenspeicher."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
"Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
"Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu "
"lesen."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10774,7 +10835,7 @@ msgstr ""
"Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests "
"berechnet werden."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10782,25 +10843,25 @@ msgstr ""
"Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen "
"physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
"Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu "
"schreiben."
-#: server_status.php:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-"
"Anfragen (berechneter Wert)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10810,7 +10871,7 @@ msgstr ""
"berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu "
"vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10818,13 +10879,13 @@ msgstr ""
"Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig "
"benutzt wurden."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, "
"geschrieben zu werden."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10832,20 +10893,20 @@ msgstr ""
"Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist "
"Ihre table_cache-Variable wahrscheinlich zu niedrig."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Anzahl der geöffneten Dateien."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Anzahl der geöffneten Tabellen."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10855,19 +10916,19 @@ msgstr ""
"Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY "
"CACHE - Abfrage beseitigt werden können."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Freier Speicher im Abfragen-Zwischenspeicher."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10881,7 +10942,7 @@ msgstr ""
"stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher "
"lag."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10889,19 +10950,19 @@ msgstr ""
"Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht "
"möglich, oder aufgrund der query_cache_type Einstellung)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Die Anzahl der Abfragen im Zwischenspeicher."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Der Status der ausfallsicheren Replikation."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10909,13 +10970,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10924,7 +10985,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10932,16 +10993,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10949,13 +11010,13 @@ msgstr ""
"Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread "
"wiederversuchten Transaktionen."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10963,12 +11024,12 @@ msgstr ""
"Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu "
"verbinden."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10978,25 +11039,25 @@ msgstr ""
"wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, "
"sort_buffer herauf zu setzen."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Anzahl der sortierten Datensätze."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Wie oft eine Tabellensperre sofort erlangt wurde."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11008,7 +11069,7 @@ msgstr ""
"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
"(n) zerteilen oder Replikation benutzen."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11018,11 +11079,11 @@ msgstr ""
"Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn "
"dieser Wert rot ist, sollte der thread_cache_size erhöht werden."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Anzahl der momentan offenen Verbindungen."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11034,47 +11095,47 @@ msgstr ""
"Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare "
"Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Anzahl der Prozesse, die nicht schlafen."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Überwachung starten"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Einführung/Einrichtung"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Umordnen/bearbeiten der Schaubilder beendet"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Schaubild hinzufügen"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Schaubilder umordnen/bearbeiten"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Aktualisierungs-Intervall"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Schaubild-Spalten"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Schaubild-Anordnung"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11083,15 +11144,15 @@ msgstr ""
"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung "
"eingerichtet haben."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Zurücksetzen"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Einführung zur Überwachung"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11106,7 +11167,7 @@ msgstr ""
"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% "
"erhöhen kann."
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11118,11 +11179,11 @@ msgstr ""
"mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und "
"höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Verwendung der Überwachung:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11133,7 +11194,7 @@ msgstr ""
"Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie "
"das Zahnrad-Icon des entsprechenden Schaubilds verwenden."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11146,11 +11207,11 @@ msgstr ""
"gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, "
"um diese weiter zu analysieren."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Bitte beachten Sie:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11162,89 +11223,89 @@ msgstr ""
"aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum "
"auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Vordefiniertes Diagramm"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Status Variable(n)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Serie auswählen:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Allgemein-überwacht"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "oder Variablen-Namen eingeben:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Den Wert als Unterschied zeigen"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Divisor hinzufügen"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Einheiten an Datenwerte anfügen"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Diese Serie hinzufügen"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Serien löschen"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Serien im Schaubild:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Protokoll Statistik"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Ausgewählte Zeit-Spanne:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
"Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden "
"sollen."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Query Analyzer"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d Sekunde"
msgstr[1] "%d Sekunden"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11379,7 +11440,7 @@ msgstr "Wert für diese Sitzung"
msgid "Global value"
msgstr "Globaler Wert"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Download"
@@ -11452,39 +11513,39 @@ msgstr "Es sind keine Server konfiguriert"
msgid "New server"
msgstr "Neuer Server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Voreingestellte Sprache"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "Der Benutzer soll entscheiden"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- kein -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Voreingestellter Server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Zeilen-Ende"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Anzeige"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Laden"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin-Homepage"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Spenden"
@@ -11674,8 +11735,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
-"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
-"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
+"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
+"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: setup/lib/index.lib.php:314
#, php-format
@@ -11722,51 +11783,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Fehlerhafte Daten"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Fremdschlüsselwerte ansehen"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Möchten Sie diese Abfrage wirklich ausführen?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ID der eingefügten Zeile: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Ansicht als PHP Code"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Ansicht als SQL Abfrage"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Geprüftes SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-Abfrageergebnis"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Erstellt von"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Titel"
@@ -11781,58 +11833,6 @@ msgstr "Die Tabelle %1$s wurde erfolgreich geändert"
msgid "The columns have been moved successfully."
msgstr "Die gewählten Benutzer wurden gelöscht."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Wegen seiner Länge ist dieses Feld vielleicht nicht editierbar"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binär - nicht editierbar"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Als neuen Datensatz speichern"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Als neue Zeile einfügen und Fehler ignorieren"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Zeige insert Abfrage"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "und dann"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "zurück"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "anschließend einen weiteren Datensatz einfügen"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Zurück zu dieser Seite"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "nächste Zeile bearbeiten"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten "
-"beliebig bewegen"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Einfügen mit %s Datensätzen fortfahren"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12426,32 +12426,38 @@ msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
msgid "Create version"
msgstr "Erzeuge Version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\") für "
"zwei unterschiedliche Spalten"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Zusätzliche Suchkriterien"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Diese Spalte verwenden, um jeden Punkt zu benennen"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maximale Anzahl der darzustellenden Datensätze"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Punkte anzeigen/bearbeiten"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Anleitung"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Zurücksetzen"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Mehr Designs herunterladen!"
@@ -12840,8 +12846,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des "
"gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen"
@@ -12998,8 +13004,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte "
"kleiner als 10%% sein."
@@ -13784,6 +13790,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ist auf 0 gesetzt"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Verwenden Sie das Mausrad, um die Grafik zu vergrößern oder verkleinern."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Klicken und ziehen Sie die Maus, um in der Grafik zu navigieren."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Zeichenketten werden für die Zeichnung in Integerwerte umgewandelt"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14181,8 +14197,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ "directory %s."
#~ msgstr ""
#~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte "
-#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis "
-#~ "%s."
+#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %"
+#~ "s."
#~ msgid "The following queries have been executed:"
#~ msgstr "Die folgenden Abfragen wurden ausgeführt:"
@@ -14229,9 +14245,6 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ msgid "No trigger with name %s found"
#~ msgstr "Kein Trigger mit dem Namen %s gefunden"
-#~ msgid "rows"
-#~ msgstr "Anzeigen"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "Datensätze, beginnend ab Reihe #"
diff --git a/po/el.po b/po/el.po
index aaff1a2ba7..6e51b021ed 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-22 09:27+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
-"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Εμφάνιση όλων"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Εμφάνιση όλων"
msgid "Page number:"
msgstr "Σελίδα:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις "
"ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Αναζήτηση"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Αναζήτηση"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Εκτέλεση"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Όνομα κλειδιού"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Περιγραφή"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Χρήση αυτής της τιμής"
@@ -122,12 +122,12 @@ msgstr "Σχόλια πίνακα"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Στήλη"
@@ -136,6 +136,7 @@ msgstr "Στήλη"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Στήλη"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Τύπος"
@@ -153,12 +154,12 @@ msgstr "Τύπος"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Κενό"
@@ -197,13 +198,13 @@ msgstr "Σχόλια"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Όχι"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Πίνακας"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Εγγραφές"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Αλλαγή στον %sεικονικός μάστορας%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ταξινόμηση"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Αύξουσα"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Φθίνουσα"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Εμφάνιση"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Διαγραφή"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ενωση"
@@ -522,8 +523,8 @@ msgstr[0] "%1$s απατέλεσμα στον πίνακα %2$s"
msgstr[1] "%1$s αποτελέσματα στον πίνακα %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Περιήγηση"
@@ -532,14 +533,14 @@ msgstr "Περιήγηση"
msgid "Delete the matches for the %s table?"
msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Διαγραφή"
@@ -607,14 +608,14 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη."
msgid "Tracking is not active."
msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
-"%sτεκμηρίωση%s."
+"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
+"sτεκμηρίωση%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -623,7 +624,7 @@ msgstr "Προβολή"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Αναπαραγωγή"
@@ -638,20 +639,20 @@ msgstr ""
"Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Επιλογή όλων"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -663,27 +664,27 @@ msgstr "Επιλογή πινάκων με περίσσεια"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Εξαγωγή"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Εμφάνιση για εκτύπωση"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Άδειασμα"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -709,11 +710,11 @@ msgstr "Ανάλυση πίνακα"
msgid "Add prefix to table"
msgstr "Προσθήκη προθέματος στον πίνακα"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Αντικατάσταση προθέματος πίνακα"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Αντιγραφή πίνακα με πρόθεμα"
@@ -732,8 +733,8 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Βάση"
@@ -751,7 +752,7 @@ msgstr "Ενημερώθηκε"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Κατάσταση"
@@ -851,45 +852,45 @@ msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Γεωμετρία"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Σημείο"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "Χ"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Υ"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Σημείο %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Προσθήκη σημείου"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Κείμενο γραμμής"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Εξωτερικός δακτύλιος"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Εσωτερικός δακτύλιος"
@@ -897,15 +898,15 @@ msgstr "Εσωτερικός δακτύλιος"
msgid "Add a linestring"
msgstr "Προσθήκη κειμένου γραμμής"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Προσθήκη εσωτερικού δακτυλίου"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Πολύγωνο"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Προσθήκη πολυγώνου"
@@ -928,11 +929,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
-"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
+"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -981,7 +982,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε"
@@ -1009,7 +1010,7 @@ msgstr ""
"και αν αυξήσετε τα χρονικά όρια της php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1026,7 +1027,7 @@ msgstr ""
"Το phpMyAdmin είναι πιο φιλικό με έναν που υποστηρίζει frames "
"φυλλομετρητή."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
@@ -1036,7 +1037,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι
msgid "Do you really want to execute \"%s\"?"
msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!"
@@ -1122,21 +1123,21 @@ msgstr "Κλείσιμο"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Επεξεργασία"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Διάγραμμα τρέχουσας κυκλοφορίας"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Διάγραμμα τρέχοντος ερωτήματος"
@@ -1147,23 +1148,23 @@ msgstr "Στατικά δεδομένα"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Σύνολο"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Άλλα"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1183,7 +1184,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)"
msgid "Connections since last refresh"
msgstr "Συνδέσεις από την τελευταία ανανέωση"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Διεργασίες"
@@ -1201,7 +1202,7 @@ msgstr "Ερωτήσεις από την τελευταία ανανέωση"
msgid "Questions (executed statements by the server)"
msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Στατιστικά ερωτήματος"
@@ -1246,14 +1247,14 @@ msgid "System swap"
msgstr "Αδράνεια συστήματος"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1305,32 +1306,32 @@ msgstr "Σταλθέντα Bytes"
msgid "Bytes received"
msgstr "Ληφθέντα Bytes"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Συνδέσεις"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1344,11 +1345,11 @@ msgstr "%d πίνακας(ες)"
msgid "Questions"
msgstr "Ερωτήσεις"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Κίνηση"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Ρυθμίσεις"
@@ -1369,10 +1370,10 @@ msgid "Please add at least one variable to the series"
msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Καμία"
@@ -1474,7 +1475,7 @@ msgstr "Αλλαγή ρυθμίσεων"
msgid "Current settings"
msgstr "Τρέχουσες ρυθμίσεις"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Τίτλος Διαγράμματος"
@@ -1563,9 +1564,9 @@ msgstr "Ανάλυση..."
msgid "Explain output"
msgstr "Επεξήγηση προϊόντος"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Χρόνος"
@@ -1668,7 +1669,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Εισαγωγή"
@@ -1792,19 +1793,19 @@ msgstr "Απόκρυψη ευρετηρίων"
msgid "Show indexes"
msgstr "Εμφάνιση ευρετηρίων"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Ενεργοποιημένη"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1874,7 +1875,7 @@ msgstr "Προβολή παραθύρου ερωτήματος"
msgid "No rows selected"
msgstr "Δεν επιλέχθηκαν γραμμές"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Αλλαγή"
@@ -1883,17 +1884,18 @@ msgstr "Αλλαγή"
msgid "Query execution time"
msgstr "Χρόνος εκτέλεσης ερωτήματος"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Αποθήκευση"
@@ -1918,79 +1920,71 @@ msgid "Hovering over a point will show its label."
msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Χρησιμοποιείστε τη ροδέλα του ποντικιού για μεγέθυνση και σμίκρυνση."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Πατήστε και σύρτε το ποντίκι για πλοήγηση."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Πατήστε στην επαναφορά εστίασης για να επιστρέψετε στην αρχική κατάσταση."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη "
"γραμμή δεδομένων."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Τα κείμενα μετατρέπονται σε ακεραίους για την εκτύπωση"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Επιλογή δύο στηλών"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Επιλογή δύο διαφορετικών στηλών"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Ααποτελέσματα ερωτήματος"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Περιεχόμενο δείκτη δεδομένων"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Παράληψη"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Αντιγραφή"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Προσθήκη στηλών"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Επιλέξτε αναφερθέν κλειδί"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Επιλέξτε Μη Διακριτό Κλειδί"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Επιλέξτε στήλη για εμφάνιση"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1998,15 +1992,15 @@ msgstr ""
"Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. "
"Θέλετε να συνεχίσετε;"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Προσθήκη επιλογής για τη στήλη "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2014,27 +2008,27 @@ msgstr ""
"Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να "
"αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Σύρτε για ανακατανομή"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Πατήστε για ταξινόμηση"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Πατήστε για εναλλαγή επισήμανσης"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Πατήστε το προς τα κάτω βέλος για εναλλαγή της εμφάνισης στηλών"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2043,50 +2037,50 @@ msgstr ""
"την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή "
"ίσως να μη λειτουργούν μετά την αποθήκευση."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Μπορείτε επίσης να επεξεργαστείτε στήλες πατώντας κατευθείαν στα "
"περιεχόμενά τους."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Μετάβαση στο σύνδεσμο"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Ονόματα στηλών"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Ενημέρωση γραμμής(ών)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Δημιουργία κωδικού πρόσβασης"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Παραγωγή"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Αλλαγή Κωδικού Πρόσβασης"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Περισσότερα"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2096,266 +2090,266 @@ msgstr ""
"εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", τελευταία έκδοση:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "ενημερωμένο"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Προηγούμενο"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Σήμερα"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Ιανουαρίου"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Φεβρουαρίου"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Σεπτεμβρίου"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Νοεμβρίου"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Δεκεμβρίου"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Ιαν"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Φεβ"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Μαρ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Απρ"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Μάη"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Ιουν"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Ιουλ"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Αυγ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Σεπ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Οκτ"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Νοε"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Δεκ"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Τετάρτη"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Πέμπτη"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Σάββατο"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Κυρ"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Δευ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Τρί"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Τετ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Πέμ"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Παρ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Σάβ"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Κυ"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Δε"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Τρ"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Τε"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Πε"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Πα"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Σα"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "ημερολόγιο-μήνας-έτος"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "κανένα"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Ώρα"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Λεπτό"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Δευτερόλεπτο"
@@ -2410,16 +2404,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "ανά δευτερόλεπτο"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "ανά λεπτό"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "ανά ώρα"
@@ -2554,15 +2548,15 @@ msgstr ""
msgid "Databases"
msgstr "Βάσεις δεδομένων"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Διακομιστής"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2574,20 +2568,20 @@ msgid "Structure"
msgstr "Δομή"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "Κώδικας SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Προσθήκη"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Λειτουργίες"
@@ -2645,12 +2639,12 @@ msgstr "Χρήστες"
msgid "Synchronize"
msgstr "Συγχρονισμός"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Δυαδικό αρχείο καταγραφής"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Μεταβλητές"
@@ -2667,8 +2661,9 @@ msgid "Engines"
msgstr "Μηχανές"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Λάθος"
@@ -2789,35 +2784,35 @@ msgstr ""
"παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει "
"αλλαχτεί."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Προεπισκόπηση μη διαθέσιμη."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "πάρτε το"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Το θέμα %s δεν βρέθηκε!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Θέμα"
@@ -2858,14 +2853,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3125,8 +3120,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@@ -3239,7 +3234,7 @@ msgstr "κοινόχρηστο"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Πίνακες"
@@ -3290,11 +3285,11 @@ msgstr "δυνατή αξιοποίηση"
msgid "numeric key detected"
msgstr "ανιχνεύτηκε αριθμητικό κλειδί"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3302,12 +3297,12 @@ msgstr ""
"Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα "
"σφάλματα που εμφανίζονται παρακάτω."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3319,23 +3314,23 @@ msgstr ""
"Η εντολή $cfg['PmaAbsoluteUri'] ΠΡΕΠΕΙ να οριστεί στο αρχείο "
"ρυθμίσεων!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις "
"σας."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
@@ -3370,8 +3365,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Εντολή SQL"
@@ -3409,7 +3404,7 @@ msgid "Create PHP Code"
msgstr "Δημιουργία κώδικα PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Ανανέωση"
@@ -3430,97 +3425,97 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Εσωτερικό"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Δημιουργία προφίλ"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Κυρ"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y στις %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Απολεσθείσα παράμετρος:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Αρχή"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Προηγούμενη"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Επόμενη"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Τέλος"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Μεταπήδηση στην βάση «%s»."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Πατήστε για εναλλαγή"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Περιηγηθείτε στον υπολογιστή σας:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
"Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Δεν υπάρχουν αρχεία προς αποστολή"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Εκτέλεση"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Εκτύπωση"
@@ -3695,9 +3690,9 @@ msgstr "Επαναφορά προεπιλεγμένης τιμής"
msgid "Allow users to customize this value"
msgstr "Επιτρέπεται στους χρήστες να προσαρμόσουν αυτή την τιμή"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Επαναφορά"
@@ -3858,7 +3853,7 @@ msgid "Compress on the fly"
msgstr "Άμεση συμπίεση"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Αρχείο ρυθμίσεων"
@@ -3920,7 +3915,7 @@ msgstr "Προτεινόμενη δομή πίνακα"
msgid "Show binary contents as HEX by default"
msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX ως προεπιλογή"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX"
@@ -5852,7 +5847,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Έλεγχος για τελευταία έκδοση"
@@ -5999,7 +5994,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει
msgid "possible deep recursion attack"
msgstr "πιθανή βαθειά ανάδρομή επίθεση"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6007,19 +6002,19 @@ msgstr ""
"Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί "
"σωστά)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Ο διακομιστής δεν αποκρίνεται."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Λεπτομέρειες..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6180,8 +6175,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -6380,48 +6375,53 @@ msgstr "Επιλογές Ορισμένης Μορφής:"
msgid "Language"
msgstr "Γλώσσα"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Αποθήκευση επεξεργασμένων δεδομένων"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Επαναφορά κατανομής στηλών"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Εγγραφή έναρξης"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Αριθμός εγγραφών"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Μορφή"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "οριζόντια"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "οριζόντια (στραμμένες επικεφαλίδες)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "κάθετη"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Κεφαλίδες κάθε %s εγγραφές"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "εγγραφές"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ταξινόμηση ανά κλειδί"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6439,89 +6439,89 @@ msgstr "Ταξινόμηση ανά κλειδί"
msgid "Options"
msgstr "Επιλογές"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Περιληπτικά κείμενα"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Πλήρη κείμενα"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Κλειδί συσχέτισης"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Στήλη προβολής συσχέτισης"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Εμφάνιση δυαδικών περιεχομένων"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Εμφάνιση περιεχομένων BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Απόκρυψη μετατροπής περιηγητή"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Καλά Γνωστό Κείμενο"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Καλά Γνωστό Δυαδικό"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Η εγγραφή έχει διαγραφεί"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Τερματισμός"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "στην εντολή"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Εμφάνιση εγγραφών"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "συνολικά"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Εμφάνιση διαγράμματος"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Οπτικοποίηση δεδομένων GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Δημιουργία προβολής"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Δεν βρέθηκε η σύνδεση"
@@ -6570,7 +6570,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Κατάσταση InnoDB"
@@ -6868,11 +6868,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
-"%sΙστοσελίδα του PrimeBase XT%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
+"sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:130
msgid "Related Links"
@@ -6992,12 +6992,12 @@ msgstr "Διαθέσιμοι τύποι MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Φιλοξενητής"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Χρόνος δημιουργίας"
@@ -7224,8 +7224,8 @@ msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοπο
msgid "GLOBALS overwrite attempt"
msgstr "προσπάθεια επανεγγραφής GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)."
@@ -7400,6 +7400,99 @@ msgstr "Κατάσταση συμβατότητας SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Να μην γίνεται AUTO_INCREMENT σε μηδενικές τιμές"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Συνάρτηση"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Απόκρυψη"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Δυαδικό"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+"Εξαιτίας του μεγέθος του, αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Επεξεργασία/Προσθήκη"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Συνέχιση εισαγωγής με %s εγγραφές"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "και μετά"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Εισαγωγή ως νέα εγγραφή"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Εμφάνιση ερωτήματος εισαγωγής"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Επιστροφή"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Εισαγωγή νέας εγγραφής"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Επιστροφή σε αυτή τη σελίδα"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Επεξεργασία επόμενης γραμμής"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για "
+"μετακίνηση παντού"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Τιμή"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Εμφάνιση ερωτήματος SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7410,34 +7503,34 @@ msgstr "Καμία"
msgid "Convert to Kana"
msgstr "Μετατροπή σε Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Από"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Προς"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Αποστολή"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Προσθήκη προθέματος πίνακα"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Προσθήκη προθέματος"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to execute following query?"
msgid "Do you really want to execute the following query?"
msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Χωρίς αλλαγή"
@@ -7445,11 +7538,6 @@ msgstr "Χωρίς αλλαγή"
msgid "Charset"
msgstr "Σύνολο χαρακτήρων"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Δυαδικό"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Βουλγαρικά"
@@ -7785,18 +7873,10 @@ msgid "Slave status"
msgstr "Κατάσταση δευτερεύοντος"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Μεταβλητή"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Τιμή"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Ταυτότητα Διακομιστή"
@@ -8133,11 +8213,6 @@ msgstr "Εκτέλεση ρουτίνας"
msgid "Routine parameters"
msgstr "Παράμετροι ρουτίνας"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Συνάρτηση"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε τη διαγραμμένη ενέργεια."
@@ -8460,7 +8535,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Καθάρισμα"
@@ -8468,11 +8543,11 @@ msgstr "Καθάρισμα"
msgid "Columns"
msgstr "Στήλες"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
@@ -8496,10 +8571,6 @@ msgstr "Επανεμφάνιση αυτού του ερώτηματος εδώ"
msgid "View only"
msgstr "Μόνο ανάγνωση"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8699,10 +8770,6 @@ msgstr "Τελεστής"
msgid "Table Search"
msgstr "Αναζήτηση Πίνακα"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Επεξεργασία/Προσθήκη"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8770,8 +8837,8 @@ msgstr ""
"επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν "
"θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» "
"αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή "
-"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP "
-"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
+"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και "
+"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()."
#: libraries/transformations/text_plain__external.inc.php:13
msgid ""
@@ -8925,7 +8992,7 @@ msgstr "Έκδοση πρωτοκόλλου"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Χρήστης"
@@ -9043,8 +9110,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
-"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
-"%sεδώ%s."
+"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
+"sεδώ%s."
#: main.php:357
#, php-format
@@ -9151,10 +9218,6 @@ msgstr "Απόκρυψη/Προβολή όλων"
msgid "Hide/Show Tables with no relation"
msgstr "Απόκρυψη/Εμφάνιση Πινάκων χωρίς συσχέτιση"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Απόκρυψη"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Αριθμός πινάκων"
@@ -9351,17 +9414,17 @@ msgstr "Το αρχείο δεν υπάρχει"
msgid "Select binary log to view"
msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Αρχεία"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Πλήρης εμφάνιση ερωτημάτων"
@@ -9806,8 +9869,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -9936,7 +9999,7 @@ msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική "
"διαδικασία."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Προβολή κατάστασης πρωτεύοντος"
@@ -10088,12 +10151,12 @@ msgstr ""
"Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία "
"αναπαραγωγής. Θέλετε να τον ρυθμίσετε;"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Η λειτουργία %s διεκόπη."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10101,115 +10164,115 @@ msgstr ""
"Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη "
"σταματήσει."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Χειριστής"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Λανθάνουσα μνήμη ερωτήματος"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Διεργασίες"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Προσωρινά δεδομένα"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Καθυστερημένες εισαγωγές"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Λανθάνουσα μνήμη κλειδιού"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Ενώσεις"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Ταξινόμηση"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Συντονιστής κινήσεων"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Εμφάνιση ανοιχτών πινάκων"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Εμφάνιση δευτερευόντων διακομιστών"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Εμφάνιση κατάστασης δευτερεύοντος"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Πληροφορίες εκτέλεσης"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Όλες οι μεταβλητές κατάστασης"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Εποπτεία"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Σύμβουλος"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Ρυθμός ανανέωσης: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Φίλτρα"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Να περιλαμβάνει τη λέξη:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Εμφάνιση μόνο τιμών ειδοποίησης"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Φιλτράρισμα ανά κατηγορία..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Εμφάνιση μη διαμορφομένων τιμών"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Σχετικοί σύνδεσμοι:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Αναλυτής εκτέλεσης"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Οδηγίες"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10217,7 +10280,7 @@ msgstr ""
"Το σύστημα Συμβούλου μπορεί να παρέχει προτάσεις για μεταβλητές διακομιστή "
"αναλύοντας τις μεταβλητές κατάστασης διακομιστή."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10226,7 +10289,7 @@ msgstr ""
"Σημειώστε ότι αυτό το σύστημα παρέχει προτάσεις βάσει σε απλούς υπολογισμούς "
"και βασικούς κανόνες που μπορεί να μην εφαρμόζονται στο σύστημά σας."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10236,7 +10299,7 @@ msgstr ""
"τεημνρίωση) και πως να αναιρέσετε την αλλαγή. Εσφαλμένη ρύθμιση ίσως έχει "
"σοβαρή επίδραση στην απόδοση."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10247,31 +10310,31 @@ msgstr ""
"αν δεν υπήρχε ουσιαστική βελτίωση."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Ερωτήσεις από την εκκίνηση: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Δηλώσεις"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %1$s. Ξεκίνησε στις %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10279,19 +10342,19 @@ msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε "
"μια αναπαραγωγική διαδικασία."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική"
"b> διαδικασία."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια "
"αναπαραγωγική διαδικασία."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10299,11 +10362,11 @@ msgstr ""
"Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, "
"επισκεφτείτε τον τομέα αναπαραγωγής."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Κατάσταση αναπαραγωγής"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10312,35 +10375,35 @@ msgstr ""
"έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να "
"είναι εσφαλμένες."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Ελήφθησαν"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Εστάλησαν"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Αποτυχημένες προσπάθειες"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Ακυρωμένες συνδέσεις"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "Κωδικός"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Εντολή"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10348,12 +10411,12 @@ msgstr ""
"Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να "
"κλείσει σωστά τη σύνδεση."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10363,20 +10426,20 @@ msgstr ""
"μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν "
"ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα "
"μνήμη καταγραφής."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή "
"MySQL."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10388,11 +10451,11 @@ msgstr ""
"είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι "
"προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10400,7 +10463,7 @@ msgstr ""
"Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από "
"τον διακομιστή κατά την εκτέλεσε δηλώσεων."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10408,7 +10471,7 @@ msgstr ""
"Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις "
"οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10417,23 +10480,23 @@ msgstr ""
"διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT "
"DELAYED χρησιμοποιεί της δική του διεργασία."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10444,7 +10507,7 @@ msgstr ""
"ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που "
"βρέθηκαν."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10455,7 +10518,7 @@ msgstr ""
"ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει "
"ευρετήριο."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10464,7 +10527,7 @@ msgstr ""
"είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές "
"σας έχουν κάνει σωστά ευρετήρια."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10474,7 +10537,7 @@ msgstr ""
"κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα "
"περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10483,7 +10546,7 @@ msgstr ""
"η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής "
"ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10496,7 +10559,7 @@ msgstr ""
"σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα "
"κλειδιά."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10508,37 +10571,37 @@ msgstr ""
"ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν "
"έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Ο αριθμός των μη καθαρώ σελίδων."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για "
"εκκαθάριση."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Ο αριθμός των ελεύθερων σελίδων."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10548,7 +10611,7 @@ msgstr ""
"σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να "
"εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10560,11 +10623,11 @@ msgstr ""
"τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10573,7 +10636,7 @@ msgstr ""
"συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά "
"με τυχαία σειρά."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10581,11 +10644,11 @@ msgstr ""
"Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό "
"συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10593,7 +10656,7 @@ msgstr ""
"Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει "
"από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10608,55 +10671,55 @@ msgstr ""
"αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή "
"πρέπει να είναι μικρή."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων "
"που γράφτηκαν για αυτό το σκοπό."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10664,36 +10727,36 @@ msgstr ""
"Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer "
"καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
"Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Ο αριθμός των δημιουργηθέντων σελίδων."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10702,55 +10765,55 @@ msgstr ""
"υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη "
"μετατροπή σε bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Ο αριθμός των αναγνωσμένων σελίδων."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Ο αριθμός των εγεγγραμμένων σελίδων."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
"Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε "
"χιλιοστοδευτερόλεπτα."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
"Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10759,7 +10822,7 @@ msgstr ""
"αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10768,7 +10831,7 @@ msgstr ""
"Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση "
"λανθάνουσα μνήμη κλειδιού χρησιμοποιείται."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10778,17 +10841,17 @@ msgstr ""
"τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι "
"σε χρήση με μια φορά."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
"Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
"Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10799,7 +10862,7 @@ msgstr ""
"μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως "
"Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10807,22 +10870,22 @@ msgstr ""
"Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων "
"σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
"Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10833,7 +10896,7 @@ msgstr ""
"διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 "
"σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10841,12 +10904,12 @@ msgstr ""
"Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση "
"του διακομιστή."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10854,21 +10917,21 @@ msgstr ""
"Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι "
"μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για "
"καταγραφή)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10878,19 +10941,19 @@ msgstr ""
"ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας "
"την εντολή FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10904,7 +10967,7 @@ msgstr ""
"χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να "
"απομακρύνει από τη λανθάνουσα μνήμη."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10912,19 +10975,19 @@ msgstr ""
"Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν "
"απομνημονεύονται λόγω της ρύθμισης query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10932,13 +10995,13 @@ msgstr ""
"Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, "
"πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα "
"παραπομπής."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10947,7 +11010,7 @@ msgstr ""
"κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα "
"ευρετήρια των πινάκων σας.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10955,17 +11018,17 @@ msgstr ""
"Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά "
"δεν είναι κρίσιμος αν δεν είναι μεγάλος.)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα "
"συνεργασία SQL."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10973,13 +11036,13 @@ msgstr ""
"Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας "
"αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε "
"πρωτεύωντα."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10987,14 +11050,14 @@ msgstr ""
"Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time "
"δευτερόλεπτα να δημιουργηθούν."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time "
"δευτερόλεπτα."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11004,23 +11067,23 @@ msgstr ""
"ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της "
"μεταβλητής συστήματος sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Ο αριθμός των ταξινομημένων γραμμών."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11032,7 +11095,7 @@ msgstr ""
"απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον "
"πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11042,11 +11105,11 @@ msgstr ""
"λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν "
"η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11058,47 +11121,47 @@ msgstr ""
"thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης "
"αν έχετε μια καλή εφαρμογή διεργασίας.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Έναρξη Εποπτείας"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Οδηγίες/Εγκατάσταση"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Προσθήκη διαγράμματος"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Ρυθμός ανανέωσης"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Στήλες διαγράμματος"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Διευθέτηση διαγράμματος"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11106,15 +11169,15 @@ msgstr ""
"Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των "
"φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Επαναφορά προεπιλογής"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Οδηγίες Εποπτείας"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11124,12 +11187,12 @@ msgid ""
msgstr ""
"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση "
"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα "
-"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει "
-"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log "
+"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το "
+"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log "
"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και "
"15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11142,11 +11205,11 @@ msgstr ""
"MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα "
"χαρακτηριστικά διαγραμμάτων του διακομιστή."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Χρήση της εποπτείας:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11157,7 +11220,7 @@ msgstr ""
"ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα "
"χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11170,11 +11233,11 @@ msgstr ""
"επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί "
"μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Σημειώστε:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11188,88 +11251,88 @@ msgstr ""
"απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν "
"είναι απαραίτητη η εποπτεία."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Προκαθορισμός διαγράμματος"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Μεταβλητή(ές) κατάστασης"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Επιλογή σειρών:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Συχνά εποπτευόμενα"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "ή όνομα τύπου μεταβλητής:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Προβολή ως διαφορική τιμή"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Εφαρμογή διαιρέτη"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Προσθήκη αυτής της σειράς"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Εκκαθάριση σειράς"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Σειρά σε Διάγραμμα:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Στατιστικά καταγραφών"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Επιλεγμένο εύρος χρόνου:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη "
"ομαδοποιήση"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Αναλυτής ερωτήματος"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d δευτερόλεπτο"
msgstr[1] "%d δευτερόλεπτο"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11408,7 +11471,7 @@ msgstr "Τιμή συνεδρίας"
msgid "Global value"
msgstr "Προεπιλεγμένη τιμή"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Λήψη"
@@ -11484,39 +11547,39 @@ msgstr "Δεν υπάρχουν ρυθμισμένοι διακομιστές"
msgid "New server"
msgstr "Νέος διακομιστής"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Προεπιλεγμένη γλώσσα"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "δικαίωμα επιλογής στο χρήστη"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- καμία -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Προεπιλεγμένος διακομιστής"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Τέλος γραμμής"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Προβολή"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Φόρτωση"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Ιστοσελίδα phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Δωρεά"
@@ -11654,8 +11717,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
-"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
-"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
+"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
+"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:306
#, php-format
@@ -11752,51 +11815,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Εσφαλμένα δεδομένα"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Αναζήτηση μη διακριτών τιμών"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Εμφάνιση ως κώδικά PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Εμφάνιση ερωτήματος SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Επικυρωμένη SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "αποτέλεσμα SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Δημιουργήθηκε από"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Ετικέτα"
@@ -11811,59 +11865,6 @@ msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς"
msgid "The columns have been moved successfully."
msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-"Εξαιτίας του μεγέθος του, αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Εισαγωγή ως νέα εγγραφή"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Εμφάνιση ερωτήματος εισαγωγής"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "και μετά"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Επιστροφή"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Εισαγωγή νέας εγγραφής"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Επιστροφή σε αυτή τη σελίδα"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Επεξεργασία επόμενης γραμμής"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για "
-"μετακίνηση παντού"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Συνέχιση εισαγωγής με %s εγγραφές"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12457,32 +12458,38 @@ msgstr "Παρακολούθηση αυτών των δηλώσεων χειρι
msgid "Create version"
msgstr "Δημιουργία έκδοσης"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Εκτέλεσε ένα «επερώτημα ανά παράδειγμα» (χαρακτήρας μπαλαντέρ «%») για δύο "
"διαφρετικές στήλες"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Πρόσθετα κριτήρια αναζήτησης"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Χρησιμοποιήστε αυτή τη στήλη για την ετικέτα κάθε σημείου"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Αναζήτηση/Επεξεργασία των σημείων"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Πως να το χρησιμοποιήσετε"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Επαναφορά"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Λήψη περισσότερων θεμάτων!"
@@ -12799,8 +12806,8 @@ msgid ""
msgstr ""
"Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την "
"απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το "
-"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε "
-"«ΟΝ». Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση."
+"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». "
+"Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση."
#: libraries/advisory_rules.txt:151
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
@@ -12881,8 +12888,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη "
"συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο "
@@ -12959,8 +12966,8 @@ msgid ""
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
"Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. "
-"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: "
-"0,1%%)"
+"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%"
+"%)"
#: libraries/advisory_rules.txt:188
msgid "Query cache max size"
@@ -13044,8 +13051,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή "
"πρέπει να είναι κάτω από 10%%."
@@ -13613,8 +13620,8 @@ msgstr ""
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
-"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από "
-"1%%"
+"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%"
+"%"
#: libraries/advisory_rules.txt:399
msgid "Rate of aborted connections"
@@ -13833,6 +13840,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Το concurrent_insert έχει οριστεί στο 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Χρησιμοποιείστε τη ροδέλα του ποντικιού για μεγέθυνση και σμίκρυνση."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Πατήστε και σύρτε το ποντίκι για πλοήγηση."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Τα κείμενα μετατρέπονται σε ακεραίους για την εκτύπωση"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13955,8 +13972,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
-#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων "
-#~ "%s;"
+#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %"
+#~ "s;"
#~ msgid "Unknown error while uploading."
#~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου."
@@ -14256,9 +14273,6 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Δεν βρέθηκε ενέργεια με το όνομα %s"
-#~ msgid "rows"
-#~ msgstr "εγγραφές"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "εγγραφή(ές) αρχίζοντας από την εγγραφή #"
diff --git a/po/en_GB.po b/po/en_GB.po
index 894c27af0f..17f17caef2 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -5,24 +5,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-16 15:28+0200\n"
"Last-Translator: Robert Readman \n"
"Language-Team: english-gb \n"
-"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Show all"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -30,7 +30,7 @@ msgstr "Show all"
msgid "Page number:"
msgstr "Page number:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -40,21 +40,22 @@ msgstr ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Search"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -70,28 +71,27 @@ msgstr "Search"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Go"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Keyname"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Description"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Use this value"
@@ -124,12 +124,12 @@ msgstr "Table comments"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Column"
@@ -138,6 +138,7 @@ msgstr "Column"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -145,9 +146,9 @@ msgstr "Column"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -155,12 +156,12 @@ msgstr "Type"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -199,13 +200,13 @@ msgstr "Comments"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -216,19 +217,19 @@ msgstr "No"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Table"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rows"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Switch to %svisual builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sort"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descending"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Show"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Or"
@@ -522,8 +523,8 @@ msgstr[0] "%1$s match inside table %2$s"
msgstr[1] "%1$s matched inside table %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Browse"
@@ -532,14 +533,14 @@ msgstr "Browse"
msgid "Delete the matches for the %s table?"
msgstr "Delete the matches for the %s table?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Delete"
@@ -607,14 +608,14 @@ msgstr "Tracking is active."
msgid "Tracking is not active."
msgstr "Tracking is not active."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -623,7 +624,7 @@ msgstr "View"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replication"
@@ -637,20 +638,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Check All"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -662,27 +663,27 @@ msgstr "Check tables having overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Print view"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Empty"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -708,11 +709,11 @@ msgstr "Analyse table"
msgid "Add prefix to table"
msgstr "Add prefix to table"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Replace table prefix"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copy table with prefix"
@@ -731,8 +732,8 @@ msgstr "Tracked tables"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -750,7 +751,7 @@ msgstr "Updated"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -849,45 +850,45 @@ msgstr "Use OpenStreetMaps as Base Layer"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometry"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Point"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Point %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Add a point"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linestring"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Outer Ring"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Inner Ring"
@@ -895,15 +896,15 @@ msgstr "Inner Ring"
msgid "Add a linestring"
msgstr "Add a linestring"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Add an inner ring"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Add a polygon"
@@ -926,11 +927,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -975,7 +976,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Could not load import plug-ins, please check your installation!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bookmark %s created"
@@ -1002,7 +1003,7 @@ msgstr ""
"won't be able to finish this import unless you increase php time limits."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1017,7 +1018,7 @@ msgstr "Back"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin is more friendly with a frames-capable browser."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" statements are disabled."
@@ -1026,7 +1027,7 @@ msgstr "\"DROP DATABASE\" statements are disabled."
msgid "Do you really want to execute \"%s\"?"
msgstr "Do you really want to execute \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "You are about to DESTROY a complete database!"
@@ -1112,21 +1113,21 @@ msgstr "Close"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edit"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Live traffic chart"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Live conn./process chart"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Live query chart"
@@ -1137,23 +1138,23 @@ msgstr "Static data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Other"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1173,7 +1174,7 @@ msgstr "Server traffic (in KiB)"
msgid "Connections since last refresh"
msgstr "Connections since last refresh"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processes"
@@ -1191,7 +1192,7 @@ msgstr "Questions since last refresh"
msgid "Questions (executed statements by the server)"
msgstr "Questions (executed statements by the server)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Query statistics"
@@ -1236,14 +1237,14 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1295,32 +1296,32 @@ msgstr "Bytes sent"
msgid "Bytes received"
msgstr "Bytes received"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Connections"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1334,11 +1335,11 @@ msgstr "%d table(s)"
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Settings"
@@ -1359,10 +1360,10 @@ msgid "Please add at least one variable to the series"
msgstr "Please add at least one variable to the series"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "None"
@@ -1462,7 +1463,7 @@ msgstr "Change settings"
msgid "Current settings"
msgstr "Current settings"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Chart Title"
@@ -1544,9 +1545,9 @@ msgstr "Analyzing..."
msgid "Explain output"
msgstr "Explain output"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Time"
@@ -1642,7 +1643,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Import"
@@ -1762,15 +1763,15 @@ msgstr "Hide indexes"
msgid "Show indexes"
msgstr "Show indexes"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Foreign key check:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Enabled)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Disabled)"
@@ -1838,7 +1839,7 @@ msgstr "Show query box"
msgid "No rows selected"
msgstr "No rows selected"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Change"
@@ -1847,17 +1848,18 @@ msgstr "Change"
msgid "Query execution time"
msgstr "Query execution time"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d is not valid row number."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Save"
@@ -1882,75 +1884,67 @@ msgid "Hovering over a point will show its label."
msgstr "Hovering over a point will show its label."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Use mouse-wheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Click and drag the mouse to navigate the plot."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Click reset zoom link to come back to original state."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Click a data point to view and possibly edit the data row."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "The plot can be resized by dragging it along the bottom right corner."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Strings are converted into integer for plotting"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Select two columns"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Select two different columns"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Query results"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Data point content"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copy"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Add columns"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Select referenced key"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Select Foreign Key"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Please select the primary key or a unique key"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Choose column to display"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1958,15 +1952,15 @@ 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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Add an option for column "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Press escape to cancel editing"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1974,27 +1968,27 @@ msgstr ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Drag to reorder"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Click to sort"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Click to mark/unmark"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Double-click to copy column name"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Click the drop-down arrow to toggle column's visibility"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2002,45 +1996,45 @@ msgstr ""
"This table does not contain a unique column. Features related to the grid "
"edit, tick-box, Edit, Copy and Delete links may not work after saving."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"You can also edit most columns by clicking directly on their content."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Go to link"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copy column name"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Right-click the column name to copy it to your clipboard."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Show data row(s)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Generate password"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generate"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Change Password"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "More"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2050,266 +2044,266 @@ msgstr ""
"upgrading. The newest version is %s, released on %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", latest stable version:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "up to date"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Done"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Prev"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Today"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "January"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "February"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "March"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "April"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "May"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "June"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "July"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "August"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "October"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Wk"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Second"
@@ -2360,16 +2354,16 @@ msgstr "Unexpected characters on line %s"
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per second"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minute"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per hour"
@@ -2502,15 +2496,15 @@ msgstr ""
msgid "Databases"
msgstr "Databases"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2522,20 +2516,20 @@ msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insert"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operations"
@@ -2593,12 +2587,12 @@ msgstr "Users"
msgid "Synchronize"
msgstr "Synchronise"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binary log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variables"
@@ -2615,8 +2609,9 @@ msgid "Engines"
msgstr "Engines"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
@@ -2734,35 +2729,35 @@ msgstr ""
"after you refresh this page. Please check if the table structure has been "
"changed."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "No valid image path for theme %s found!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "No preview available."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "take it"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Default theme %s not found!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Theme %s not found!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Theme path not found for theme %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Theme"
@@ -2814,20 +2809,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -3121,11 +3116,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3227,7 +3222,7 @@ msgstr "shared"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tables"
@@ -3278,11 +3273,11 @@ msgstr "possible exploit"
msgid "numeric key detected"
msgstr "numeric key detected"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Failed to read configuration file"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3290,12 +3285,12 @@ msgstr ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Could not load default configuration from: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3303,21 +3298,21 @@ msgstr ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Invalid server index: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Invalid hostname for server %1$s. Please review your configuration."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Invalid authentication method set in configuration:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "You should upgrade to %s %s or later."
@@ -3352,8 +3347,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL query"
@@ -3391,7 +3386,7 @@ msgid "Create PHP Code"
msgstr "Create PHP Code"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Refresh"
@@ -3412,95 +3407,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sun"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Missing parameter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Previous"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Next"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "End"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Jump to database "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Click to toggle"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Browse your computer:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Select from the web server upload directory %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "There are no files to upload"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Execute"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Print"
@@ -3672,9 +3667,9 @@ msgstr "Restore default value"
msgid "Allow users to customize this value"
msgstr "Allow users to customise this value"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reset"
@@ -3837,7 +3832,7 @@ msgid "Compress on the fly"
msgstr "Compress on the fly"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Configuration file"
@@ -3897,7 +3892,7 @@ msgstr "Hide table structure actions"
msgid "Show binary contents as HEX by default"
msgstr "Show binary contents as HEX by default"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Show binary contents as HEX"
@@ -5783,7 +5778,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Enable the Developer tab in settings"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Check for latest version"
@@ -5923,7 +5918,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration."
msgid "possible deep recursion attack"
msgstr "possible deep recursion attack"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5931,19 +5926,19 @@ msgstr ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "The server is not responding."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Please check privileges of directory containing database."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Details..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6103,12 +6098,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6296,48 +6291,53 @@ msgstr "Format-Specific Options:"
msgid "Language"
msgstr "Language"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Save edited data"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Restore column order"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Start row"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Number of rows"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Mode"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (rotated headers)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Headers every %s rows"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Browse"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6355,89 +6355,89 @@ msgstr "Sort by key"
msgid "Options"
msgstr "Options"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Partial texts"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Full texts"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relational key"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relational display column"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Show binary contents"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Show BLOB contents"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Hide browser transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Well Known Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "The row has been deleted"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Display chart"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualise GIS data"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Create view"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link not found"
@@ -6485,7 +6485,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6776,11 +6776,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:130
msgid "Related Links"
@@ -6900,12 +6900,12 @@ msgstr "Display MIME types"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Generation Time"
@@ -7124,8 +7124,8 @@ msgstr "No data found for GIS visualisation."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS overwrite attempt"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
@@ -7300,6 +7300,97 @@ msgstr "SQL compatibility mode:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Do not use AUTO_INCREMENT for zero values"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Function"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Hide"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binary"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Because of its length, this column might not be editable"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binary - do not edit"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Edit/Insert"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Continue insertion with %s rows"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "and then"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Insert as new row"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Insert as new row and ignore errors"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Show insert query"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Go back to previous page"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Insert another new row"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Go back to this page"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Edit next row"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Value"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Showing SQL query"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Inserted row id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7310,32 +7401,32 @@ msgstr "None"
msgid "Convert to Kana"
msgstr "Convert to Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "From"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "To"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submit"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Add table prefix"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Add prefix"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Do you really want to execute the following query?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "No change"
@@ -7343,11 +7434,6 @@ msgstr "No change"
msgid "Charset"
msgstr "Charset"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binary"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarian"
@@ -7678,18 +7764,10 @@ msgid "Slave status"
msgstr "Slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Value"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID"
@@ -8017,11 +8095,6 @@ msgstr "Execute routine"
msgid "Routine parameters"
msgstr "Routine parameters"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Function"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Sorry, we failed to restore the dropped trigger."
@@ -8343,7 +8416,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Run SQL query/queries on database %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Clear"
@@ -8351,11 +8424,11 @@ msgstr "Clear"
msgid "Columns"
msgstr "Columns"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -8379,10 +8452,6 @@ msgstr "Show this query here again"
msgid "View only"
msgstr "View only"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8578,10 +8647,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Table Search"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Edit/Insert"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8802,7 +8867,7 @@ msgstr "Protocol version"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "User"
@@ -9023,10 +9088,6 @@ msgstr "Hide/Show all"
msgid "Hide/Show Tables with no relation"
msgstr "Hide/Show Tables with no relation"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Hide"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Number of tables"
@@ -9219,17 +9280,17 @@ msgstr "File doesn't exist"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Files"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Truncate Shown Queries"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Show Full Queries"
@@ -9663,13 +9724,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -9787,7 +9848,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Show master status"
@@ -9935,127 +9996,127 @@ msgstr ""
"This server is not configured as slave in a replication process. Would you "
"like to configure it?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s was successfully killed."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Threads"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Temporary data"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sorting"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaction coordinator"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Show open tables"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Show slave hosts"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Show slave status"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Runtime Information"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "All status variables"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Advisor"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Refresh rate: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filters"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Containing the word:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Show only alert values"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filter by category..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Show unformatted values"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Related links:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Run analyser"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instructions"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10063,7 +10124,7 @@ msgstr ""
"The Advisor system can provide recommendations on server variables by "
"analysing the server status variables."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10073,7 +10134,7 @@ msgstr ""
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10083,7 +10144,7 @@ msgstr ""
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10094,31 +10155,31 @@ msgstr ""
"no clearly measurable improvement."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions since startup: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Network traffic since startup: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "This MySQL server has been running for %1$s. It started up on %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10126,16 +10187,16 @@ msgstr ""
"This MySQL server works as master and slave in replication"
"b> process."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"This MySQL server works as master in replication process."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr "This MySQL server works as slave in replication process."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10143,11 +10204,11 @@ msgstr ""
"For further information about replication status on the server, please visit "
"the replication section."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replication status"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10155,35 +10216,35 @@ msgstr ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Received"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Sent"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. concurrent connections"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Failed attempts"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Aborted"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Command"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10191,11 +10252,11 @@ msgstr ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
-#: server_status.php:1318
+#: server_status.php:1321
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:1319
+#: server_status.php:1322
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 "
@@ -10205,49 +10266,49 @@ msgstr ""
"exceeded the value of binlog_cache_size and used a temporary file to store "
"statements from the transaction."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
-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:1322
-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:1323
-msgid "How many temporary files mysqld has created."
-msgstr "How many temporary files mysqld has created."
-
#: server_status.php:1324
msgid ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
+"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-"The number of in-memory temporary tables created automatically by the server "
-"while executing statements."
+"The number of connection attempts (successful or not) to the MySQL server."
#: server_status.php:1325
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:1326
+msgid "How many temporary files mysqld has created."
+msgstr "How many temporary files mysqld has created."
+
+#: server_status.php:1327
+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:1328
+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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10255,52 +10316,52 @@ 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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "The number of INSERT DELAYED rows written."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "The number of executed FLUSH statements."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "The number of internal COMMIT statements."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
-msgid ""
-"The MySQL 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:1332
-msgid ""
-"The number of times the first entry 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:1333
-msgid ""
-"The number of requests to 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:1334
msgid ""
+"The MySQL 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:1335
+msgid ""
+"The number of times the first entry 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:1336
+msgid ""
+"The number of requests to 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:1337
+msgid ""
"The number of 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."
@@ -10309,7 +10370,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10317,7 +10378,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10329,7 +10390,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:1337
+#: server_status.php:1340
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 "
@@ -10341,91 +10402,91 @@ msgstr ""
"tables are not properly indexed or that your queries are not written to take "
"advantage of the indexes you have."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "The number of internal ROLLBACK statements."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "The number of pages containing data (dirty or clean)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "The number of pages currently dirty."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "The number of free pages."
-#: server_status.php:1345
-msgid ""
-"The number of latched pages in InnoDB buffer pool. These are pages currently "
-"being read or written or that can't be flushed or removed for some other "
-"reason."
-msgstr ""
-"The number of latched pages in InnoDB buffer pool. These are pages currently "
-"being read or written or that can't be flushed or removed for some other "
-"reason."
-
-#: server_status.php:1346
-msgid ""
-"The number of pages busy because they have been allocated for administrative "
-"overhead such as row locks or the adaptive hash index. This value can also "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-msgstr ""
-"The number of pages busy because they have been allocated for administrative "
-"overhead such as row locks or the adaptive hash index. This value can also "
-"be calculated as Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-
-#: server_status.php:1347
-msgid "Total size of buffer pool, in pages."
-msgstr "Total size of buffer pool, in pages."
-
#: server_status.php:1348
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."
+"The number of latched pages in InnoDB buffer pool. These are pages currently "
+"being read or written or that can't be flushed or removed for some other "
+"reason."
msgstr ""
-"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
-"query is to scan a large portion of a table but in random order."
+"The number of latched pages in InnoDB buffer pool. These are pages currently "
+"being read or written or that can't be flushed or removed for some other "
+"reason."
#: server_status.php:1349
msgid ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
+"The number of pages busy because they have been allocated for administrative "
+"overhead such as row locks or the adaptive hash index. This value can also "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-"The number of sequential read-aheads InnoDB initiated. This happens when "
-"InnoDB does a sequential full table scan."
+"The number of pages busy because they have been allocated for administrative "
+"overhead such as row locks or the adaptive hash index. This value can also "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
#: server_status.php:1350
-msgid "The number of logical read requests InnoDB has done."
-msgstr "The number of logical read requests InnoDB has done."
+msgid "Total size of buffer pool, in pages."
+msgstr "Total size of buffer pool, in pages."
#: server_status.php:1351
msgid ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
+"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
+"query is to scan a large portion of a table but in random order."
msgstr ""
-"The number of logical reads that InnoDB could not satisfy from buffer pool "
-"and had to do a single-page read."
+"The number 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:1352
msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+
+#: server_status.php:1353
+msgid "The number of logical read requests InnoDB has done."
+msgstr "The number of logical read requests InnoDB has done."
+
+#: server_status.php:1354
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+
+#: server_status.php:1355
+msgid ""
"Normally, writes to the InnoDB buffer pool happen in the background. "
"However, if it's necessary to read or create a page and no clean pages are "
"available, it's necessary to wait for pages to be flushed first. This "
@@ -10438,51 +10499,51 @@ msgstr ""
"counter counts instances of these waits. If the buffer pool size was set "
"properly, this value should be small."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "The number writes done to the InnoDB buffer pool."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "The number of fsync() operations so far."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "The current number of pending fsync() operations."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "The current number of pending reads."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "The current number of pending writes."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "The amount of data read so far, in bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "The total number of data reads."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "The total number of data writes."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "The amount of data written so far, in bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "The number of doublewrite operations that have been performed."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10490,35 +10551,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "The number of log write requests."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "The number of physical writes to the log file."
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "The number of pending log file fsyncs."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Pending log file writes."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "The number of bytes written to the log file."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "The number of pages created."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10526,117 +10587,117 @@ 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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "The number of pages read."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "The number of pages written."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "The number of row locks currently being waited for."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "The number of rows deleted from InnoDB tables."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "The number of rows inserted in InnoDB tables."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "The number of rows read from InnoDB tables."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "The number of rows updated in InnoDB tables."
-#: server_status.php:1384
-msgid ""
-"The number of key blocks in the key cache that have changed but haven't yet "
-"been flushed to disk. It used to be known as Not_flushed_key_blocks."
-msgstr ""
-"The number of key blocks in the key cache that have changed but haven't yet "
-"been flushed to disk. It used to be known as Not_flushed_key_blocks."
-
-#: server_status.php:1385
-msgid ""
-"The number of unused blocks in the key cache. You can use this value to "
-"determine how much of the key cache is in use."
-msgstr ""
-"The number of unused blocks in the key cache. You can use this value to "
-"determine how much of the key cache is in use."
-
-#: server_status.php:1386
-msgid ""
-"The number of used blocks in the key cache. This value is a high-water mark "
-"that indicates the maximum number of blocks that have ever been in use at "
-"one time."
-msgstr ""
-"The number of used blocks in the key cache. This value is a high-water mark "
-"that indicates the maximum number of blocks that have ever been in use at "
-"one time."
-
#: server_status.php:1387
-msgid "Percentage of used key cache (calculated value)"
-msgstr "Percentage of used key cache (calculated value)"
+msgid ""
+"The number of key blocks in the key cache that have changed but haven't yet "
+"been flushed to disk. It used to be known as Not_flushed_key_blocks."
+msgstr ""
+"The number of key blocks in the key cache that have changed but haven't yet "
+"been flushed to disk. It used to be known as Not_flushed_key_blocks."
#: server_status.php:1388
-msgid "The number of requests to read a key block from the cache."
-msgstr "The number of requests to read a key block from the cache."
+msgid ""
+"The number of unused blocks in the key cache. You can use this value to "
+"determine how much of the key cache is in use."
+msgstr ""
+"The number of unused blocks in the key cache. You can use this value to "
+"determine how much of the key cache is in use."
#: server_status.php:1389
msgid ""
-"The number of physical reads of a key block from disk. If Key_reads is big, "
-"then your key_buffer_size value is probably too small. The cache miss rate "
-"can be calculated as Key_reads/Key_read_requests."
+"The number of used blocks in the key cache. This value is a high-water mark "
+"that indicates the maximum number of blocks that have ever been in use at "
+"one time."
msgstr ""
-"The number of physical reads of a key block from disk. If Key_reads is big, "
-"then your key_buffer_size value is probably too small. The cache miss rate "
-"can be calculated as Key_reads/Key_read_requests."
+"The number of used blocks in the key cache. This value is a high-water mark "
+"that indicates the maximum number of blocks that have ever been in use at "
+"one time."
#: server_status.php:1390
-msgid ""
-"Key cache miss calculated as rate of physical reads compared to read "
-"requests (calculated value)"
-msgstr ""
-"Key cache miss calculated as rate of physical reads compared to read "
-"requests (calculated value)"
+msgid "Percentage of used key cache (calculated value)"
+msgstr "Percentage of used key cache (calculated value)"
#: server_status.php:1391
-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."
+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:1392
-msgid "The number of physical writes of a key block to disk."
-msgstr "The number of physical writes of a key block to disk."
+msgid ""
+"The number of physical reads of a key block from disk. If Key_reads is big, "
+"then your key_buffer_size value is probably too small. The cache miss rate "
+"can be calculated as Key_reads/Key_read_requests."
+msgstr ""
+"The number of physical reads of a key block from disk. If Key_reads is big, "
+"then your key_buffer_size value is probably too small. The cache miss rate "
+"can be calculated as Key_reads/Key_read_requests."
#: server_status.php:1393
msgid ""
+"Key cache miss calculated as rate of physical reads compared to read "
+"requests (calculated value)"
+msgstr ""
+"Key cache miss calculated as rate of physical reads compared to read "
+"requests (calculated value)"
+
+#: server_status.php:1394
+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:1395
+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:1396
+msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Percentage of physical writes compared to write requests (calculated value)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10646,7 +10707,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10654,11 +10715,11 @@ msgstr ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10666,19 +10727,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "The number of files that are open."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "The number of tables that are open."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10688,19 +10749,19 @@ msgstr ""
"fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE "
"statement."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "The amount of free memory for query cache."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "The number of cache hits."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "The number of queries added to the cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10712,7 +10773,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10720,19 +10781,19 @@ msgstr ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "The number of queries registered in the cache."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "The total number of blocks in the query cache."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "The status of failsafe replication (not yet implemented)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10740,61 +10801,61 @@ 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:1411
+#: server_status.php:1414
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:1412
-msgid ""
-"The number of joins without keys that check for key usage after each row. "
-"(If this is not 0, you should carefully check the indexes of your tables.)"
-msgstr ""
-"The number of joins without keys that check for key usage after each row. "
-"(If this is not 0, you should carefully check the indexes of your tables.)"
-
-#: server_status.php:1413
-msgid ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-msgstr ""
-"The number of joins that used ranges on the first table. (It's normally not "
-"critical even if this is big.)"
-
-#: server_status.php:1414
-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:1415
-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."
+msgid ""
+"The number of joins without keys that check for key usage after each row. "
+"(If this is not 0, you should carefully check the indexes of your tables.)"
+msgstr ""
+"The number of joins without keys that check for key usage after each row. "
+"(If this is not 0, you should carefully check the indexes of your tables.)"
#: server_status.php:1416
msgid ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
msgstr ""
-"Total (since startup) number of times the replication slave SQL thread has "
-"retried transactions."
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
#: server_status.php:1417
-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."
+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:1418
-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."
+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:1419
msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+
+#: server_status.php:1420
+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:1421
+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:1422
+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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10804,23 +10865,23 @@ msgstr ""
"is large, you should consider increasing the value of the sort_buffer_size "
"system variable."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "The number of sorts that were done with ranges."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "The number of sorted rows."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10832,7 +10893,7 @@ msgstr ""
"should first optimise your queries, and then either split your table or "
"tables or use replication."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10842,11 +10903,11 @@ msgstr ""
"calculated as Threads_created/Connections. If this value is red you should "
"raise your thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "The number of currently open connections."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10858,47 +10919,47 @@ msgstr ""
"doesn't give a notable performance improvement if you have a good thread "
"implementation.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Thread cache hit rate (calculated value)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "The number of threads that are not sleeping."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Start Monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instructions/Setup"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Done rearranging/editing charts"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Add chart"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Rearrange/edit charts"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Refresh rate"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Chart columns"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Chart arrangement"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10906,15 +10967,15 @@ msgstr ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Reset to default"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Monitor Instructions"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10928,7 +10989,7 @@ msgstr ""
"enabled. Note however, that the general_log produces a lot of data and "
"increases server load by up to 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10940,11 +11001,11 @@ msgstr ""
"table is supported by MySQL 5.1.6 and onwards. You may still use the server "
"charting features however."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Using the monitor:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10954,7 +11015,7 @@ msgstr ""
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10966,11 +11027,11 @@ msgstr ""
"confirmed, this will load a table of grouped queries, there you may click on "
"any occurring SELECT statements to further analyse them."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Please note:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10982,86 +11043,86 @@ msgstr ""
"it is advisable to select only a small time span and to disable the "
"general_log and empty its table once monitoring is not required any more."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Preset chart"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Status variable(s)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Select series:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Commonly monitored"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "or type variable name:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Display as differential value"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Apply a divisor"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Append unit to data values"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Add this series"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Clear series"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Series in Chart:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Log statistics"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Selected time range:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Remove variable data in INSERT statements for better grouping"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Choose from which log you want the statistics to be generated from."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Results are grouped by query text."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Query analyser"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d second"
msgstr[1] "%d seconds"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11195,7 +11256,7 @@ msgstr "Session value"
msgid "Global value"
msgstr "Global value"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Download"
@@ -11266,39 +11327,39 @@ msgstr "There are no configured servers"
msgid "New server"
msgstr "New server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Default language"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "let the user choose"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- none -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Default server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "End of line"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Display"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Load"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin homepage"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Donate"
@@ -11522,51 +11583,42 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters."
msgid "Wrong data"
msgstr "Wrong data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Browse foreign values"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Using bookmark \"%s\" as default browse query."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Do you really want to execute following query?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Inserted row id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Showing as PHP code"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Showing SQL query"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Validated SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL result"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generated by"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Label"
@@ -11579,57 +11631,6 @@ msgstr "Table %1$s has been altered successfully"
msgid "The columns have been moved successfully."
msgstr "The columns have been moved successfully."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Because of its length, this column might not be editable"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binary - do not edit"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Insert as new row"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Insert as new row and ignore errors"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Show insert query"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "and then"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Go back to previous page"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Insert another new row"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Go back to this page"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Edit next row"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Continue insertion with %s rows"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12215,30 +12216,36 @@ msgstr "Track these data manipulation statements:"
msgid "Create version"
msgstr "Create version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\") for two different columns"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Additional search criteria"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Use this column to label each point"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maximum rows to plot"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Browse/Edit the points"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "How to use"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reset"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Get more themes!"
@@ -12615,11 +12622,11 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
#: libraries/advisory_rules.txt:174
msgid "Query cache fragmentation"
@@ -12769,11 +12776,11 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
#: libraries/advisory_rules.txt:211
msgid "Rate of sorts that cause temporary tables"
@@ -13510,6 +13517,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is set to 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Use mouse-wheel to zoom in or out of the plot."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Click and drag the mouse to navigate the plot."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Strings are converted into integer for plotting"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13927,9 +13943,6 @@ msgstr "concurrent_insert is set to 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "No trigger with name %s found"
-#~ msgid "rows"
-#~ msgstr "Browse"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "row(s) starting from row #"
diff --git a/po/es.po b/po/es.po
index 8b0bf80208..4f9fec85e4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 16:58+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
-"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostrar todo"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostrar todo"
msgid "Page number:"
msgstr "Número de página:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"principal o su navegador está bloqueando las actualizaciones en ventanas "
"múltiples debido a sus parámetros de seguridad."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Buscar"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Buscar"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Continuar"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nombre de la clave"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descripción"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Use este valor"
@@ -122,12 +122,12 @@ msgstr "Comentarios de la tabla"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Columna"
@@ -136,6 +136,7 @@ msgstr "Columna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Columna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -153,12 +154,12 @@ msgstr "Tipo"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulo"
@@ -197,13 +198,13 @@ msgstr "Comentarios"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "No"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabla"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Filas"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Cambiar al %sconstructor visual%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostrar"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Borrar"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "O"
@@ -524,8 +525,8 @@ msgstr[0] "%1$s coincidencia en la tabla %2$s"
msgstr[1] "%1$s coincidencias en la tabla %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Examinar"
@@ -534,14 +535,14 @@ msgstr "Examinar"
msgid "Delete the matches for the %s table?"
msgstr "¿Eliminar las coincidencias para la tabla %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Borrar"
@@ -609,14 +610,14 @@ msgstr "El seguimiento está activo."
msgid "Tracking is not active."
msgstr "El seguimiento no está activo."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
-"%sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
+"sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -625,7 +626,7 @@ msgstr "Visualizar"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicación"
@@ -640,20 +641,20 @@ msgstr ""
"%s es el motor de almacenamiento predeterminado en este servidor MySQL."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -665,27 +666,27 @@ msgstr "Marcar las tablas con residuo a depurar"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Vista de impresión"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Vaciar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -711,11 +712,11 @@ msgstr "Analizar la tabla"
msgid "Add prefix to table"
msgstr "Agregar prefijo a la tabla"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Reemplazar prefijo de la tabla"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copiar tabla con prefijo"
@@ -734,8 +735,8 @@ msgstr "Tablas con seguimiento"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Base de datos"
@@ -753,7 +754,7 @@ msgstr "Actualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Estado actual"
@@ -855,45 +856,45 @@ msgstr "Utilizar OpenStreetMaps como capa base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometría"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punto"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punto %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Agregar un punto"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Cadena de líneas"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Círculo exterior"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Círculo interior"
@@ -901,15 +902,15 @@ msgstr "Círculo interior"
msgid "Add a linestring"
msgstr "Agregar una cadena de líneas"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Agregar un círculo interior"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polígono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Agregar un polígono"
@@ -926,14 +927,14 @@ msgid ""
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
"string into the \"Value\" field"
msgstr ""
-"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena "
-"ubicada debajo en el campo \"Valor\""
+"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada "
+"debajo en el campo \"Valor\""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@@ -985,7 +986,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"No se pudieron cargar los plugins de importación. ¡Revise su instalación!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "El favorito %s fue creado"
@@ -1013,7 +1014,7 @@ msgstr ""
"importación a menos que usted incremente el tiempo de ejecución de php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1028,7 +1029,7 @@ msgstr "Volver"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
@@ -1037,7 +1038,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
msgid "Do you really want to execute \"%s\"?"
msgstr "¿Realmente desea ejecutar \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
@@ -1123,21 +1124,21 @@ msgstr "Cerrar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Gráfico de tráfico en vivo"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Gráfico de procesos/conexiones en vivo"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Gráfico de consultas en vivo"
@@ -1148,23 +1149,23 @@ msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Otro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1184,7 +1185,7 @@ msgstr "Tráfico del servidor (en KiB)"
msgid "Connections since last refresh"
msgstr "Connexiones desde la última actualización"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesos"
@@ -1202,7 +1203,7 @@ msgstr "Preguntas desde la última actualización"
msgid "Questions (executed statements by the server)"
msgstr "Preguntas (sentencias ejecutadas por el servidor)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Estadísticas de Consulta"
@@ -1248,14 +1249,14 @@ msgid "System swap"
msgstr "Intercambio de sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1307,32 +1308,32 @@ msgstr "Bytes enviados"
msgid "Bytes received"
msgstr "Bytes recibidos"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Conexiones"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1348,12 +1349,12 @@ msgstr "%d tabla(s)"
msgid "Questions"
msgstr "Preguntas"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tráfico"
# This is the text showed in the tab
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Configuración"
@@ -1374,10 +1375,10 @@ msgid "Please add at least one variable to the series"
msgstr "Por favor agregue al menos una variable a la serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ninguna"
@@ -1477,7 +1478,7 @@ msgstr "Cambiar configuraciones"
msgid "Current settings"
msgstr "Configuraciones actuales"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Título del gráfico"
@@ -1562,9 +1563,9 @@ msgstr "Analizando..."
msgid "Explain output"
msgstr "Explicar salida"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tiempo"
@@ -1662,7 +1663,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importar"
@@ -1782,15 +1783,15 @@ msgstr "Esconder índices"
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Revisión de claves foráneas:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Habilitado)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Deshabilitado)"
@@ -1859,7 +1860,7 @@ msgstr "Mostrar ventana de consultas SQL"
msgid "No rows selected"
msgstr "No se seleccionaron filas"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Cambiar"
@@ -1868,17 +1869,18 @@ msgstr "Cambiar"
msgid "Query execution time"
msgstr "Tiempo de ejecución de la consulta"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d no es un número de fila válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Guardar"
@@ -1903,78 +1905,70 @@ msgid "Hovering over a point will show its label."
msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Utilice la rueda de desplazamiento para ampliar o reducir el gráfico."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Pulse y arrastre para navegar el gráfico."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Pulse el enlace de restaurar ampliación para volver al estado original."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Pulse en un punto de datos para ver y posiblemente editar la fila de datos."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"El gráfico puede redimensionarse arrastrando la esquina inferior derecha."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Las cadenas son conventidas a enteros para graficarlas"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Seleccionar dos columnas"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Seleccionar dos columnas distintas"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Resultados de la consulta"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Contenido del punto de datos"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copiar"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Agregar columnas"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Seleccione la clave referenciada"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Seleccione la clave foránea"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Por favor seleccione la clave primaria o una clave única"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Elegir la columna a mostrar"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1982,15 +1976,15 @@ msgstr ""
"No se guardaron los cambios en la disposición. Serán perdidos si no los "
"guardas. ¿Deseas continuar?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Añadir una opción para la columna "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Presion la tecla de escape para cancelar la edición"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1998,29 +1992,29 @@ msgstr ""
"Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta "
"página sin guardar los datos?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Arrastrar para reordenar"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Pulsar para ordenar"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Pulsar para marcar/desmarcar"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Haga doble click para copiar el nombre de la columna"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Pulsa la flecha de la lista desplegable para conmutar la visibilidad "
"de la columna"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2029,48 +2023,48 @@ msgstr ""
"la edición de la grilla y los enlaces de copiado, eliminación y edición "
"pueden no funcionar luego de guardar."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Puede editar la mayoría de las columnas pulsando directamente en su "
"contenido."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ir al enlace"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copie el nombre de la columna"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Haga click con el botón derecho sobre la columna para copiarla en el "
"portapapeles."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Mastrar fila(s) de datos"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Generar contraseña"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generar"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Cambar contraseña"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Más"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2080,266 +2074,266 @@ msgstr ""
"la obtenga. La versión más reciente es %s, y existe desde el %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", versión estable más reciente:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "actualizada"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Terminado"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Siguiente"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hoy"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Enero"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Febrero"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Marzo"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Abril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mayo"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Junio"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Julio"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agosto"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Septiembre"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Octubre"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Noviembre"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Diciembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Lunes"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Miércoles"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Jueves"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Viernes"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Ju"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-year-month"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Segundo"
@@ -2393,16 +2387,16 @@ msgstr ""
"Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se "
"encontró «%2$s»"
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "por segundo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "por minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "por hora"
@@ -2537,15 +2531,15 @@ msgstr ""
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2557,20 +2551,20 @@ msgid "Structure"
msgstr "Estructura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insertar"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operaciones"
@@ -2628,12 +2622,12 @@ msgstr "Usuarios"
msgid "Synchronize"
msgstr "Sincronizar"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Registro binario"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variables"
@@ -2650,8 +2644,9 @@ msgid "Engines"
msgstr "Motores"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Error"
@@ -2771,35 +2766,35 @@ msgstr ""
"no serán persistentes luego de actualizar esta página. Revise si cambió la "
"estructura de la tabla."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "¡No se encontró la ruta de imágenes para el tema %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "No existe una previsualización disponible."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "tómelo"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "¡No se encontró el tema predeterminado %s!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "¡No se encontró el tema %s!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "¡No se encontró la ruta del tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2853,16 +2848,16 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Un número de coma flotante pequeño; los valores posibles son de -3.402823466E"
"+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un número de coma flotante de precisión doble; los valores permitidos son de "
@@ -2906,8 +2901,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»"
#, php-format
msgid "A date and time combination, supported range is %1$s to %2$s"
msgstr ""
-"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a "
-"«%2$s»"
+"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2"
+"$s»"
#: libraries/Types.class.php:317
msgid ""
@@ -3007,8 +3002,8 @@ msgid ""
"A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a "
"one-byte prefix indicating the length of the value"
msgstr ""
-"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 "
-"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que "
+"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - "
+"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que "
"indica la cantidad de bytes en el valor"
#: libraries/Types.class.php:341
@@ -3034,9 +3029,9 @@ msgid ""
"A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) "
"bytes, stored with a four-byte prefix indicating the length of the value"
msgstr ""
-"Una columna de bloque de texto («BLOB») con una longitud máxima de "
-"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que "
-"indica la longitud del valor"
+"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 "
+"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la "
+"longitud del valor"
#: libraries/Types.class.php:347
msgid ""
@@ -3173,8 +3168,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@@ -3285,7 +3280,7 @@ msgstr "compartido"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tablas"
@@ -3336,11 +3331,11 @@ msgstr "posible aprovechamiento"
msgid "numeric key detected"
msgstr "telado numérico detectado"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "No se pudo leer el archivo de configuración"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3348,12 +3343,12 @@ msgstr ""
"Esto generalmente significa que tiene un error de sintáxis, por favor revisa "
"los errores que se muestran a continuación."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "No se pudo cargar la configuración predeterminada desde: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3361,23 +3356,23 @@ msgstr ""
"¡DEBE tener definido [code]$cfg['PmaAbsoluteUri'][/code] en su archivo de "
"configuración!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"El nombre del host no es válido para el servidor %1$s. Por favor revise su "
"configuración."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticación no válido definido en la configuración:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
@@ -3412,8 +3407,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "es"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "consulta SQL"
@@ -3451,7 +3446,7 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Actualizar"
@@ -3472,97 +3467,97 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En línea"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Perfilando"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%m-%Y a las %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parámetro faltante:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Comenzar"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Siguiente"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar a la base de datos "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Pulse para conmutar"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Buscar en su ordenador:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "No hay archivos para subir"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Ejecutar"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimir"
@@ -3739,9 +3734,9 @@ msgstr "Restaurar valor predeterminado"
msgid "Allow users to customize this value"
msgstr "Permitir a los usuarios personalizar este valor"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reiniciar"
@@ -3909,7 +3904,7 @@ msgid "Compress on the fly"
msgstr "Comprimir sobre la marcha"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Archivo de configuración"
@@ -3969,7 +3964,7 @@ msgstr "Esconder acciones sobre la estructura 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:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostrar contenido binario como HEXadecimal"
@@ -4707,7 +4702,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Número mínimo de tablas a mostrar en la ventana de filtro de tabla"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Número mínimo de bases de datos a mostrar en la ventana de filtro de bases "
@@ -5903,7 +5897,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Habilitar la pestaña Desarrolladores en la configuración"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Buscar si existe una versión más reciente"
@@ -6054,7 +6048,7 @@ msgstr "No se encontró la extensión %s. Por favor revisa la configuración PHP
msgid "possible deep recursion attack"
msgstr "posible ataque de recursión extrema"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6062,19 +6056,19 @@ msgstr ""
"El servidor no está respondiendo (o el zócalo local al servidor MySQL no "
"está configurado correctamente)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "El servidor no está respondiendo."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Revisa los permisos del directorio que contiene la base de datos."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalles..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6236,8 +6230,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@@ -6433,48 +6427,53 @@ msgstr "Opciones específicas al formato:"
msgid "Language"
msgstr "Idioma"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Guardar datos editados"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Restaurar orden de las columnas"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Fila de inicio"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Número de filas"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Modo"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (encabezados rotados)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Cabeceras cada %s filas"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Examinar"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ordenar según la clave"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6492,91 +6491,91 @@ msgstr "Ordenar según la clave"
msgid "Options"
msgstr "Opciones"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Textos parciales"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Clave relacional"
# Display option apparently related to
# http://www.phpmyadmin.net/documentation/#relation
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Mostrar columna de relación"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Mostrar contenido binario"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Mostrar contenido BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Ocultar transformación del navegador"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Texto muy conocido"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Binario muy conocido"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "La fila se ha borrado"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Matar el proceso"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "en la consulta"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrando registros"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tardó %01.4f seg"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operaciones sobre los resultados de la consulta"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Previsualización para imprimir (documento completo)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Mostrar gráfico"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualizar datos GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Crear vista"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "No se encontró el enlace"
@@ -6626,7 +6625,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva de búfers"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Estado del InnoDB"
@@ -6927,8 +6926,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@@ -7052,12 +7051,12 @@ msgstr "Tipos MIME disponibles"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Tiempo de generación"
@@ -7280,8 +7279,8 @@ msgstr "No se encontraron datos para la visualización GIS."
msgid "GLOBALS overwrite attempt"
msgstr "intento de sobre-escritura de la variable GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)."
@@ -7463,6 +7462,98 @@ msgstr "Modalidad SQL compatible:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "No utilizar AUTO_INCREMENT con el valor 0"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Función"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Ocultar"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binario"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Debido a su longitud, esta columna podría no ser editable"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binario - no editar"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "directorio en el servidor web para subir los archivos"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Editar/Insertar"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Continuar inserción con %s filas"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "y luego"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Insertar como una nueva fila"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Agregar como nueva fila e ignorar errores"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Mostrar consulta de inserción"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Volver"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Insertar un nuevo registro"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Volver a esta página"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Editar la siguiente fila"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse "
+"a cualquier parte"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valor"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Mostrando la consulta SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "La Id de la fila insertada es: %1$d"
+
# male gender due to referring to encoding modes
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
@@ -7474,32 +7565,32 @@ msgstr "Ninguno"
msgid "Convert to Kana"
msgstr "Convertir a Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "De"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "A"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Enviar"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Agregar prefijo a la tabla"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Agregar prefijo"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "¿Realmente desea ejecutar la siguiente consulta?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Sin cambios"
@@ -7507,11 +7598,6 @@ msgstr "Sin cambios"
msgid "Charset"
msgstr "Juego de caracteres"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binario"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Búlgaro"
@@ -7845,18 +7931,10 @@ msgid "Slave status"
msgstr "Estado del esclavo"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valor"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID del servidor"
@@ -8184,11 +8262,6 @@ msgstr "Ejecutar rutina"
msgid "Routine parameters"
msgstr "Parámetros de rutina"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Función"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8511,7 +8584,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Limpiar"
@@ -8519,11 +8592,11 @@ msgstr "Limpiar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Guardar esta consulta en favoritos"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Permitir que todo usuario pueda acceder a este favorito"
@@ -8547,10 +8620,6 @@ msgstr "Mostrar esta consulta otra vez"
msgid "View only"
msgstr "Solamente ver"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "directorio en el servidor web para subir los archivos"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8752,10 +8821,6 @@ msgstr "Operador"
msgid "Table Search"
msgstr "Búsqueda de tablas"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Editar/Insertar"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8981,7 +9046,7 @@ msgstr "Versión del protocolo"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Usuario"
@@ -9100,8 +9165,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
-"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
-"%sPulsa aquí para averiguar por qué%s."
+"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
+"sPulsa aquí para averiguar por qué%s."
#: main.php:357
#, php-format
@@ -9126,7 +9191,6 @@ msgid "No databases"
msgstr "No hay bases de datos"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Filtrar bases de datos por nombre"
@@ -9207,10 +9271,6 @@ msgstr "Ocultar/mostrar todo"
msgid "Hide/Show Tables with no relation"
msgstr "Ocultar/mostrar Tablas que no tengan relación"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Ocultar"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Número de tablas"
@@ -9410,17 +9470,17 @@ msgstr "El archivo no existe"
msgid "Select binary log to view"
msgstr "Seleccionar el registro binario que desea examinar"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Archivos"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Truncar las consultas que ya se han mostrado"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostrar las consultas enteras"
@@ -9868,8 +9928,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
@@ -10000,7 +10060,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Mostrar el estado del maestro"
@@ -10152,12 +10212,12 @@ msgstr ""
"Este servidor no está configurado como esclavo en un proceso de replicación. "
"¿Desea configurarlo?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "El proceso %s fue destruido exitosamente."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10165,115 +10225,115 @@ msgstr ""
"phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido "
"cerrado."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Gestor"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Cache de consultas"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Procesos"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Datos temporales"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Inserciones demoradas («delayed inserts»)"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Caché de claves"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Vínculos (Joins)"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordinador de transacción"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Vaciar el cache de todas las tablas"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Mostrar las tablas que están abiertas"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Mostrar los hosts esclavos"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Mostrar el estado del esclavo"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Vaciar el cache de consultas"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Información acerca del tiempo de ejecución del proceso principal"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Todas las variables de estado"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitorizar"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Consejero"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Velocidad de actualización: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtros"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Que contengan la palabra:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Mostrar sólo valores de alerta"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrar por categoría..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Mostrar valores sin formato"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Enlaces relacionados:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Ejecutar analizador"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instrucciones"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10281,7 +10341,7 @@ msgstr ""
"El sistema de consejos puede proveer recomendaciones para las variables del "
"servidor analizando las variables de estado del servidor."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10291,7 +10351,7 @@ msgstr ""
"cálculos simples y reglas generales que no serán necesariamente válidas en "
"su sistema."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10301,7 +10361,7 @@ msgstr ""
"cambiando (leyendo la documentación) y cómo revertir el cambio. Ajustes "
"incorrectos pueden tener un gran efecto negativo en performance."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10312,31 +10372,31 @@ msgstr ""
"una mejora diferenciable."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Preguntas desde el inicio: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sentencias"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Tráfico de red desde el inicio: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Este servidor MySQL ha estado activo durante %1$s. Se inició en %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10344,19 +10404,19 @@ msgstr ""
"Este servidor MySQL trabaja como maestro y esclavo en un "
"proceso de replicación."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10364,11 +10424,11 @@ msgstr ""
"Para más información sobre el estado de replicación en el servidor, por "
"favor visita la sección sobre replicación."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Estado de replicación"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10377,35 +10437,35 @@ msgstr ""
"pueden excederse. Por tanto, las estadísticas reportadas por el servidor "
"MySQL pueden ser incorrectas."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Recibido"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Número máx. de conexiones concurrentes"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Intentos fallidos"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "Identificación"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Comando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10413,11 +10473,11 @@ msgstr ""
"La cantidad de conexiones que fueron abandonadas porque el cliente murió sin "
"cerrar la conexión apropiadamente."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10427,19 +10487,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
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:1322
+#: server_status.php:1325
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 "
@@ -10452,11 +10512,11 @@ msgstr ""
"tmp_table_size para hacer que las tablas temporales se basen en memoria en "
"lugar de basarse en disco."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "El número de archivos temporales que fueron creados por mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10464,7 +10524,7 @@ msgstr ""
"El número de tablas temporales en memoria creadas automáticamente por el "
"servidor mientras se ejecutaban las sentencias."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10472,7 +10532,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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10480,23 +10540,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "El número de filas INSERT DELAYED escritas."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "El número de sentencias FLUSH ejecutadas."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "El número de sentencias COMMIT internas."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10507,7 +10567,7 @@ msgstr ""
"Handler_discover indica el número ocasiones que las tablas han sido "
"descubiertas."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10518,7 +10578,7 @@ msgstr ""
"de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, "
"asumiendo que col1 está indizado."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10527,7 +10587,7 @@ msgstr ""
"este valor es alto, es una buena indicación de que sus consultas y tablas "
"están indexadas apropiadamente."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10537,7 +10597,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10546,7 +10606,7 @@ msgstr ""
"clave. Este método de lectura se usa principalmente para optimizar a ORDER "
"BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10559,7 +10619,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:1337
+#: server_status.php:1340
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 "
@@ -10572,37 +10632,37 @@ msgstr ""
"o que sus consultas no están escritas para tomar ventaja de los índices que "
"tiene."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "El número de sentencias ROLLBACK internas."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "El número de páginas actualmente sucias."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "El número de páginas libres."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10612,7 +10672,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:1346
+#: server_status.php:1349
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 "
@@ -10624,11 +10684,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total de la reserva de búfers, en páginas."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10637,7 +10697,7 @@ msgstr ""
"una consulta va a escanear una gran porción de una tabla pero en orden "
"aleatorio."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10645,11 +10705,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10657,7 +10717,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:1352
+#: server_status.php:1355
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 "
@@ -10672,55 +10732,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:1353
+#: server_status.php:1356
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:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "El número de operaciones fsync() hechas hasta el momento."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "El número actual de operaciones fsync() pendientes."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "El número actual de lecturas pendientes."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "El número actual de escrituras pendientess."
-#: server_status.php:1358
+#: server_status.php:1361
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:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "El número total de lectura de datos."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "El número total de escritura de datos."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "La cantidad de datos escritas hasta el momento, en bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10728,35 +10788,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "El número de solicitudes de escritura al registro."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "El número de fsyncs pendientes al archivo de registro."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Escrituras pendientes al archivo de registro."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "El número de bytes escritos al archivo de registro."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "El número de páginas creadas."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10765,52 +10825,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "El número de páginas leídas."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "El número de páginas escritas."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "El número de filas eliminadas de tablas InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "El número de filas insertadas en tablas InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "El número de filas leídas de las tablas InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "El número de filas actualizadas en tablas InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10819,7 +10879,7 @@ msgstr ""
"aún no han sido volcados al disco. Antes se conocía como "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10827,7 +10887,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:1386
+#: server_status.php:1389
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 "
@@ -10837,15 +10897,15 @@ msgstr ""
"de desbordamiento que indica el número máximo de bloques que algún momento "
"se llegaron a usar."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Porcentaje de uso del caché de claves (valor calculado)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10856,7 +10916,7 @@ msgstr ""
"demasiado pequeño. La tasa de fallos en el caché puede calcularse como "
"Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10864,22 +10924,22 @@ msgstr ""
"Los fallos en el caché de claves es calculado como la tasa de lecturas "
"físicas comparadas con los pedidos de lectura (valor calculado)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor "
"calculado)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10890,7 +10950,7 @@ msgstr ""
"planes de consulta para una misma consulta. El valor por omisión de 0 "
"significa que ninguna consulta ha sido compilada todavía."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10898,11 +10958,11 @@ msgstr ""
"El máximo número de conexiones que han sido utilizadas simultáneamente desde "
"que inició el servidor."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10910,21 +10970,21 @@ msgstr ""
"El número de tablas que han sido abiertas. Si el número de tablas abiertas "
"es grande, su valor del cache de tabla probablemente es muy pequeño."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "El número de archivos que están abiertos."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "El número de tablas que están abiertas."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10934,19 +10994,19 @@ msgstr ""
"altas pueden indicar problemas de fragmentación que pueden ser solucionados "
"ejecutando la consulta FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "La cantidad de memoria libre para el cache de consultas."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "El número de hits al cache."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "El número de consultas añadidos al cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10959,7 +11019,7 @@ msgstr ""
"la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben "
"ser removidas del cache."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10967,20 +11027,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "El número de consultas registradas en el cache."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
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:1410
+#: server_status.php:1413
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."
@@ -10988,13 +11048,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11003,7 +11063,7 @@ msgstr ""
"de cada fila. (Si no es 0, deberá revisar los índices de sus tablas "
"cuidadosamente.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11011,19 +11071,19 @@ msgstr ""
"El número de vínculos («joins») con rangos en la primera tabla (normalmente "
"no es crítico aún cuando sea grande)."
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11031,12 +11091,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11044,14 +11104,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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11061,23 +11121,23 @@ msgstr ""
"hacer. Si este valor es grande, debe considerar incrementar el valor de la "
"varible de sistema sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
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:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "El número de filas sorted."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11089,7 +11149,7 @@ msgstr ""
"primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o "
"usar replicación."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11099,11 +11159,11 @@ msgstr ""
"puede calcularse como Threads_created/Connections. Si este valor es rojo, "
"debe incrementar su thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "El número de conexiones abiertas actualmente."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11115,47 +11175,47 @@ msgstr ""
"(Normalmente esto no aporta una mejoría notable en el rendimiento si usted "
"tiene una buena implementación de procesos.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "El número de procesos que no están en reposo."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Iniciar monitorización"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instrucciones/Configuración"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Se finalizó la reorganización/edición de gráficos"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Agregar gráfico"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Reorganizar/editar gráficos"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Velocidad de actualización"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Columnas del gráfico"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Ordenación de los gráficos"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11164,15 +11224,15 @@ msgstr ""
"navegador. Sería recomendable exportarla si tiene una configuración "
"complicada."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Restaurar valor predeterminado"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instrucciones de monitorización"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11183,11 +11243,10 @@ msgstr ""
"El Monitorizador de phpMyAdmin puede asistir en la optimización de la "
"configuración del servidor y rastrear consultas que toman mucho tiempo. Para "
"esto último necesitará que «log_output» esté definido como 'TABLE' y tener "
-"activado «slow_query_log» o «general_log». Note, sin embargo, que "
-"«general_log» produce mucha información y aumenta la carga en el servidor "
-"hasta en un 15%"
+"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» "
+"produce mucha información y aumenta la carga en el servidor hasta en un 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11200,11 +11259,11 @@ msgstr ""
"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede "
"utilizar las funcionalidades para graficación del servidor."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Utilizando el monitorizador:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11215,7 +11274,7 @@ msgstr ""
"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono "
"de rueda dentada en cada gráfico."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11228,11 +11287,11 @@ msgstr ""
"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia "
"SELECT para analizarla."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Notar que:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11245,86 +11304,86 @@ msgstr ""
"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez "
"que ya no se necesite monitorizar."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Gráfico predefinido"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variable(s) de estado"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Seleccionar serie:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Monitorizaciones comunes"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "o ingrese el nombre de variable:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Mostrar como un valor diferencial"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Aplicar una división"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Agregar unidad a los valores"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Agregar esta serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Vaciar serie"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Series en el gráfico:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Estadísticas de registros"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Rango de tiempo seleccionado:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Elegir el registro del que desea generar estadísticas."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Los resultados se agruparán por el texto de la consulta."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analizador de consultas"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d segundo"
msgstr[1] "%d segundos"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11459,7 +11518,7 @@ msgstr "Valor de la sesión"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Descargar"
@@ -11535,39 +11594,39 @@ msgstr "No existen servidores configurados"
msgid "New server"
msgstr "Nuevo servidor"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Idioma predeterminado"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "permita que el usuario pueda escoger"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ninguno -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Servidor predeterminado"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Final de la línea"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Mostrar"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Cargar"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Página de inicio de phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Donación"
@@ -11800,52 +11859,43 @@ msgstr ""
msgid "Wrong data"
msgstr "Datos incorrectos"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Mostrar los valores foráneos"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
"Utilizando el favorito \"%s\" como consulta predeterminada para examinar."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "¿Realmente desea ejecutar la siguiente consulta?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "La Id de la fila insertada es: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Mostrando la consulta SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Resultado SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generado por"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiqueta"
@@ -11858,58 +11908,6 @@ msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente"
msgid "The columns have been moved successfully."
msgstr "Las columnas fueron movidas exitosamente."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Debido a su longitud, esta columna podría no ser editable"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binario - no editar"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Insertar como una nueva fila"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Agregar como nueva fila e ignorar errores"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Mostrar consulta de inserción"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "y luego"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Volver"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Insertar un nuevo registro"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Volver a esta página"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Editar la siguiente fila"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse "
-"a cualquier parte"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Continuar inserción con %s filas"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12498,32 +12496,38 @@ msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:"
msgid "Create version"
msgstr "Crear versión"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas "
"distintas"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Criterios de búsqueda adicionales"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Utilice esta columna para etiquetar cada punto"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Máximo número de filas a graficar"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Navegar/editar los puntos"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Forma de utilización"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reiniciar"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "¡Obtener más temas!"
@@ -12626,8 +12630,8 @@ msgid ""
"You might want to increase {long_query_time} or optimize the queries listed "
"in the slow query log"
msgstr ""
-"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen "
-"en el registro de consultas lentas"
+"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en "
+"el registro de consultas lentas"
#: libraries/advisory_rules.txt:68
#, php-format
@@ -12694,8 +12698,8 @@ msgid ""
"Enable slow query logging by setting {log_slow_queries} to 'ON'. This will "
"help troubleshooting badly performing queries."
msgstr ""
-"Active el registro de consultas lenta configurando «log_slow_queries» a "
-"'ON'. Esto ayudará a analizar consultas con mala performance."
+"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. "
+"Esto ayudará a analizar consultas con mala performance."
#: libraries/advisory_rules.txt:89
msgid "log_slow_queries is set to 'OFF'"
@@ -12840,8 +12844,8 @@ msgid ""
msgstr ""
"Se sabe que el caché de consultas puede mejorar la performance enormemente "
"si está correctamente configurado. Actívelo definiendo «query_cache_size» a "
-"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. "
-"Notar que: si está utilizando memcached ignore esta recomendación."
+"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar "
+"que: si está utilizando memcached ignore esta recomendación."
#: libraries/advisory_rules.txt:151
msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'"
@@ -12918,8 +12922,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"La tasa actual de memoria libre del caché de consultas respecto del tamaño "
"total es %s%%. Debería ser mayor al 80%%"
@@ -13077,8 +13081,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% de todas las ordenaciones causan tablas temporales, este valor debería "
"de ser menor a 10%%."
@@ -13141,8 +13145,8 @@ msgstr ""
#, php-format
msgid "Table joins average: %s, this value should be less than 1 per hour"
msgstr ""
-"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor "
-"a 1 por hora"
+"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a "
+"1 por hora"
#: libraries/advisory_rules.txt:233
msgid "Rate of reading first index entry"
@@ -13250,8 +13254,7 @@ msgstr ""
#: libraries/advisory_rules.txt:260
#, php-format
msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s"
-msgstr ""
-"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s"
+msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s"
#: libraries/advisory_rules.txt:262
msgid "Percentage of temp tables on disk"
@@ -13275,14 +13278,13 @@ msgid ""
"mentioned in the beginning of an Article by the Pythian Group"
msgstr ""
-"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin "
-"embargo, algunas tablas temporales son siempre escritas a disco "
-"independientemente del valor de estas variables. Para eliminarlas deberá re-"
-"escribir las consultas para evitar estas condiciones (en una tabla temporal: "
-"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna "
-"mayor a 512 bytes) como se menciona al comienzo del artículo de "
-"Pythian Group"
+"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, "
+"algunas tablas temporales son siempre escritas a disco independientemente "
+"del valor de estas variables. Para eliminarlas deberá re-escribir las "
+"consultas para evitar estas condiciones (en una tabla temporal: la presencia "
+"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 "
+"bytes) como se menciona al comienzo del artículo de Pythian Group"
#: libraries/advisory_rules.txt:267
#, php-format
@@ -13307,8 +13309,8 @@ msgid ""
"mentioned in the MySQL Documentation"
msgstr ""
-"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin "
-"embargo, algunas tablas temporales son siempre a disco permanentemente "
+"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, "
+"algunas tablas temporales son siempre a disco permanentemente "
"independientemente del valor de estas variables. Para eliminarlas deberá re-"
"escribir las consultas para evitar estas condiciones (en una tabla temporal: "
"la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna "
@@ -13339,8 +13341,8 @@ msgid ""
"Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a "
"good start."
msgstr ""
-"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M "
-"es un buen comienzo."
+"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es "
+"un buen comienzo."
#: libraries/advisory_rules.txt:294
msgid "key_buffer_size is 0"
@@ -13517,8 +13519,7 @@ msgstr ""
#: libraries/advisory_rules.txt:359
msgid "Enable the thread cache by setting {thread_cache_size} > 0."
msgstr ""
-"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a "
-"0."
+"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0."
#: libraries/advisory_rules.txt:360
msgid "The thread cache is set to 0"
@@ -13605,10 +13606,10 @@ msgid ""
"do not close database handlers properly get killed sooner. Make sure the "
"code closes database handlers properly."
msgstr ""
-"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones "
-"que no liberan los manejadores de base de datos apropiadamente sean "
-"eliminadas más rápido. Asegúrese que su código cierre los manejadores de "
-"base de datos apropiadamente."
+"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones que "
+"no liberan los manejadores de base de datos apropiadamente sean eliminadas "
+"más rápido. Asegúrese que su código cierre los manejadores de base de datos "
+"apropiadamente."
#: libraries/advisory_rules.txt:390
#, php-format
@@ -13679,8 +13680,8 @@ msgstr ""
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
-"%s%% de todos los clientes son abandonados. Este valor debería ser menor a "
-"2%%"
+"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%"
+"%"
#: libraries/advisory_rules.txt:413
msgid "Rate of aborted clients"
@@ -13862,6 +13863,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "«concurrent_insert» está definido como 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Utilice la rueda de desplazamiento para ampliar o reducir el gráfico."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Pulse y arrastre para navegar el gráfico."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Las cadenas son conventidas a enteros para graficarlas"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13883,8 +13894,7 @@ msgstr "«concurrent_insert» está definido como 0"
#~ "A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\"
#~ "\""
#~ msgstr ""
-#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a "
-#~ "«%s»"
+#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a «%s»"
#~ msgid "Show help button instead of Documentation text"
#~ msgstr "Mostrar botón de ayuda en lugar de texto de documentación"
@@ -13967,11 +13977,10 @@ msgstr "«concurrent_insert» está definido como 0"
#~ "HH:MM:SS' format, but allows assignment of values to DATETIME columns "
#~ "using either strings or numbers."
#~ msgstr ""
-#~ "Una combinación de fecha y marca temporal. El rango soportado es desde "
-#~ "«01-Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los "
-#~ "valores DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la "
-#~ "asignación de valores a columnas DATETIME utilizando tanto cadenas como "
-#~ "números."
+#~ "Una combinación de fecha y marca temporal. El rango soportado es desde «01-"
+#~ "Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los valores "
+#~ "DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la asignación de "
+#~ "valores a columnas DATETIME utilizando tanto cadenas como números."
#~ msgid ""
#~ "A time. The range is '-838:59:59' to '838:59:59'. MySQL displays TIME "
@@ -14063,8 +14072,8 @@ msgstr "«concurrent_insert» está definido como 0"
#~ "any argument is not a WKB LineString, the return value is NULL."
#~ msgstr ""
#~ "Construye un valor de cadenas de líneas múltiples WKB («MultiLineString») "
-#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un "
-#~ "«LineString» WKB, el valor devuelto es NULL."
+#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un «LineString» "
+#~ "WKB, el valor devuelto es NULL."
#~ msgid ""
#~ "Constructs a WKB MultiPolygon value from a set of WKB Polygon arguments. "
@@ -14287,8 +14296,8 @@ msgstr "«concurrent_insert» está definido como 0"
#~ "Documentation and further information about PBMS can be found on %sThe "
#~ "PrimeBase Media Streaming home page%s."
#~ msgstr ""
-#~ "La documentación y más información sobre PBMS puede encontrarse la "
-#~ "%spaǵina inicial de The PrimeBase Media Streaming%s."
+#~ "La documentación y más información sobre PBMS puede encontrarse la %"
+#~ "spaǵina inicial de The PrimeBase Media Streaming%s."
#~ msgid "The PrimeBase Media Streaming Blog by Barry Leslie"
#~ msgstr "Blog de The PrimeBase Media Streaming por Barry Leslie"
@@ -14511,9 +14520,6 @@ msgstr "«concurrent_insert» está definido como 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "No se encontró disparador con nombre %s"
-#~ msgid "rows"
-#~ msgstr "Examinar"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "fila(s) iniciando en la fila #"
diff --git a/po/et.po b/po/et.po
index 19959753d4..8ea87b8c11 100644
--- a/po/et.po
+++ b/po/et.po
@@ -5,24 +5,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 23:33+0200\n"
"Last-Translator: LiivaneLord \n"
"Language-Team: estonian \n"
-"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Näita kõiki"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -30,7 +30,7 @@ msgstr "Näita kõiki"
msgid "Page number:"
msgstr "Leht:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"Veebilehitseja sihtakent ei saanud uuendada. Võib-olla sulgesid ülemakna või "
"sinu veebilehitseja turvasätted blokeerivad akna värskendamist."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Otsi"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Otsi"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Mine"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Võtme nimi"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Kirjeldus"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Kasuta seda väärtust"
@@ -123,12 +123,12 @@ msgstr "Tabeli kommentaarid"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Veerg"
@@ -137,6 +137,7 @@ msgstr "Veerg"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Veerg"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tüüp"
@@ -154,12 +155,12 @@ msgstr "Tüüp"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Kommentaarid"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Ei"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Ridu"
@@ -409,28 +410,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Mine %sgraafilisele loojale%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sorteeri"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Kasvav"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Kahanev"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Näita"
@@ -451,8 +452,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Või"
@@ -521,8 +522,8 @@ msgstr[0] "%1$s vaste %2$s tabelis"
msgstr[1] "%1$s vastet %2$s tabelis"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Vaata"
@@ -531,14 +532,14 @@ msgstr "Vaata"
msgid "Delete the matches for the %s table?"
msgstr "Kustutada %s tabeli vasted?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Kustuta"
@@ -606,11 +607,11 @@ msgstr "Jälgimine on aktiveeritud."
msgid "Tracking is not active."
msgstr "Jälgimist pole aktiveeritud."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s."
@@ -621,7 +622,7 @@ msgstr "Vaade"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Paljundamine"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on selle MySQL serveri vaikimisi varundusmootor."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Valitutega:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Vali kõik"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Kontrolli ballastiga tabeleid"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Ekspordi"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Prindi vaade"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Tühjenda"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analüüsi tabelit"
msgid "Add prefix to table"
msgstr "Lisa tabelile eesliide"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Asenda tabeli eesliide"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopeeri tabel koos eesliitega"
@@ -729,8 +730,8 @@ msgstr "Jälgitud tabelid"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Andmebaas"
@@ -748,7 +749,7 @@ msgstr "Uuendatud"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Staatus"
@@ -848,45 +849,45 @@ msgstr "Use OpenStreetMaps as Base Layer"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geomeetria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punkt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punkt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Lisa punkt"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Rea sõne"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Välimine ring"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Sisemine ring"
@@ -894,15 +895,15 @@ msgstr "Sisemine ring"
msgid "Add a linestring"
msgstr "Lisa rea sõne"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Lisa sisemine ring"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Hulktahukas"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Lisa hulktahukas"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Tõenäoliselt üritasid üles laadida liiga suurt faili. Selle piirangu kohta "
"loe %sdokumentatsioonist%s."
@@ -974,7 +975,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "%s järjehoidja on loodud"
@@ -1002,7 +1003,7 @@ msgstr ""
"piiranguid."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1018,7 +1019,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin on parema välimusega raamimisvõimelises veebilehitsejas."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" käsud on keelatud."
@@ -1027,7 +1028,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud."
msgid "Do you really want to execute \"%s\"?"
msgstr "Kas tõesti tahad käivitada \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Oled KUSTUTAMAS kogu andmebaasi!"
@@ -1113,21 +1114,21 @@ msgstr "Sulge"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Muuda"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Elava liikluse diagramm"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Elava ühenduse/protsessi diagramm"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Elava päringu diagramm"
@@ -1138,23 +1139,23 @@ msgstr "Staatilised andmed"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Kokku"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Muud"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1174,7 +1175,7 @@ msgstr "Serveri liiklus (KiB'des)"
msgid "Connections since last refresh"
msgstr "Ühendusi pärast viimast värskendust"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Protsessid"
@@ -1192,7 +1193,7 @@ msgstr "Päringuid pärast viimast värskendust"
msgid "Questions (executed statements by the server)"
msgstr "Päringuid (serveri poolt käivitatud käsud)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Päringu statistika"
@@ -1237,14 +1238,14 @@ msgid "System swap"
msgstr "Süsteemisaale"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1296,32 +1297,32 @@ msgstr "Saadetud baidid"
msgid "Bytes received"
msgstr "Vastuvõetud baidid"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Ühendused"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1335,11 +1336,11 @@ msgstr "%d tabel(it)"
msgid "Questions"
msgstr "Päringud"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Liiklus"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Sätted"
@@ -1360,10 +1361,10 @@ msgid "Please add at least one variable to the series"
msgstr "Palun lisa seeriasse vähemalt üks muutuja"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Puudub"
@@ -1463,7 +1464,7 @@ msgstr "Muuda sätteid"
msgid "Current settings"
msgstr "Praegused sätted"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Diagrammi pealkiri"
@@ -1545,9 +1546,9 @@ msgstr "Analüüsimine..."
msgid "Explain output"
msgstr "Selgita väljundit"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Aeg"
@@ -1643,7 +1644,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Impordi"
@@ -1763,15 +1764,15 @@ msgstr "Peida indeksid"
msgid "Show indexes"
msgstr "Näita indekseid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Võõrvõtme kontroll:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Lubatud)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Keelatud)"
@@ -1838,7 +1839,7 @@ msgstr "Näita päringu kasti"
msgid "No rows selected"
msgstr "Ridu pole valitud"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Muuda"
@@ -1847,17 +1848,18 @@ msgstr "Muuda"
msgid "Query execution time"
msgstr "Päringu sooritamise aeg"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d ei ole õige reanumber."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Salvesta"
@@ -1882,77 +1884,69 @@ msgid "Hovering over a point will show its label."
msgstr "Kursori üleliigutamisel näitab punkt selle nime."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Kasuta diagrammi suurendamiseks või vähendamiseks hiire kerimisnuppu."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Diagrammis navigeerimiseks vajuta hiir alla ja lohista seda."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Vajuta suurenduse lähtestamise nuppu, et pöörduda tagasi algsesse olekusse."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Kliki andmepunktil, et vaadata ja vajadusel muuta andmete rida."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Diagrammi suurust saab muuta, kui lohistada seda alumist paremat nurkapidi."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Sõned teisendatakse diagrammi jaoks täisarvudeks"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Vali kaks veergu"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Vali kaks erinevat veergu"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Päringu tulemused"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Andmepunkti sisu"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoreeri"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopeeri"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Lisa veergusid"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Vali osutatud võti"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Vali võõrvõti"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Palun vali primaarvõti või unikaalne nimi"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Vali veerg, mida näidata"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1960,15 +1954,15 @@ msgstr ""
"Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad "
"kaotsi. Kas soovid jätkata?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Vali veerule valik "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Muutmisest loobumiseks vajuta ESC"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1976,27 +1970,27 @@ msgstr ""
"Sa muutsid mõningaid andmed ja neid pole veel salvestatud. Oled kindel, et "
"soovid enne andmete salvestamist sellelt lehelt lahkuda?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Järjekorra muutmiseks lohista"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Sorteerimiseks kliki"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Valimiseks/mittevalimiseks kliki"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Veeru nime kopeerimiseks topeltklõpsa sellel"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Veeru nähtavuse muutmiseks vajuta alla suunatud noolele"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2005,45 +1999,45 @@ msgstr ""
"märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud võimalused "
"ei pruugi pärast salvestamist toimida."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Sa saad ka muuta enamikke veergusid, kui klikid otse nende sisu peale."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Mine lingile"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Kopeeri veeru nimi"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Näita andmete rida/ridu"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Genereeri parool"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genereeri"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Muuda parooli"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Rohkem"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2053,266 +2047,266 @@ msgstr ""
"Uusim versioon on %s, välja antud %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", viimane stabiilne versioon:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "ajakohane"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Valmis"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Eelmine"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Täna"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Jaanuar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Veebruar"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Märts"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Aprill"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juuni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juuli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "August"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Oktoober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Detsember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jaan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Veebr"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Märts"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Aprill"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Juuni"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Juuli"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dets"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Pühapäev"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Esmaspäev"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Teisipäev"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Kolmapäev"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Neljapäev"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Reede"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Laupäev"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "E"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "N"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "R"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "L"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Näd"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "kalender-kuu-aasta"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "puudub"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Tund"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekund"
@@ -2362,16 +2356,16 @@ msgstr "Ootamatud sümbolid %s. real"
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "sekundis"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minutis"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "tunnis"
@@ -2503,15 +2497,15 @@ msgstr ""
msgid "Databases"
msgstr "Andmebaasid"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2523,20 +2517,20 @@ msgid "Structure"
msgstr "Struktuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lisa"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Tegevused"
@@ -2594,12 +2588,12 @@ msgstr "Kasutajad"
msgid "Synchronize"
msgstr "Sünkroniseeri"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binaarne logi"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Muutujad"
@@ -2616,8 +2610,9 @@ msgid "Engines"
msgstr "Mootorid"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Viga"
@@ -2733,35 +2728,35 @@ msgstr ""
"Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui "
"värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s välimusele õiget pildi asukohta ei leitud!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Eelvaade pole saadaval."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "võta see"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Vaikimisi %s välimust ei leitud!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "%s välimust ei leitud!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "%s välimuse asukohta ei leitud!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Välimus"
@@ -2813,20 +2808,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -2872,9 +2867,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 "
-"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest "
-"(\"1970-01-01 00:00:00\" UTC)"
+"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07"
+"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 "
+"00:00:00\" UTC)"
#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
@@ -3120,11 +3115,11 @@ msgstr "Tere tulemast %s'i"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada "
-"%1$spaigaldaja skripti%2$s."
+"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1"
+"$spaigaldaja skripti%2$s."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3226,7 +3221,7 @@ msgstr "jagatud"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabelid"
@@ -3277,11 +3272,11 @@ msgstr "võimalik turvaauk"
msgid "numeric key detected"
msgstr "tuvastati arvvõti"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Seadistuse faili lugemine ebaõnnestus"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3289,12 +3284,12 @@ msgstr ""
"See tähendab tavaliselt, et selles on süntaksi viga, palun kontrolli kõiki "
"allolevaid vigu."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Ei saanud laadida vaikimisi seadistuse faili kohast: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3302,21 +3297,21 @@ msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] väärtus PEAB sinu seadistusfailis olema "
"määratud!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Vale serveri indeks: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Seadistuses on valitud vale autentimise meetod:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Peaksid uuendama %s %s või uuemale versioonile."
@@ -3351,8 +3346,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL päring"
@@ -3390,7 +3385,7 @@ msgid "Create PHP Code"
msgstr "Loo PHP kood"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Uuenda"
@@ -3411,95 +3406,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Kiirmuutmine"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profileerimine"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Päike"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y kell %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Puudulik parameeter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Algus"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Eelmine"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Järgmine"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Lõpp"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Mine "%s" andmebaasi."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Muuda"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Sirvi oma arvutist:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Vali veebiserveri üleslaadimise kataloogist %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Valitud üleslaadimise kataloogile ei pääse ligi"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Seal pole faile, mida üles laadida"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Teosta"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Prindi"
@@ -3671,9 +3666,9 @@ msgstr "Taasta vaikimisi väärtus"
msgid "Allow users to customize this value"
msgstr "Luba kasutajatel seda väärtust muuta"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Lähtesta"
@@ -3836,7 +3831,7 @@ msgid "Compress on the fly"
msgstr "Tihenda lennult"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Seadistusfail"
@@ -3896,7 +3891,7 @@ msgstr "Peida tabeli struktuuri tegevused"
msgid "Show binary contents as HEX by default"
msgstr "Näita binaarset sisu vaikimisi HEX-ina"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Näita binaarset sisu HEX-ina"
@@ -4622,7 +4617,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Tabeli filtri kastis näidatavate tabelite minimaalne hulk"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Andmebaasi filtri kastis näidatavate andmebaaside minimaalne hulk"
@@ -5781,7 +5775,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Luba sätetes kujundaja vaheleht"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Kontrolli uusimat versiooni"
@@ -5921,26 +5915,26 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust."
msgid "possible deep recursion attack"
msgstr "võimalik tõsine rünnak"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Server ei vasta."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detailid..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6101,8 +6095,8 @@ msgstr ", @TABLE@ saab tabeli nimeks"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada "
"aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud "
@@ -6293,48 +6287,53 @@ msgstr "Formaadipõhised valikud:"
msgid "Language"
msgstr "Keel"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Salvesta muudetud andmed"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Taasta veeru järjekord"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Alusta reaga"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Ridade hulk"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Meetod"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horisontaalselt"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horisontaalne (pööratud päised)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikaalselt"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Päised iga %s rea tagant"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "ridu"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sorteeri võtme alusel"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6352,89 +6351,89 @@ msgstr "Sorteeri võtme alusel"
msgid "Options"
msgstr "Valikud"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Osalised tekstid"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Täistekstid"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Seose võti"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Seose näitamise veerg"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Näita binaarsisu"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Näita BLOB sisu"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Peida veebilehitseja transformatsioon"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Well Known Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Rida on kustutatud"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Sulge"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "päringus"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Näitan ridu"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "kokku"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "päring kestis %01.4f sekundit"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Päringu tulemuste tegevused"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Prindi vaade (täispikkade tekstidega)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Näita diagrammi"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualiseeri GIS andmed"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Loo vaade"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Linki ei leitud"
@@ -6480,7 +6479,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puhvertsoon"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB staatus"
@@ -6769,8 +6768,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt"
"%s."
@@ -6893,12 +6892,12 @@ msgstr "Näita MIME-tüüpe"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Loomise aeg"
@@ -7118,8 +7117,8 @@ msgstr "GIS visualiseerimiseks andmeid ei leitud."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS ülekirjutamise katse"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)."
@@ -7291,6 +7290,98 @@ msgstr "SQL ühilduvuse meetod:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ära kasuta nulliliste väärtuste puhul AUTO_INCREMENT"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funktsioon"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Peida"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binaarne"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Oma pikkuse tõttu ei pruugi see veerg olla muudetav"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binaarne - ära muuda"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "veebiserveri üleslaadimiskataloogi"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Muuda/Lisa"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Jätka %s rea lisamist"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ja siis"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Lisa uue reana"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Lisa uue reana ja ignoreeri vigu"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Näita lisamise päringut"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Mine eelmisele lehele tagasi"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Lisa järgmine uus rida"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Mine tagasi sellele lehele"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Muuda järgmist rida"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale "
+"liikumiseks kasuta CTRL + nooled"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Väärtus"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Näitan SQL päringut"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Lisatud rea id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7301,32 +7392,32 @@ msgstr "Puudub"
msgid "Convert to Kana"
msgstr "Konverdi Kana'ks"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Kohast"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Kohta"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Saada"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Lisa tabeli eesliide"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Lisa eesliide"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Kas tõesti tahad käivitada selle päringu?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ei muudetud"
@@ -7334,11 +7425,6 @@ msgstr "Ei muudetud"
msgid "Charset"
msgstr "Märgitabel"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binaarne"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgaaria"
@@ -7668,18 +7754,10 @@ msgid "Slave status"
msgstr "Alluva staatus"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Muutuja"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Väärtus"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Serveri ID"
@@ -8007,11 +8085,6 @@ msgstr "Käivita funktsioon"
msgid "Routine parameters"
msgstr "Funktsiooni parameetrid"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funktsioon"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Vabanda, meil ei õnnestunud kustutatud päästikut taastada."
@@ -8333,7 +8406,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Teosta SQL päring(ud) %s andmebaasis"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Puhasta"
@@ -8341,11 +8414,11 @@ msgstr "Puhasta"
msgid "Columns"
msgstr "Veerud"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Lisa see SQL päring järjehoidjasse"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale"
@@ -8369,10 +8442,6 @@ msgstr "Näita seda päringut siin uuesti"
msgid "View only"
msgstr "Ainult vaata"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "veebiserveri üleslaadimiskataloogi"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8568,10 +8637,6 @@ msgstr "Operaator"
msgid "Table Search"
msgstr "Tabeli otsing"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Muuda/Lisa"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8789,7 +8854,7 @@ msgstr "Protokolli versioon"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Kasutaja"
@@ -8902,8 +8967,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"phpMyAdmini seadistuse salvestus ei ole lõplikult seadistatud, mõned "
-"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad "
-"%ssiia%s."
+"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad %"
+"ssiia%s."
#: main.php:357
#, php-format
@@ -8920,15 +8985,14 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe "
-"%sdokumentatsioonist%s."
+"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %"
+"sdokumentatsioonist%s."
#: navigation.php:175 server_databases.php:311 server_synchronize.php:1465
msgid "No databases"
msgstr "Andmebaasid puuduvad"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Filtreeri andmebaase nime alusel"
@@ -9009,10 +9073,6 @@ msgstr "Peida/Näita kõiki"
msgid "Hide/Show Tables with no relation"
msgstr "Peida/Näita tabeleid, millel puudub seos"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Peida"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Tabelite hulk"
@@ -9205,17 +9265,17 @@ msgstr "Faili pole olemas"
msgid "Select binary log to view"
msgstr "Vali binaarne logi, mida soovid vaadata"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Faili"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Lühenda näidatavaid päringuid"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Näita täispikkasid päringuid"
@@ -9652,8 +9712,8 @@ msgstr "Kustuta kasutajatega samanimelised andmebaasid."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate õigused otse MySQL'i õiguste tabelist. "
"Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi "
@@ -9775,7 +9835,7 @@ msgstr "Ülema serveriks muudeti edukalt %s"
msgid "This server is configured as master in a replication process."
msgstr "See server on paljundamisel seatud ülemaks."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Näita ülema staatust"
@@ -9921,134 +9981,134 @@ msgstr ""
"See server ei ole paljundamisel seadistatud alluvaks. Kas soovid seda teha?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s lõim katkestati edukalt."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Töötleja"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Päringute puhver"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Lõimud"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Ajutised andmed"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Viivitatud lisamised"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Võtme puhver"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Liitmised"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sorteerimine"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Ülekande koordineerija"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Tühjenda (sulge) kõik tabelid"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Näita avatud tabeleid"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Näita alluvaid hoste"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Näita alluva staatust"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Tühjenda päringute puhver"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Jooksev informatsioon"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Kõik staatuse muutujad"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Jälgija"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Kontrollsüsteem"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Värskendamissagedus: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtrid"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Sisaldab sõna:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Näita ainult 'alert' väärtusi"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtreeri kategooria alusel..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Näita vormindamata väärtusi"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Seotud lingid:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Käivita analüüsija"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Juhendid"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
"Kontrollsüsteem analüüsib serveri staatuse muutujaid ja annab soovitusi."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10057,7 +10117,7 @@ msgstr ""
"Pane tähele, et kuigi see süsteem annab soovitusi lihtsate arvutuste alusel, "
"on siiski rusikareegel, et need ei pruugi tingimata su süsteemile rakenduda."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10067,7 +10127,7 @@ msgstr ""
"(lugedes dokumentatsiooni) ja kuidas tehtud muudatusi tagasi võtta. Halb "
"muudatus võib kaasa tuua jõudluse languse."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10078,31 +10138,31 @@ msgstr ""
"saavutatud mingit praktiliselt mõõdetavat arengut."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Päringud alates käivitumisest: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Käsud"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Võrguliiklus alates käivitumisest: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "See MySQL server on töötanud %1$s. See käivitus %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10110,15 +10170,15 @@ msgstr ""
"See MySQL server töötab paljundamiselülemana ja alluvana"
"b>."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr "See MySQL server töötab paljundamiselülemana."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr "See MySQL server töötab paljundamiselalluvana."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10126,11 +10186,11 @@ msgstr ""
"Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Paljundamise staatus"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10138,35 +10198,35 @@ msgstr ""
"Hõivatud serveris võib baitide lugeja olla ülekoormatud ja seetõttu MySQL "
"serveri poolt koostatud statistika ei pruugi õige olla."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Vastu võetud"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Saadetud"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Maks. paralleelühendusi"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Ebaõnnestunud katseid"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Katkestatud"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Käsk"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10174,11 +10234,11 @@ msgstr ""
"Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma "
"ühendust korralikult sulgemata."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10188,17 +10248,17 @@ msgstr ""
"ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude "
"salvestamiseks ajutist faili."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10210,11 +10270,11 @@ msgstr ""
"suurendada tmp_table_size väärtust, et ajutised tabelid oleksid "
"mälupõhised, mitte kettapõhised."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Mysqld poolt loodud ajutiste failide hulk."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10222,7 +10282,7 @@ msgstr ""
"Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt "
"käskude täitmise ajal."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10230,7 +10290,7 @@ msgstr ""
"INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga "
"(tõenäoliselt korduv võti)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10238,23 +10298,23 @@ msgstr ""
"Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, "
"mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Kirjutatud INSERT DELAYED ridade hulk."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Käivitatud FLUSH käskude hulk."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Sisemiste COMMIT käskude hulk."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Tabelist kustutatud ridade hulk."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10264,7 +10324,7 @@ msgstr ""
"nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu "
"korda on tabeleid avastatud."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10274,7 +10334,7 @@ msgstr ""
"tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. "
"Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10282,7 +10342,7 @@ msgstr ""
"Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see "
"hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10291,7 +10351,7 @@ msgstr ""
"Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui "
"pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10299,7 +10359,7 @@ msgstr ""
"Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise "
"meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10311,7 +10371,7 @@ msgstr ""
"palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad "
"liitmisi, mis ei kasuta võtmeid korralikult."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10323,35 +10383,35 @@ msgstr ""
"korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et "
"need kasutaksid ära indeksid, mis sul on."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Sisemiste ROLLBACK käskude hulk."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Tabeli rea uuendamise taotluste hulk."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Tabelisse rea lisamise taotluste hulk."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Vabade lehtede hulk."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10361,7 +10421,7 @@ msgstr ""
"loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada "
"ega eemaldada."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10373,11 +10433,11 @@ msgstr ""
"valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Puhvertsooni kogumaht lehtedes."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10385,7 +10445,7 @@ msgstr ""
"InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui "
"päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10393,11 +10453,11 @@ msgstr ""
"InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB "
"teeb järjestikulist kogu tabeli kontrolli."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10405,7 +10465,7 @@ msgstr ""
"Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida "
"pidi tegema ühelehelise lugemisena."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10419,51 +10479,51 @@ msgstr ""
"palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis "
"see väärtus peaks olema madal."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Seni tehtud fsync() operatsioonide hulk."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Hetkel järjekorras olevate lugemiste hulk."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Hetkel järjekorras olevate kirjutamiste hulk."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Seni loetud andmete koguhulk baitides."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Andmete lugemiste koguhulk."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Andmete kirjutamiste koguhulk."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Seni kirjutatud andmete koguhulk baitides."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Teostatud topeltkirjutamise operatsioonide hulk."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10471,35 +10531,35 @@ msgstr ""
"Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne "
"jätkamist pidanud ootama selle tühjendamist."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Logi kirjutamise taotluste hulk."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Logi failisse füüsiliste kirjutamiste hulk."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Järjekorras olevad logi faili kirjutamised."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Logi faili kirjutatud baitide hulk."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Loodud lehtede hulk."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10507,51 +10567,51 @@ msgstr ""
"Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud "
"mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Loetud lehtede hulk."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Kirjutatud lehtede hulk."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Hetkel ootel olevate rea lukustamiste hulk."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Rea lukustamise saamise keskmine aeg millisekundites."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Ootama pidanud rea lukustamised kokku."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB tabelitest kustutatud ridade hulk."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB tabelitesse lisatud ridade hulk."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB tabelitest loetud ridade hulk."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB tabelites uuendatud ridade hulk."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10559,7 +10619,7 @@ msgstr ""
"Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel "
"kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10567,7 +10627,7 @@ msgstr ""
"Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel "
"oleva võtme puhvri mahu tuvastamiseks."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10577,15 +10637,15 @@ msgstr ""
"näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel "
"olnud."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "Puhvrist võtmeploki lugemise taotluste hulk."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10595,7 +10655,7 @@ msgstr ""
"tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki "
"saab arvutada valemiga Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10603,22 +10663,22 @@ msgstr ""
"Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise "
"taotlustega (arvutatud väärtus)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent "
"(arvutatud väärtus)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10628,7 +10688,7 @@ msgstr ""
"on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. "
"Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10636,12 +10696,12 @@ msgstr ""
"Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri "
"käivitamisest."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10649,19 +10709,19 @@ msgstr ""
"Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus "
"on tõenäoliselt liiga väike."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Avatud failide hulk."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Avatud tabelite hulk."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10671,19 +10731,19 @@ msgstr ""
"killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu "
"täitmisega."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Päringu puhvri jaoks vaba mälu hulk."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Puhvri kasutamise hulk."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Puhvrisse lisatud päringute hulk."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10695,7 +10755,7 @@ msgstr ""
"puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline "
"päring puhvrist kustutada."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10703,19 +10763,19 @@ msgstr ""
"Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud "
"query_cache_type sätte tõttu)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Puhvris registreeritud päringute hulk."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Päringu puhvris olevate plokkide koguhulk."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10723,11 +10783,11 @@ msgstr ""
"Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis "
"peaksid hoolikalt kontrollima oma tabelite indekseid."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10736,7 +10796,7 @@ msgstr ""
"rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite "
"indekseid.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10744,15 +10804,15 @@ msgstr ""
"Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole "
"kriitiline, kui see on suur.)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10760,24 +10820,24 @@ msgstr ""
"Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates "
"käivitusest)."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
"Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
"Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10787,23 +10847,23 @@ msgstr ""
"suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse "
"vähendamist."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Piirkondlike sorteerimiste hulk."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Sorteeritud ridade hulk."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Koheselt teostatud tabeli lukustamiste hulk."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10815,7 +10875,7 @@ msgstr ""
"peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma "
"tabel või tabelid või kasuta paljundamist."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10825,11 +10885,11 @@ msgstr ""
"valemiga Threads_created/Connections. Kui see väärtus on punane, siis "
"peaksid vähendama oma thread_cache_size väärtust."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Hetkel avatud ühenduste hulk."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10840,47 +10900,47 @@ msgstr ""
"peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see "
"märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Lõimude hulk, mis ei ole jõude."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Alusta jälgimist"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Juhendid/Paigaldus"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Diagrammide korrastamine/muutmine on valmis"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Lisa diagramm"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Korrasta/muuda diagramme"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Uuendamise sagedus"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Diagrammi veerud"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Diagrammi korrastus"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10888,15 +10948,15 @@ msgstr ""
"Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. "
"Kui paigaldamine on keeruline, võid seda eksportida."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Lähtesta vaikimisi väärtustele"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Jälgija juhendid"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10910,7 +10970,7 @@ msgstr ""
"general_log. Pane siiski tähele, et general_log toodab palju andmeid ja "
"suurendab serveri laadimisaega kuni 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10921,11 +10981,11 @@ msgstr ""
"andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab "
"MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Kasuta jälgijat:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10935,7 +10995,7 @@ msgstr ""
"tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või "
"eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10947,11 +11007,11 @@ msgstr ""
"diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, "
"kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Palun pane tähele:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10963,87 +11023,87 @@ msgstr ""
"on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja "
"tühjenda selle tabel, kui jälgimist pole enam tarvis."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Ettemääratud diagramm"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Staatuse muutuja(d)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Vali seeria:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Tavaliselt jälgitav"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "või tipi muutuja nimi:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Näita eristatava väärtusena"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Kasuta jagajat"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Lisa andmete väärtustele ühikud"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Lisa see seeria"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Puhasta seeria"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Seeriad diagrammis:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Logi statistika"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Valitud ajavahemik:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Vali logi, millest statistikat luua."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Tulemused on grupeeritud päringu teksti alusel."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Päringu analüüsija"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d sekund"
msgstr[1] "%d sekundit"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11177,7 +11237,7 @@ msgstr "Seansi väärtus"
msgid "Global value"
msgstr "Globaalne väärtus"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Lae alla"
@@ -11250,39 +11310,39 @@ msgstr "Seadistatud serverid puuduvad"
msgid "New server"
msgstr "Uus server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Vaikimisi keel"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "lase kasutajal valida"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- puudub -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Vaikimisi server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Rea lõpp"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Näita"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Lae"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmini koduleht"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Anneta"
@@ -11417,8 +11477,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Kui %ssisselogimise küpsise kehtivus%s on suurem, kui 1440 sekundit, siis "
-"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime"
-"%s väärtus on sellest madalam (praegu %d)."
+"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime%"
+"s väärtus on sellest madalam (praegu %d)."
#: setup/lib/index.lib.php:306
#, php-format
@@ -11447,8 +11507,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - "
-"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. "
+"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %"
+"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. "
"Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub "
"ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid."
@@ -11506,51 +11566,42 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid."
msgid "Wrong data"
msgstr "Valed andmed"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Sirvi võõrvõtme väärtusi"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Kas tõesti tahad käivitada selle päringu?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Lisatud rea id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Näitan PHP koodina"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Näitan SQL päringut"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Valideeritud SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL tulemus"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Koostanud"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid `%s` tabeli indeksitega"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nimi"
@@ -11563,58 +11614,6 @@ msgstr "%1$s tabel on edukalt muudetud"
msgid "The columns have been moved successfully."
msgstr "Veerud on edukalt liigutatud."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Oma pikkuse tõttu ei pruugi see veerg olla muudetav"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binaarne - ära muuda"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Lisa uue reana"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Lisa uue reana ja ignoreeri vigu"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Näita lisamise päringut"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ja siis"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Mine eelmisele lehele tagasi"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Lisa järgmine uus rida"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Mine tagasi sellele lehele"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Muuda järgmist rida"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale "
-"liikumiseks kasuta CTRL + nooled"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Jätka %s rea lisamist"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12199,31 +12198,37 @@ msgstr "Jälgi nende andmete töötluse käske:"
msgid "Create version"
msgstr "Loo versioon"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Teosta kahe erineva veergu jaoks \"päring näite alusel\" (metamärk: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Täiendav otsingu kriteerium"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Kasuta seda veergu iga punkti nimetamiseks"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Suurim ridade hulk diagrammis"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Sirvi/Muuda punkte"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Kuidas kasutada"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Lähtesta"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Hangi rohkem välimusi!"
@@ -12603,11 +12608,11 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
-"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s"
-"%%. See peaks olema üle 80%%"
+"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%"
+"%. See peaks olema üle 80%%"
#: libraries/advisory_rules.txt:174
msgid "Query cache fragmentation"
@@ -12756,8 +12761,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks "
"jääma alla 10%%."
@@ -13334,8 +13339,8 @@ msgstr ""
#, php-format
msgid "%s%% of all clients are aborted. This value should be below 2%%"
msgstr ""
-"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla "
-"2%%"
+"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%"
+"%"
#: libraries/advisory_rules.txt:413
msgid "Rate of aborted clients"
@@ -13512,6 +13517,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert väärtuseks on määratud 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Kasuta diagrammi suurendamiseks või vähendamiseks hiire kerimisnuppu."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Diagrammis navigeerimiseks vajuta hiir alla ja lohista seda."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Sõned teisendatakse diagrammi jaoks täisarvudeks"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13931,9 +13946,6 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "%s nimelist päästikut ei leitud"
-#~ msgid "rows"
-#~ msgstr "ridu"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rida alates reast #"
diff --git a/po/eu.po b/po/eu.po
index 1b4d3d6c57..78c132b188 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-02 12:41+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
-"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.10\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Dena erakutsi"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Dena erakutsi"
msgid "Page number:"
msgstr "Orri zenbakia:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
#, fuzzy
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
@@ -39,21 +39,22 @@ msgstr ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Bilatu"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,29 +70,28 @@ msgstr "Bilatu"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Joan"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
#, fuzzy
msgid "Keyname"
msgstr "Giltzaren izena"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Deskribapena"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Erabili balio hau"
@@ -124,12 +124,12 @@ msgstr "Taularen iruzkinak"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Zutabea"
@@ -138,6 +138,7 @@ msgstr "Zutabea"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -145,9 +146,9 @@ msgstr "Zutabea"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Mota"
@@ -155,12 +156,12 @@ msgstr "Mota"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulua"
@@ -199,13 +200,13 @@ msgstr "Iruzkinak"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -216,19 +217,19 @@ msgstr "Ez"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -362,7 +363,7 @@ msgstr "Taula"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Errenkadak"
@@ -413,28 +414,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Aldatu %serakitzaile bisualrera%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordenatu"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Goranzko"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Beherantz"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Erakutsi"
@@ -455,8 +456,8 @@ msgid "Del"
msgstr "Ezabatu"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Edo"
@@ -527,8 +528,8 @@ msgstr[0] "%s emaitza %s taulan"
msgstr[1] "%s emaitzak %s taulan"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Arakatu"
@@ -537,14 +538,14 @@ msgstr "Arakatu"
msgid "Delete the matches for the %s table?"
msgstr "%s taulako aukeratuak ezabatu"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Ezabatu"
@@ -612,14 +613,14 @@ msgstr "Jarraipena aktibatuta dago."
msgid "Tracking is not active."
msgstr "Jarraipena ez dago aktibatuta."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation"
-"%s erreferentzia egin."
+"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%"
+"s erreferentzia egin."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -628,7 +629,7 @@ msgstr "Ikusipegia"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Ihardetsi"
@@ -642,20 +643,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Ikurdunak:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Guztiak egiaztatu"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -667,27 +668,27 @@ msgstr "Arazteko hondakinak egiaztatu"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Esportatu"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Inprimatzeko ikuspegia"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Hutsik"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -713,11 +714,11 @@ msgstr "Taula aztertu"
msgid "Add prefix to table"
msgstr "Gehitu aurrizkia taulari"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Taularen aurrizkia aldatu"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Taula aurrizkiarekin kopiatu"
@@ -736,8 +737,8 @@ msgstr "Taulak jarraipenarekin"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Datu-basea"
@@ -755,7 +756,7 @@ msgstr "Eguneratua"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Egoera"
@@ -855,45 +856,45 @@ msgstr "Erabili OpenStreetMaps Oinarri geruza moduan"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Puntu"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "%d puntua"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Puntua gehitu"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Lerro kateak"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Kanpo eraztuna"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Barne eraztuna"
@@ -901,15 +902,15 @@ msgstr "Barne eraztuna"
msgid "Add a linestring"
msgstr "Lerro kate berria gehitu"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Gehitu barne eraztuna"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Gehitu poligonoa"
@@ -930,8 +931,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -971,7 +972,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "%s laster-marka sortu da"
@@ -994,7 +995,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1011,7 +1012,7 @@ msgstr ""
"phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile "
"batekin."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
@@ -1021,7 +1022,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
msgid "Do you really want to execute \"%s\"?"
msgstr "Benetan nahi al duzu "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Datu-base osoa SUNTSITZERA zoaz!"
@@ -1112,21 +1113,21 @@ msgstr "Itxi"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editatu"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Zuzeneko trafikoaren grafika"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL kontsulta"
@@ -1139,23 +1140,23 @@ msgstr "Datu estatikoak"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Gutira"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Beste"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1177,7 +1178,7 @@ msgstr "Zerbitzariaren trafikoa (KiBtan)"
msgid "Connections since last refresh"
msgstr "Konexio azken freskatzetik"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prozesuak"
@@ -1196,7 +1197,7 @@ msgstr "Galdera azken freskatzetik"
msgid "Questions (executed statements by the server)"
msgstr "Galdera (zerbitzariak exekutatuak)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Kontsulta estatistikak"
@@ -1241,14 +1242,14 @@ msgid "System swap"
msgstr "Sistemaren swap-a"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1306,32 +1307,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Jasota"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Konexioak"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Byte"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1348,11 +1349,11 @@ msgstr "%s taula"
msgid "Questions"
msgstr "Eragiketak"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafikoa"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1376,10 +1377,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Batez"
@@ -1479,7 +1480,7 @@ msgstr "Erlazioen ezaaugarri orokorrak"
msgid "Current settings"
msgstr "Erlazioen ezaaugarri orokorrak"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1565,9 +1566,9 @@ msgstr "Aztertu"
msgid "Explain output"
msgstr "SQL-a azaldu"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Denbora"
@@ -1677,7 +1678,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Esportatu"
@@ -1822,17 +1823,17 @@ msgstr "Indizeak"
msgid "Show indexes"
msgstr "Sareta erakutsi"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Gaituta"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1911,7 +1912,7 @@ msgstr "SQL kontsulta"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Aldatu"
@@ -1920,17 +1921,18 @@ msgstr "Aldatu"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Gorde"
@@ -1959,179 +1961,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL emaitza"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Edukinen taula"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ezikusi"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Gehitu %s zutabe"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Aukeratu erakutsi beharreko eremua"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Zutabe izenak"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Errenkadak erakusten"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Egilea:"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Pasahitza aldatu"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Astel"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2139,30 +2133,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Datu-baserik ez"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Batez"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Aurrekoa"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2170,96 +2164,96 @@ msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarioa "
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2267,78 +2261,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2346,113 +2340,113 @@ msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Batez"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2504,16 +2498,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "segunduko"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minutuko"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "orduko"
@@ -2639,15 +2633,15 @@ msgstr ""
msgid "Databases"
msgstr "Datu-baseak"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Zerbitzaria"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2659,20 +2653,20 @@ msgid "Structure"
msgstr "Egitura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Txertatu"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Eragiketak"
@@ -2732,13 +2726,13 @@ msgstr "Erabiltzailea"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binarioa "
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Aldagaiak"
@@ -2755,8 +2749,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Errorea"
@@ -2872,35 +2867,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2941,14 +2936,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3206,8 +3201,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3311,7 +3306,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Taulak"
@@ -3364,22 +3359,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3391,21 +3386,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian "
"zehaztuta behar du egon!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
@@ -3440,8 +3435,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL kontsulta"
@@ -3479,7 +3474,7 @@ msgid "Create PHP Code"
msgstr "PHP kodea sortu"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3500,41 +3495,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Iga"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y-%m-%d, %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Hasi"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3542,8 +3537,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Aurrekoa"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3551,53 +3546,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Hurrengoa"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Amaiera"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" datu-basera joan."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Inprimatu"
@@ -3782,9 +3777,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reset egin"
@@ -3932,7 +3927,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3993,7 +3988,7 @@ msgstr "Taularen egituraren proposamena "
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5831,7 +5826,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5969,25 +5964,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6169,8 +6164,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6364,56 +6359,61 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Lar"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Errenkada kopurua orriko"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Astel"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (goiburukoak biratuta)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "bertikal"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Exekutatu aurretik aukeratutako kontsulta"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Arakatu"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Gakoaren arabera ordenatu"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6432,101 +6432,101 @@ msgstr "Gakoaren arabera ordenatu"
msgid "Options"
msgstr "Eragiketak"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Testu partzialak"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Testu osoak"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Erlazio-eskema"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Erlazio-eskema"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Nabigatzailearen eraldaketa"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Hil"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "kontsultan"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Errenkadak erakusten"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "guztira"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Inprimatzeko ikuspena (testu osoak)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF eskema erakutsi"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Zerbitzariaren bertsioa"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Esteka aurkitugabea"
@@ -6572,7 +6572,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Egoera"
@@ -6824,8 +6824,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6973,12 +6973,12 @@ msgstr "MIME-mota erabilgarriak"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Zerbitzaria"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Sortzeko denbora"
@@ -7189,8 +7189,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)."
@@ -7355,6 +7355,100 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funtzioak"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binarioa"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Bere luzeragatik, eremu hau ez da editagarria "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binarioa - ez editatu"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Txertatu"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "eta orduan"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Txertatu errenkada berri batean"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Itzuli"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Erregistro berria gehitu"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Egin atzera orri honetara"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Editatu hurrengo lerroa"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "balioa"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7367,36 +7461,36 @@ msgstr "Batez"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Osti"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Bidali"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Benetan nahi al duzu "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Aldaketarik ez"
@@ -7404,11 +7498,6 @@ msgstr "Aldaketarik ez"
msgid "Charset"
msgstr "Karaktere-jokoa"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binarioa"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgariera"
@@ -7744,18 +7833,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Aldagaia"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "balioa"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8102,11 +8183,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funtzioak"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8467,7 +8543,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8477,11 +8553,11 @@ msgstr ""
msgid "Columns"
msgstr "Zutabe izenak"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Kontsulta hau gogokoetan gorde"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri"
@@ -8505,10 +8581,6 @@ msgstr "Kontsulta hau hemen berriz erakutsi"
msgid "View only"
msgstr "Soilik ikusi"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8725,12 +8797,6 @@ msgstr "Eragiketak"
msgid "Table Search"
msgstr "Bilatu"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Txertatu"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8967,7 +9033,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Erabiltzailea"
@@ -9189,10 +9255,6 @@ msgstr "Dena erakutsi"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9410,18 +9472,18 @@ msgstr "\"%s\" taula ez da existitzen!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Eremuak"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Erakutsitako kontultak moztu"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Kontsulta osoak erakutsi"
@@ -9885,8 +9947,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
@@ -10011,7 +10073,7 @@ msgstr "Pribilegioak arrakastaz berkargatu dira."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10150,12 +10212,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s haria arrakastaz ezabatu da."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10163,149 +10225,149 @@ msgstr ""
"phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia "
"izatea."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Kontsulta mota"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Use delayed inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Taulak erakutsi"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
#, fuzzy
msgid "Runtime Information"
msgstr "Saioa hasteko informazioa"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Egilea:"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Pasahitza ez aldatu"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Taulak erakutsi"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Taulak erakutsi"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Erlazioak"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Kontsulta mota"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funtzioak"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10313,118 +10375,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Sententziak"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Jasota"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Bidalita"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Erratutako saiakerak"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Deuseztatua"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komandoa"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10432,78 +10494,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10511,7 +10573,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10519,42 +10581,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10562,33 +10624,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10597,243 +10659,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Fitxategiaren karaktereen kodeketa:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10841,99 +10903,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10941,18 +11003,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10960,69 +11022,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Kontsulta mota"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Lar"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Gehitu %s zutabe"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Egilea:"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Gehitu/ezabatu irizpide-zutabea"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11031,7 +11093,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11039,18 +11101,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11058,11 +11120,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11070,89 +11132,89 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
msgid "Preset chart"
msgstr "Taula berrizendatu izen honetara: "
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Taulak hautatu"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Erabiltzaile berria gehitu"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL kontsulta"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Errenkadaren estatistikak"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Taulak hautatu"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Kontsulta mota"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11160,7 +11222,7 @@ msgid_plural "%d seconds"
msgstr[0] "segunduko"
msgstr[1] "segunduko"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11296,7 +11358,7 @@ msgstr "Saioaren balioa"
msgid "Global value"
msgstr "Balio orokorra"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11360,41 +11422,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokal"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentazioa"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11584,55 +11646,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Datu-baserik ez"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Benetan nahi al duzu "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL balidatu"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL emaitza"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Egilea:"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiketa"
@@ -11647,58 +11700,6 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
msgid "The columns have been moved successfully."
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Bere luzeragatik, eremu hau ez da editagarria "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binarioa - ez editatu"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Txertatu errenkada berri batean"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "eta orduan"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Itzuli"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Erregistro berria gehitu"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Egin atzera orri honetara"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Editatu hurrengo lerroa"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12343,33 +12344,39 @@ msgstr ""
msgid "Create version"
msgstr "Zerbitzariaren bertsioa"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL kontsulta"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reset egin"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12728,8 +12735,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12856,8 +12863,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13632,9 +13639,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Balioa bat falta da formularioan!"
-#~ msgid "rows"
-#~ msgstr "Arakatu"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "errenkada(k) # erregistrotik hasita"
diff --git a/po/fa.po b/po/fa.po
index c364b45649..121daac8ea 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: persian \n"
-"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "نمايش همه"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,28 +28,29 @@ msgstr "نمايش همه"
msgid "Page number:"
msgstr "شماره صفحه:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "جستجو"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -65,28 +66,27 @@ msgstr "جستجو"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "تاييد"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Keyname"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "توضیحات"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "این مقدار را استفاده کنید"
@@ -119,12 +119,12 @@ msgstr "توضيحات جدول"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "ستون"
@@ -133,6 +133,7 @@ msgstr "ستون"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "ستون"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "نوع"
@@ -150,12 +151,12 @@ msgstr "نوع"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "خالي"
@@ -194,13 +195,13 @@ msgstr "توضيحات"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "خير"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "جدول"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "سطرها"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "سازنده ی تصویری"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "ترتيب"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "صعودي"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "نزولي"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "نمايش"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "يا"
@@ -525,8 +526,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%s عبارت همتا در جدول %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "مشاهده"
@@ -535,14 +536,14 @@ msgstr "مشاهده"
msgid "Delete the matches for the %s table?"
msgstr "داده های همتا در جدول %s حذف شوند؟"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "حذف"
@@ -613,11 +614,11 @@ msgstr "پیگردی فعال می باشد."
msgid "Tracking is not active."
msgstr "پیگردی فعال نمی باشد."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
@@ -629,7 +630,7 @@ msgstr "نمایش"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -643,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "موارد انتخابشده :"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "انتخاب همه"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -668,27 +669,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "صدور"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "نماي چاپ"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "خالي كردن"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -714,13 +715,13 @@ msgstr "تحليل جدول"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "جايگزيني دادههاي جدول با پرونده"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -741,8 +742,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "پايگاه داده"
@@ -760,7 +761,7 @@ msgstr "به روز شده"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -868,48 +869,48 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
msgid "Add a point"
msgstr "افزودن ستون جديد"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "خطوط منتهي به"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -919,17 +920,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "افزودن يك كاربر جديد"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "افزودن يك كاربر جديد"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "افزودن ستون جديد"
@@ -952,8 +953,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -994,7 +995,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1017,7 +1018,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1032,7 +1033,7 @@ msgstr "بازگشت"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "دستور \"DROP DATABASE\" غيرفعال ميباشد."
@@ -1042,7 +1043,7 @@ msgstr "دستور \"DROP DATABASE\" غيرفعال ميباشد."
msgid "Do you really want to execute \"%s\"?"
msgstr "آيا مطمئن هستيد "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1138,23 +1139,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "ويرايش"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server version"
msgid "Live traffic chart"
msgstr "نسخه سرور"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "پرس و جوي SQL"
@@ -1166,23 +1167,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "جمع كل"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1204,7 +1205,7 @@ msgstr "نسخه سرور"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1222,7 +1223,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "آمار سطرها"
@@ -1270,14 +1271,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "مگا بايت"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "كيلوبايت"
@@ -1333,32 +1334,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "گيگا بايت"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ترابايت"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "پتا بايت"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "اگزا بايت"
@@ -1375,11 +1376,11 @@ msgstr "%s جدول"
msgid "Questions"
msgstr "فارسي"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "Deleting %s"
msgid "Settings"
@@ -1404,10 +1405,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "خير"
@@ -1506,7 +1507,7 @@ msgstr "تغيير"
msgid "Current settings"
msgstr "پرس و جوي SQL"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
msgid "Chart Title"
msgstr "No tables"
@@ -1591,9 +1592,9 @@ msgstr ""
msgid "Explain output"
msgstr "شرح دادن SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1700,7 +1701,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "صدور"
@@ -1839,17 +1840,17 @@ msgstr "فهرستها"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "فعال"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1929,7 +1930,7 @@ msgstr "پرس و جوي SQL"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "تغيير"
@@ -1938,17 +1939,18 @@ msgstr "تغيير"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "ذخيره"
@@ -1977,179 +1979,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "اضافه/حذف ستون ها"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "نتيجه SQL"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
msgid "Data point content"
msgstr "توضيحات جدول"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignore"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "افزودن ستون جديد"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "ستون را براي نمايش انتخاب نماييد"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "برای انتخاب کلیک کنبد"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "نام ستونها"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Start"
msgid "Show data row(s)"
msgstr "شنبه"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "توليدشده توسط"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "تغيير اسم رمز"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "دوشنبه"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2157,32 +2151,32 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "نسخه قبلی"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "No databases"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "خير"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "قبل"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2190,96 +2184,96 @@ msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "جمع كل"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "دودويي"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "آوريل"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "مي"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "جولاي"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "آگوست"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2287,78 +2281,78 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "چهارشنبه"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "پنجشنبه"
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "شنبه"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2366,111 +2360,111 @@ msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "هفته"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "خير"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "ساعت"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "دقیقه"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "ثانیه"
@@ -2520,16 +2514,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "در ثانیه"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "در دقیقه"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "در ساعت"
@@ -2655,15 +2649,15 @@ msgstr ""
msgid "Databases"
msgstr "پايگاههاي داده"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "سرور"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2675,20 +2669,20 @@ msgid "Structure"
msgstr "ساختار"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "درج"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "عمليات"
@@ -2748,13 +2742,13 @@ msgstr "كاربر"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "دودويي"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
#, fuzzy
msgid "Variables"
msgstr "متغییر"
@@ -2772,8 +2766,9 @@ msgid "Engines"
msgstr "موتور"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خطا"
@@ -2887,35 +2882,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "پش دید موجود نمی باشد"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2956,14 +2951,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3220,8 +3215,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3320,7 +3315,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "جدولها"
@@ -3373,42 +3368,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3443,8 +3438,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "پرس و جوي SQL"
@@ -3483,7 +3478,7 @@ msgid "Create PHP Code"
msgstr "ساخت كد PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3507,41 +3502,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "موتور"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "يكشنبه"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y ساعت %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3549,8 +3544,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "قبل"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3558,54 +3553,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "بعد"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "انتها"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "برای انتخاب کلیک کنبد"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست."
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "چاپ"
@@ -3788,9 +3783,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reset"
@@ -3935,7 +3930,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3996,7 +3991,7 @@ msgstr "پيشنهاد ساختار جدول"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5810,7 +5805,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5949,25 +5944,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6147,8 +6142,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6336,56 +6331,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "اضافه يا حذف ستونها"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "شنبه"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "تعداد سطرها در هر صفحه"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "دوشنبه"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "افقي"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "عمودي"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "مشاهده"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6404,96 +6402,96 @@ msgstr ""
msgid "Options"
msgstr "عمليات"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
msgid "Partial texts"
msgstr "متغییر"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "كاملا متن"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
msgid "Hide browser transformation"
msgstr "اطلاعات ورود"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "جمع كل"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "نمايش توضيحات ستون"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "نسخه سرور"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "پيوند پيدا نشد"
@@ -6539,7 +6537,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6790,8 +6788,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6932,12 +6930,12 @@ msgstr "نمايش خصوصيات"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "ميزبان"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "زمان توليد"
@@ -7146,8 +7144,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
@@ -7312,6 +7310,98 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "تابع"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "دودويي"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "درج"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "و سپس"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "درج به عنوان يك سطر جديد"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "برو به صفحه قبل"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "درج يك سطر جديد ديگر"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "برگرد به این صفحه"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "ویرایش کردن ردیف بعدی"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "مقدار"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7324,36 +7414,36 @@ msgstr "خير"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "جمعه"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "ارسال"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "آيا مطمئن هستيد "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7361,11 +7451,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "دودويي"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "بلغاری"
@@ -7696,18 +7781,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "متغییر"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "مقدار"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8047,11 +8124,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "تابع"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8397,7 +8469,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "اجراي پرس و جو(ها)ي SQL در پايگاهداده %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "تقویم"
@@ -8408,11 +8480,11 @@ msgstr "تقویم"
msgid "Columns"
msgstr "نام ستونها"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8436,10 +8508,6 @@ msgstr "نمايش دوباره اين پرس و جو در اينجا "
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8519,9 +8587,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:89
msgid ""
@@ -8562,9 +8630,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
-"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
-"يا 'a\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
+"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
+"\\'b')"
#: libraries/tbl_properties.inc.php:369
msgid "ENUM or SET data too long?"
@@ -8638,12 +8706,6 @@ msgstr "عمليات"
msgid "Table Search"
msgstr "جستجو"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "درج"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8821,7 +8883,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "كاربر"
@@ -8876,8 +8938,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
-"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
+"، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:286
msgid ""
@@ -9037,10 +9099,6 @@ msgstr "نمايش همه"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9251,18 +9309,18 @@ msgstr "جدول \"%s\" وجود ندارد!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "ستونها"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9703,8 +9761,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9821,7 +9879,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9960,158 +10018,158 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "وروديهاي تمديدشده"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "نمايش جدولها"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
#, fuzzy
msgid "Runtime Information"
msgstr "اطلاعات ورود"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "توليدشده توسط"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "عدم تغيير اسم رمز"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "نمايش جدولها"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "نمايش جدولها"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
msgid "Related links:"
msgstr "عمليات"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "پرس و جو"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "تابع"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10119,115 +10177,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "شرج"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "شناسه"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "دستور"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10235,78 +10293,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10314,7 +10372,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10322,42 +10380,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10365,33 +10423,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10400,243 +10458,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "مجموعه كاراكترهاي پرونده:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10644,99 +10702,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10744,18 +10802,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10763,69 +10821,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "پیگردی فعال نمی باشد."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "شنبه"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "افزودن ستون جديد"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "توليدشده توسط"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "اضافه يا حذف ستونها"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10834,7 +10892,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10842,18 +10900,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10861,11 +10919,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10873,97 +10931,97 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "حذف پایگاه داده"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Select Tables"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "افزودن يك كاربر جديد"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "پرس و جوي SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "آمار سطرها"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Select Tables"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "پرس و جو"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] " ثانیه"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11096,7 +11154,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11160,41 +11218,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "محلی"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "مستندات phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11384,55 +11442,46 @@ msgstr ""
msgid "Wrong data"
msgstr "No databases"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "آيا مطمئن هستيد "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "معتبرسازي SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "نتيجه SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "توليدشده توسط"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11447,56 +11496,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "پايگاه داده %s حذف گرديد."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "درج به عنوان يك سطر جديد"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "و سپس"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "برو به صفحه قبل"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "درج يك سطر جديد ديگر"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "برگرد به این صفحه"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "ویرایش کردن ردیف بعدی"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12133,33 +12132,39 @@ msgstr ""
msgid "Create version"
msgstr "نسخه سرور"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "پرس و جوي SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reset"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12520,8 +12525,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12648,8 +12653,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13400,9 +13405,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "مقداري در فرم وارد نشده !"
-#~ msgid "rows"
-#~ msgstr "مشاهده"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "سطر(ها) ابتدا از سطر شماره "
diff --git a/po/fi.po b/po/fi.po
index 232c9926ce..8959454e9d 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-21 20:39+0200\n"
"Last-Translator: Jukka Penttinen \n"
"Language-Team: finnish \n"
-"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Näytä kaikki"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Näytä kaikki"
msgid "Page number:"
msgstr "Sivunumero:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät "
"ikkunoiden väliset päivitystoiminnot."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Etsi"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Etsi"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Suorita"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Avaimen nimi"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Kuvaus"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Käytä tätä arvoa"
@@ -122,12 +122,12 @@ msgstr "Taulun kommentit"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Sarake"
@@ -136,6 +136,7 @@ msgstr "Sarake"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Sarake"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tyyppi"
@@ -153,12 +154,12 @@ msgstr "Tyyppi"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Tyhjä"
@@ -197,13 +198,13 @@ msgstr "Kommentit"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Ei"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Taulu"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Kpl rivejä"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Vaihda %svisuaaliseen muokkaimeen%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Järjestä"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Nouseva"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Laskeva"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Näytä"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Poista"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Tai"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s hakutulosta taulussa %2$s"
msgstr[1] "%1$s hakutulosta taulussa %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Selaa"
@@ -530,14 +531,14 @@ msgstr "Selaa"
msgid "Delete the matches for the %s table?"
msgstr "Poista taulusta %s löytyneet tulokset?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Poista"
@@ -605,14 +606,14 @@ msgstr "Seuranta on käytössä."
msgid "Tracking is not active."
msgstr "Seuranta ei ole käytössä."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
-"%sohjeista%s."
+"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
+"sohjeista%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -621,7 +622,7 @@ msgstr "Näkymä"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Kahdennus"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Valitut:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Valitse kaikki"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Valitse taulut, joissa on ylijäämää"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Vienti"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Tulostusversio"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Tyhjennä"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analysoi taulu"
msgid "Add prefix to table"
msgstr "Lisää etuliite tauluun"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Korvaa taulun etuliite"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopioi taulun etuliite"
@@ -729,8 +730,8 @@ msgstr "Seurattavat taulut"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Tietokanta"
@@ -748,7 +749,7 @@ msgstr "Päivitetty"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Tila"
@@ -848,45 +849,45 @@ msgstr "Käytä perustasossa OpenStreetMaps-karttaa"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Piste"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Piste %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Lisää piste"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Rivimerkkijono"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Ulkoympyrä"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Sisäympyrä"
@@ -894,15 +895,15 @@ msgstr "Sisäympyrä"
msgid "Add a linestring"
msgstr "Lisää rivimerkkijono"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Lisää sisäympyrä"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Monikulmio"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Lisää monikulmio"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -973,7 +974,7 @@ msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa"
msgid "Could not load import plugins, please check your installation!"
msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Kirjanmerkki %s luotu"
@@ -1001,7 +1002,7 @@ msgstr ""
"asti ellei PHP:n suoritusaikarajaa nosteta."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1016,17 +1017,16 @@ msgstr "Takaisin"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
#: js/messages.php:30
#, php-format
-#| msgid "Do you really want to "
msgid "Do you really want to execute \"%s\"?"
msgstr "Haluatko varmasti suorittaa \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
@@ -1112,21 +1112,21 @@ msgstr "Sulje"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Muokkaa"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Liikennetaulu"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Elävä yhteys- ja prosessikaavio"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Elävä kyselykaavio"
@@ -1137,23 +1137,23 @@ msgstr "Staattinen data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Yhteensä"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Toinen"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1173,7 +1173,7 @@ msgstr "Palvelimen kuormitus (kt:nä)"
msgid "Connections since last refresh"
msgstr "Yhteydenttoa viimeisestä päivityksestä"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prosessit"
@@ -1191,7 +1191,7 @@ msgstr "Kysymyksiä viimeisestä päivityksestä lähtien"
msgid "Questions (executed statements by the server)"
msgstr "Kysymyksiä (palvelimen suorittamat lauseet)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Kyselyn ominaisuuksia"
@@ -1236,14 +1236,14 @@ msgid "System swap"
msgstr "Järjestelmän sivutusmuisti"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "Mt"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "kt"
@@ -1295,32 +1295,32 @@ msgstr "Tavua lähetetty"
msgid "Bytes received"
msgstr "Tavua vastaanotettu"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Yhteydet"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "tavua"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "Gt"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "Tt"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "Pt"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "Et"
@@ -1334,11 +1334,11 @@ msgstr "%d taulu(a)"
msgid "Questions"
msgstr "Kysymykset"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Liikenne"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Asetukset"
@@ -1359,10 +1359,10 @@ msgid "Please add at least one variable to the series"
msgstr "Lisää sarjaan vähintään yksi muuttuja"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ei mitään"
@@ -1462,7 +1462,7 @@ msgstr "Muuta asetuksia"
msgid "Current settings"
msgstr "Nykyiset asetukset"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Kaavion otsikko"
@@ -1489,7 +1489,6 @@ msgid "From general log"
msgstr "Yleisestä lokista"
#: js/messages.php:172
-#| msgid "Loading logs"
msgid "Analysing logs"
msgstr "Analyysilokit"
@@ -1529,7 +1528,6 @@ msgid "Jump to Log table"
msgstr "Siirry lokitauluun"
#: js/messages.php:180
-#| msgid "No databases"
msgid "No data found"
msgstr "Tieotoa ei löytynyt"
@@ -1545,9 +1543,9 @@ msgstr "Analysointi..."
msgid "Explain output"
msgstr "Selitä SQL-kysely"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Aika"
@@ -1569,12 +1567,10 @@ msgid "Chart"
msgstr "Kaavio"
#: js/messages.php:191
-#| msgid "Apply index(s)"
msgid "Edit chart"
msgstr "Muokkaa kaaviota"
#: js/messages.php:192
-#| msgid "SQL queries"
msgid "Series"
msgstr "Sarjat"
@@ -1647,17 +1643,15 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Tuonti"
#: js/messages.php:213
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Import monitor configuration"
msgstr "Tuo seurantamääritys"
#: js/messages.php:214
-#| msgid "Please select the primary key or a unique key"
msgid "Please select the file you want to import"
msgstr "Valitse tiedosto jonka haluat tuoda"
@@ -1769,18 +1763,15 @@ msgstr "Piilota indeksit"
msgid "Show indexes"
msgstr "Näytä indeksit"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
-#| msgid "Disable foreign key checks"
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Viiteavaimen tarkastus:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
-#| msgid "Enabled"
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Päällä)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
-#| msgid "Disabled"
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Pois päältä)"
@@ -1848,7 +1839,7 @@ msgstr "Näytä kyselykenttä"
msgid "No rows selected"
msgstr "Ei yhtään riviä valittu"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Muokkaa"
@@ -1857,17 +1848,18 @@ msgstr "Muokkaa"
msgid "Query execution time"
msgstr "Kyselyn suoritusaika"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d on virheellinen rivinumero."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Tallenna"
@@ -1892,75 +1884,67 @@ msgid "Hovering over a point will show its label."
msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Lähennä ja loitonna kaaviota hiiren rullalla."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Siirry eri kohtaan kaaviossa napsauttamalla ja raahaamalla hiirtä."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Palaa alkuperäiseen tilaan napsauttamalla zoomauksen nollauslinkkiä."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Näytä ja tarvittaessa muokkaa tietoriviä napsauttamalla tietopistettä."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "Kaavion kokoa voi muuttaa raahaamalla sen oikeata alakulmaa."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Merkkijonot muunnetaan kaaviota varten kokonaisluvuiksi"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Valitse kaksi saraketta"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Valitse kaksi eri saraketta"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Kyselyn tulokset"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Tietopisteen sisältö"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Älä huomioi"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopioi"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Lisää sarakkeita"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Valitse viitattava avain"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Valitse liiteavain"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Valitse perusavain tai uniikki avain"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Valitse näytettävä sarake"
-#: js/messages.php:345
+#: js/messages.php:341
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them. Do you want to continue?"
@@ -1968,15 +1952,15 @@ msgstr ""
"Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. "
"Haluatko silti jatkaa?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Lisää valinta sarakkeelle "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1984,27 +1968,27 @@ msgstr ""
"Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko "
"varmasti poistua tältä sivulta ennen tietojen tallentamista?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Muunna järjestystä raahaamalla"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Lajittele painamalla"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Valitse tai poista valinta painamalla"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Kopoio kentän nimi kaksoisnäpäyksellä"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Muuta sarakkeen näkymistä painamalla pudotusvalikon nuolta"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2013,48 +1997,46 @@ msgstr ""
"valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät "
"ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Useimpia sarakkeita voi myös muokata \n"
"painamalla suoraan niiden sisältöä."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Siirry linkkiin"
-#: js/messages.php:362
-#| msgid "Column names"
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Kopioi kenttän nimi"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
-#| msgid "Update row(s)"
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Näytä rivi(t)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Keksi salasana"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Keksi"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Vaihda salasana"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Lisää"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2064,266 +2046,266 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", viimeisin vakaa versio:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "ajan tasalla"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Valmis"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Edellinen kuukausi"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Seuraava kuukausi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Tänään"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Tammikuu"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Helmikuu"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Maaliskuu"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Huhtikuu"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Toukokuu"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Kesäkuu"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Heinäkuu"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Elokuu"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Syyskuu"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Lokakuu"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Marraskuu"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Joulukuu"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Sunnuntai"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Maanantai"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Tiistai"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Keskiviikko"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Torstai"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Perjantai"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Lauantai"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Vko"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "kalenteri-kuukausi-vuosi"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Tunti"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuutti"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekunti"
@@ -2349,8 +2331,6 @@ msgstr "Säännön '%s' testin suorittaminen epäonnistui"
#: libraries/Advisor.class.php:207
#, php-format
-#| msgid ""
-#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
msgid "Failed formatting string for rule '%s'."
msgstr "Merkkijonon muotoilu epäonnistui '%s' säännöllä."
@@ -2359,12 +2339,10 @@ msgstr "Merkkijonon muotoilu epäonnistui '%s' säännöllä."
msgid ""
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule"
msgstr ""
-"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä %"
-"2$s"
+"Epäkelpo säännön määrittely rivillä %1$s, odotti edellisen säännön riviä %2$s"
#: libraries/Advisor.class.php:378
#, php-format
-#| msgid "Invalid format of CSV input on line %d."
msgid "Invalid rule declaration on line %s"
msgstr "Virheellinen säännön määrittely rivillä %s"
@@ -2380,16 +2358,16 @@ msgstr ""
"Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta "
"löytyi \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "sekunnissa"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minuutissa"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "tunnissa"
@@ -2522,15 +2500,15 @@ msgstr ""
msgid "Databases"
msgstr "Tietokannat"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Palvelin"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2542,20 +2520,20 @@ msgid "Structure"
msgstr "Rakenne"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lisää rivi"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Toiminnot"
@@ -2605,7 +2583,6 @@ msgid "Designer"
msgstr "Suunnittelija"
#: libraries/Menu.class.php:472
-#| msgid "User"
msgid "Users"
msgstr "Käyttäjät"
@@ -2614,12 +2591,12 @@ msgstr "Käyttäjät"
msgid "Synchronize"
msgstr "Yhtenäistä"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binääriloki"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Muuttujat"
@@ -2636,8 +2613,9 @@ msgid "Engines"
msgstr "Moottorit"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Virhe"
@@ -2705,13 +2683,11 @@ msgstr "tuntematon taulun tila: "
#: libraries/Table.class.php:771
#, php-format
-#| msgid "Source database"
msgid "Source database `%s` was not found!"
msgstr "Lähdetietokanta '%s' ei löytynyt!"
#: libraries/Table.class.php:779
#, php-format
-#| msgid "Theme %s not found!"
msgid "Target database `%s` was not found!"
msgstr "Kohde tietokantaa '%s' ei löydy!"
@@ -2730,7 +2706,6 @@ msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
#: libraries/Table.class.php:1413
#, php-format
-#| msgid "Table %s has been renamed to %s"
msgid "Table %1$s has been renamed to %2$s."
msgstr "Taulu %1$s on nimeltään %2$s."
@@ -2758,35 +2733,35 @@ msgstr ""
"eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne "
"muuttunut."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Kelvollista kuvapolkua teemalle %s ei löytynyt!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Esikatselu ei ole saatavilla."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "käytä tätä"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Oletusteemaa %s ei löydy!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Teemaa %s ei löydy!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Teeman %s polkua ei löydy!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Teema"
@@ -2835,25 +2810,24 @@ msgid ""
"(default 10), the maximum number of decimals (D) is 30 (default 0)"
msgstr ""
"Desimaaliluku (M,D) - kokonaislukuosan numeroiden maksimäärä (M) on 65 "
-"(oletuksena 10), desimaaliosan numeroiden maksimäärä (D) on 30 (oletuksena "
-"0)"
+"(oletuksena 10), desimaaliosan numeroiden maksimäärä (D) on 30 (oletuksena 0)"
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - "
-"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38"
+"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -"
+"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä "
-"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja "
+"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -"
+"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja "
"2.2250738585072014E-308 - 1.7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -2884,7 +2858,6 @@ msgstr ""
#: libraries/Types.class.php:313 libraries/Types.class.php:715
#, php-format
-#| msgid "Create version %s of %s.%s"
msgid "A date, supported range is %1$s to %2$s"
msgstr "Päiväys, pitää olla välillä %1$s - %2$s"
@@ -2901,7 +2874,6 @@ msgstr ""
#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
-#| msgid "Error renaming table %1$s to %2$s"
msgid "A time, range is %1$s to %2$s"
msgstr "Aika, mahdollinen välillä %1$s - %2$s"
@@ -3008,7 +2980,6 @@ msgid "A curve with linear interpolation between points"
msgstr ""
#: libraries/Types.class.php:357
-#| msgid "Add a polygon"
msgid "A polygon"
msgstr "Monikulmio"
@@ -3034,19 +3005,16 @@ msgid "Numeric"
msgstr ""
#: libraries/Types.class.php:636 libraries/Types.class.php:970
-#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Päiväys ja aika"
#: libraries/Types.class.php:645 libraries/Types.class.php:973
-#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Merkkijono"
#: libraries/Types.class.php:666
-#| msgid "Log file count"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Geometrinen"
@@ -3112,11 +3080,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
-"%1$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
+"$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3135,7 +3103,6 @@ msgid "Failed to use Blowfish from mcrypt!"
msgstr "Mcrypt-laajennuksen Blowfish-toiminnon käyttö epäonnistui!"
#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:90
-#| msgid "Cookies must be enabled past this point."
msgid "Javascript must be enabled past this point"
msgstr "Javaskripti on oltava päällä tämän jälkeen"
@@ -3223,7 +3190,7 @@ msgstr "jaettu"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Taulut"
@@ -3274,11 +3241,11 @@ msgstr "mahdollinen turva-aukko"
msgid "numeric key detected"
msgstr "numeerinen avain tunnistettu"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Asetustiedostoa ei voi lukea"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3286,36 +3253,33 @@ msgstr ""
"Tämä johtuu tavallisesti siinä olevasta syntaksivirheestä, tarkista kaikki "
"alla näkyvät virheet."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\""
-#: libraries/common.inc.php:630
-#| msgid ""
-#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
-#| "configuration file!"
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] täytyy määritellä asetustiedostossa!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Virheellinen palvelimen indeksi: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Asetuksissa on virheellinen todennustapa:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
@@ -3350,8 +3314,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-kysely"
@@ -3389,7 +3353,7 @@ msgid "Create PHP Code"
msgstr "Luo PHP-koodi"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Päivitä"
@@ -3410,95 +3374,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Muokkaus"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilointi"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Su"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y klo %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Puuttuva parametri:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Aloitus"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Edellinen sivu"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Seuraava sivu"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Viimeinen sivu"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Siirry tietokantaan "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Vaihda painamalla"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Selaa tietokonettasi:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Lähetettäviä tiedostoja ei ole"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Suorita"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Tulosta"
@@ -3670,9 +3634,9 @@ msgstr "Palauta oletusarvo"
msgid "Allow users to customize this value"
msgstr "Anna käyttäjien mukauttaa tätä arvoa"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Palauta"
@@ -3752,18 +3716,14 @@ msgid "Bzip2"
msgstr "Bzip2"
#: libraries/config/messages.inc.php:32
-#| msgid ""
-#| "s which type of editing controls should be used for CHAR and CHAR fields;"
-#| "bd]input[/kbd] - allows limiting of input length, [kbd]tarea[/kbd] - ows "
-#| "newlines in fields"
msgid ""
"Defines which type of editing controls should be used for CHAR and VARCHAR "
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Määrittää minkä tyyppistä muokkaustoimintoa tulisi käyttää CHAR- ja VARCHAR-"
-"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, "
-"[kbd]textarea[/kbd] - sallii kentissä uudet rivit"
+"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, [kbd]"
+"textarea[/kbd] - sallii kentissä uudet rivit"
#: libraries/config/messages.inc.php:33
msgid "CHAR columns editing"
@@ -3837,7 +3797,7 @@ msgid "Compress on the fly"
msgstr "Pakkaa lennossa"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Asetustiedosto"
@@ -3858,7 +3818,6 @@ msgid "Debug SQL"
msgstr "Etsi virheitä SQL-kyselystä"
#: libraries/config/messages.inc.php:51
-#| msgid "Databases display options"
msgid "Default display direction"
msgstr "Oletus näyttösuunta"
@@ -3891,7 +3850,6 @@ msgid "Whether the table structure actions should be hidden"
msgstr ""
#: libraries/config/messages.inc.php:59
-#| msgid "Propose table structure"
msgid "Hide table structure actions"
msgstr "Esitä taulun rakennetoimet"
@@ -3899,7 +3857,7 @@ msgstr "Esitä taulun rakennetoimet"
msgid "Show binary contents as HEX by default"
msgstr "Näytä binäärisisältö oletusarvoisesti heksamuodossa"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Näytä binaarisisältö heksamuodossa"
@@ -3928,7 +3886,6 @@ msgstr ""
"tietokannan valituille tauluille."
#: libraries/config/messages.inc.php:67
-#| msgid "Table maintenance"
msgid "Disable multi table maintenance"
msgstr "Estä monen taulun hallinta"
@@ -4289,7 +4246,6 @@ msgid "Microsoft Office"
msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:192
-#| msgid "Open Document Text"
msgid "Open Document"
msgstr "Avaa dokumentti"
@@ -4367,18 +4323,14 @@ msgid "Configuration storage"
msgstr "Asetusmuisti"
#: libraries/config/messages.inc.php:209
-#| msgid ""
-#| "ure phpMyAdmin database to gain access to additional features, see "
-#| "Documentation.html#linked-tables]linked-tables infrastructure[/a] "
-#| "umentation"
msgid ""
"Configure phpMyAdmin configuration storage to gain access to additional "
"features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration "
"storage[/a] in documentation"
msgstr ""
"Määritä phpMyAdmin määritysten tallennus käyttääksesi lisäasetuksia, katso "
-"ohjeista [a@Documentation.html#linked-tables]phpMyAdmin määritysten "
-"tallennus[/a]"
+"ohjeista [a@Documentation.html#linked-tables]phpMyAdmin määritysten tallennus"
+"[/a]"
#: libraries/config/messages.inc.php:210
msgid "Changes tracking"
@@ -4444,7 +4396,6 @@ msgid "Customize startup page"
msgstr "Mukauta käynnistyssivua"
#: libraries/config/messages.inc.php:228
-#| msgid "Database for user"
msgid "Database structure"
msgstr "Tietokannan rakenne"
@@ -4453,7 +4404,6 @@ msgid "Choose which details to show in the database structure (list of tables)"
msgstr ""
#: libraries/config/messages.inc.php:230
-#| msgid "Database for user"
msgid "Table structure"
msgstr "Taulun rakenne"
@@ -4474,7 +4424,6 @@ msgid "Text fields"
msgstr "Tekstikentät"
#: libraries/config/messages.inc.php:235
-#| msgid "Customize export options"
msgid "Customize text input fields"
msgstr "Muokkaa tekstikenttiä"
@@ -4620,12 +4569,10 @@ msgid "Display servers selection"
msgstr "Näytä palvelinten valinta"
#: libraries/config/messages.inc.php:280
-#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of tables to display the table filter box"
msgstr "Taululuettelossa näkyvien taulujen minimimäärä"
#: libraries/config/messages.inc.php:281
-#| msgid "Maximum number of tables displayed in table list"
msgid "Minimum number of databases to display the database filter box"
msgstr "Taululuettelossa näkyvien taulujen minimimäärä"
@@ -4698,17 +4645,14 @@ msgid "Enable highlighting"
msgstr "Käytä korostusta"
#: libraries/config/messages.inc.php:297
-#| msgid "Maximum number of tables displayed in table list"
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr "Viimeksi käytettyjen taululuettelo, 0 poistaa käytöstä"
#: libraries/config/messages.inc.php:298
-#| msgid "Untracked tables"
msgid "Recently used tables"
msgstr "Viimeksi käytetty taulut"
#: libraries/config/messages.inc.php:299
-#| msgid "imum number of characters used when a SQL query is displayed"
msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
@@ -4857,7 +4801,6 @@ msgid "Use natural order for sorting table and database names"
msgstr ""
#: libraries/config/messages.inc.php:328
-#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Luonnollinenjärjestys"
@@ -4878,9 +4821,6 @@ msgid "GZip output buffering"
msgstr "GZip-ulostulon puskurointi"
#: libraries/config/messages.inc.php:333
-#| msgid ""
-#| "MART[/kbd] - i.e. descending order for fields of type TIME, DATE, ETIME "
-#| "TIMESTAMP, ascending order otherwise"
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
@@ -4916,19 +4856,14 @@ msgid "Iconic table operations"
msgstr "Kuvakkeellisen taulun toiminnot"
#: libraries/config/messages.inc.php:341
-#| msgid "Disallow BLOB and BINARY fields from editing"
msgid "Disallow BLOB and BINARY columns from editing"
msgstr "Poista BLOB ja BINARY kentät muokkauksesta"
#: libraries/config/messages.inc.php:342
-#| msgid "Protect binary fields"
msgid "Protect binary columns"
msgstr "Suojaa binäärisarakkeet"
#: libraries/config/messages.inc.php:343
-#| msgid ""
-#| " if you want DB-based query history (requires pmadb). If disabled, s "
-#| "lizes JS-routines to display query history (lost by window close)."
msgid ""
"Enable if you want DB-based query history (requires phpMyAdmin configuration "
"storage). If disabled, this utilizes JS-routines to display query history "
@@ -4987,7 +4922,6 @@ msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
#: libraries/config/messages.inc.php:357
-#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Muista taulun järjestys"
@@ -4996,7 +4930,6 @@ msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
msgstr ""
#: libraries/config/messages.inc.php:359
-#| msgid "Repair threads"
msgid "Repeat headers"
msgstr "Korjaa otsikot"
@@ -5017,7 +4950,6 @@ msgid "Leave blank if not used"
msgstr "Jätä tyhjäksi, jos tätä ei käytetä"
#: libraries/config/messages.inc.php:365
-#| msgid "Host authentication order"
msgid "Host authorization order"
msgstr "Palvelintodennuksen järjestys"
@@ -5026,7 +4958,6 @@ msgid "Leave blank for defaults"
msgstr "Käytä oletusarvoja jättämällä tyhjäksi"
#: libraries/config/messages.inc.php:367
-#| msgid "Host authentication rules"
msgid "Host authorization rules"
msgstr "Palvelintodennuksen säännöt"
@@ -5131,7 +5062,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:388
-#| msgid "Control user"
msgid "Control host"
msgstr "Hallintapalvelin"
@@ -5216,7 +5146,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:405
-#| msgid "Maximum number of tables displayed in table list"
msgid "Maximal number of table preferences to store"
msgstr "Tallennettavien taulumääritysten maksimi määrä"
@@ -5278,7 +5207,6 @@ msgstr ""
"a]. Jätä tyhjäksi, jos et halua tukea. Oletusarvo: [kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:415
-#| msgid "database name"
msgid "Database name"
msgstr "tietokannan nimi"
@@ -5292,17 +5220,14 @@ msgid "Server port"
msgstr "Palvelinportti"
#: libraries/config/messages.inc.php:418
-#| msgid ""
-#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma_recent[/kbd]"
msgstr ""
-"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
-"[kbd]pma_recent[/kbd]"
+"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
+"pma_recent[/kbd]"
#: libraries/config/messages.inc.php:419
-#| msgid "Recall user name"
msgid "Recently used table"
msgstr "Viimeisimmäksi käytetty taulu"
@@ -5384,7 +5309,6 @@ msgstr ""
"[kbd]pma_table_info[/kbd]"
#: libraries/config/messages.inc.php:434
-#| msgid "Display fields table"
msgid "Display columns table"
msgstr "Näyttökenttien taulu"
@@ -5400,7 +5324,6 @@ msgstr ""
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:436
-#| msgid "Defragment table"
msgid "UI preferences table"
msgstr "Käyttöliittymän ominaisuuksien taulu"
@@ -5439,22 +5362,18 @@ msgid "Defines the list of statements the auto-creation uses for new versions."
msgstr ""
#: libraries/config/messages.inc.php:444
-#| msgid "Statements"
msgid "Statements to track"
msgstr "Jäljitettävä lauseke"
#: libraries/config/messages.inc.php:445
-#| msgid ""
-#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
"kbd]"
msgstr ""
-"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
-"[kbd]pma_history[/kbd]"
+"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
+"pma_history[/kbd]"
#: libraries/config/messages.inc.php:446
-#| msgid "SQL query history table"
msgid "SQL query tracking table"
msgstr "SQL-kyselyhistorian taulu"
@@ -5465,7 +5384,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:448
-#| msgid "Automatic recovery mode"
msgid "Automatically create versions"
msgstr "Automaattisesti luodut versiot"
@@ -5501,7 +5419,6 @@ msgid "Verbose name of this server"
msgstr "Tämän palvelimen yksityiskohtainen nimi"
#: libraries/config/messages.inc.php:455
-#| msgid "r a user should be displayed a "show all (records)" button"
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr "Näyttääkö käyttäjälle "Näytä kaikki (rivit)"-painike"
@@ -5576,7 +5493,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:469
-#| msgid "Show open tables"
msgid "Show field types"
msgstr "Näytä kenttätyypit"
@@ -5593,7 +5509,6 @@ msgid "Whether to show hint or not"
msgstr ""
#: libraries/config/messages.inc.php:473
-#| msgid "Show grid"
msgid "Show hint"
msgstr "Näytä vihje"
@@ -5627,7 +5542,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:358
-#| msgid "Hide query box"
msgid "Retain query box"
msgstr "Säilytä SQL-kyselylaatikko"
@@ -5732,7 +5646,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:504
-#| msgid "CHAR textarea columns"
msgid "Textarea columns"
msgstr "Tekstikenttä kentät"
@@ -5743,7 +5656,6 @@ msgid ""
msgstr ""
#: libraries/config/messages.inc.php:506
-#| msgid "CHAR textarea rows"
msgid "Textarea rows"
msgstr "Tekstikenttä rivit"
@@ -5756,7 +5668,6 @@ msgid "Title of browser window when nothing is selected"
msgstr ""
#: libraries/config/messages.inc.php:510
-#| msgid "Default table tab"
msgid "Default title"
msgstr "Oletusotsikko"
@@ -5812,7 +5723,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Tarkista uusin versio"
@@ -5841,22 +5752,18 @@ msgid "ZIP"
msgstr "ZIP"
#: libraries/config/setup.forms.php:41
-#| msgid "Host authentication order"
msgid "Config authentication"
msgstr "Määritä tunnistautuminen"
#: libraries/config/setup.forms.php:45
-#| msgid "Host authentication order"
msgid "Cookie authentication"
msgstr "Eväste tunnistautuminen"
#: libraries/config/setup.forms.php:48
-#| msgid "Host authentication order"
msgid "HTTP authentication"
msgstr "HTTP tunnistautuminen"
#: libraries/config/setup.forms.php:51
-#| msgid "Host authentication order"
msgid "Signon authentication"
msgstr "Sisäänkirjatumistunnitautuminen"
@@ -5879,7 +5786,6 @@ msgstr ""
#: libraries/config/setup.forms.php:270
#: libraries/config/user_preferences.forms.php:172
-#| msgid "Custom color"
msgid "Custom"
msgstr "Muokattu"
@@ -5910,7 +5816,6 @@ msgid "Could not initialize Drizzle connection library"
msgstr ""
#: libraries/config/validate.lib.php:221 libraries/config/validate.lib.php:229
-#| msgid "Could not connect to MySQL server"
msgid "Could not connect to Drizzle server"
msgstr "Ei voi yhdistää Drizzle palvelimeen"
@@ -5959,8 +5864,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
-#| msgid " the local MySQL server's socket is not correctly configured)"
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5968,20 +5872,19 @@ msgstr ""
"Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty "
"oikein)."
-#: libraries/database_interface.lib.php:1851
-#| msgid "The server is not responding"
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Palvelin ei vastaa."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Lisätiedot..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6019,7 +5922,6 @@ msgstr "MySQL 4.0 -yhteensopiva"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
-#| msgid "Create new database"
msgid "Create database"
msgstr "Luo tietokanta"
@@ -6047,7 +5949,6 @@ msgid "Name"
msgstr "Nimi"
#: libraries/display_create_table.lib.php:55
-#| msgid "Number of fields"
msgid "Number of columns"
msgstr "Kenttien määrä"
@@ -6056,19 +5957,16 @@ msgid "Could not load export plugins, please check your installation!"
msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!"
#: libraries/display_export.lib.php:85
-#| msgid "Allows locking tables for the current thread."
msgid "Exporting databases from the current server"
msgstr "Tuo tietokantoja nykyiseltä palvelimelta"
#: libraries/display_export.lib.php:87
#, php-format
-#| msgid "Create table on database %s"
msgid "Exporting tables from \"%s\" database"
msgstr "Tuo tauluja \"%s\" tietokannasta"
#: libraries/display_export.lib.php:89
#, php-format
-#| msgid "Create table on database %s"
msgid "Exporting rows from \"%s\" table"
msgstr "Tuo rivejä taulusta %s"
@@ -6170,8 +6068,8 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -6389,58 +6287,63 @@ msgstr ""
msgid "Language"
msgstr "Kieli"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Tallennushakemisto"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Restore column order"
msgstr "CHAR-tekstikentän sarakkeet"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Käynnistä"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Kenttien määrä"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "Lisää"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vaakatasossa"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vaakatasossa (kierretyt otsikot)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "pystysuorassa"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Suorita kysely kirjanmerkeistä"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Selaa"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Lajittele avaimen mukaan"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6458,97 +6361,97 @@ msgstr "Lajittele avaimen mukaan"
msgid "Options"
msgstr "Valinnat"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Lyhennetyt tekstit"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Koko tekstit"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relaatioavain"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relaationäyttökenttä"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Näytä binäärisisältö"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Näytä BLOB-sisältö"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Selaimen muunnos (transformation)"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Rivi on poistettu"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Lopeta"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "lauseessa"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Näkyvillä rivit"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "yhteensä"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kysely kesti %01.4f s."
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Kyselytulosten toimenpiteet"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Tulostusversio (kokonaisin tekstein)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Näytä kaavio"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Luo näkymä"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Linkkiä ei löydy"
@@ -6595,7 +6498,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Puskurivaranto"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB:n tila"
@@ -6886,8 +6789,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7040,12 +6943,12 @@ msgstr "Näytä MIME-tyypit"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Palvelin"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Luontiaika"
@@ -7070,7 +6973,6 @@ msgid "Export table names"
msgstr "Vie sisällöt"
#: libraries/export/mediawiki.php:60
-#| msgid "horizontal (rotated headers)"
msgid "Export table headers"
msgstr "Vie taulun otsikot"
@@ -7257,8 +7159,8 @@ msgstr "Kaaviolle ei ole tietoja."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)."
@@ -7446,6 +7348,104 @@ msgstr "SQL-yhteensopiva tila"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funktio"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Kätke"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binääritietoa"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Pituudestaan johtuen tätä saraketta ei voine muokata "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binääritietoa - älä muokkaa"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "palvelimen lähetyshakemisto"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Lisää rivi"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Aloita lisäys alusta %s rivillä"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ja sen jälkeen"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Lisää uutena rivinä"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Näytetään SQL-kysely"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Takaisin"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Lisää uusi rivi"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Palaa tälle sivulle"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Muokkaa seuraavaa riviä"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy "
+"siirtymään minne suuntaan tahansa."
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Arvo"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Näytetään SQL-kysely"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Lisätyn rivin tunnus: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7458,38 +7458,38 @@ msgstr "Ei mitään"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "Pe"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Lähetä"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add prefix"
msgstr "Käytä indeksiä/indeksejä"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Haluatko varmasti "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ei muutoksia"
@@ -7497,11 +7497,6 @@ msgstr "Ei muutoksia"
msgid "Charset"
msgstr "Merkistökoodaus"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binääritietoa"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarialainen"
@@ -7834,18 +7829,10 @@ msgid "Slave status"
msgstr "Alipalvelimen tila"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Muuttuja"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Arvo"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Palvelimen tunnus"
@@ -8211,11 +8198,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Rutiinit"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funktio"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8589,7 +8571,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Suorita SQL-kyselyjä tietokannassa %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Tyhjennä"
@@ -8597,11 +8579,11 @@ msgstr "Tyhjennä"
msgid "Columns"
msgstr "Sarakkeet"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Tallenna SQL-kysely"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
@@ -8625,10 +8607,6 @@ msgstr "Näytä tämä kyselylause uudestaan"
msgid "View only"
msgstr "Näytä"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "palvelimen lähetyshakemisto"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8839,12 +8817,6 @@ msgstr "Operaattori"
msgid "Table Search"
msgstr "Etsi"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Lisää rivi"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9117,7 +9089,7 @@ msgstr "Protokollan versio"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Käyttäjä"
@@ -9360,10 +9332,6 @@ msgstr "Kätke/näytä kaikki"
msgid "Hide/Show Tables with no relation"
msgstr "Kätke/näytä taulut, joilla ei ole relaatiota"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Kätke"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Taulujen määrä"
@@ -9435,17 +9403,14 @@ msgid "Import from selected page"
msgstr "Tuo tiedostoja"
#: pmd_pdf.php:118
-#| msgid "Export/Import to scale"
msgid "Export to selected page"
msgstr "Vie valitulle sivulle"
#: pmd_pdf.php:120
-#| msgid "Create a new index"
msgid "Create a page and export to it"
msgstr "Luo sivu ja vie se"
#: pmd_pdf.php:129
-#| msgid "User name"
msgid "New page name: "
msgstr "Uuden sivun nimi: "
@@ -9584,17 +9549,17 @@ msgstr "Taulua \"%s\" ei ole!"
msgid "Select binary log to view"
msgstr "Valitse näytettävä binääriloki"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Tiedostot"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Lyhennä näytettävät kyselyt"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Näytä kyselyt kokonaisuudessaan"
@@ -10046,8 +10011,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@@ -10177,7 +10142,7 @@ msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi"
msgid "This server is configured as master in a replication process."
msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Näytä isäntäpalvelimen tila"
@@ -10337,162 +10302,162 @@ msgstr ""
"Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. "
"Haluatko määrittää sen?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Säikeen %s lopetus onnistui."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Käsittelijä"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Kyselyvälimuisti"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Säikeet"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Väliaikaista tietoa"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Viivästetyt lisäyslauseet"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Avainvälimuisti"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Liitokset"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Lajittelu"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaktion koordinaattori"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Tyhjennä (sulje) kaikki taulut"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Näytä avoimet taulut"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Näytä alipalvelimet"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Näytä alipalvelimen tila"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Tyhjennä kyselymuisti"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Ajonaikaiset tiedot"
-#: server_status.php:790
+#: server_status.php:793
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Näytä alipalvelimen tilan taulu"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Päivitä"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Suodatin"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Älä vaihda salasanaa"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Näytä avoimet taulut"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Näytä avoimet taulut"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relaatiot"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Kyselyn tyyppi"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Tiedot"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10500,33 +10465,33 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Mukauta käynnistyssivua"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Tieto"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10534,18 +10499,18 @@ msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossapää- ja "
"alipalvelimena."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossapääpalvelimena."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena"
"b>."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10553,11 +10518,11 @@ msgstr ""
"Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Kahdennuksen tila"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10565,47 +10530,47 @@ msgstr ""
"Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-"
"palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Vastaanotettu"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Lähetetty"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Enim. yhtäaikaisia yhteyksiä"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Epäonnistuneet yritykset"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Keskeytetty"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "Tunnus"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komento"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10616,16 +10581,16 @@ msgstr ""
"\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa "
"transaktiokyselyjen tallentamiseen."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10637,11 +10602,11 @@ msgstr ""
"nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin "
"muistissa eikä levyllä."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10649,7 +10614,7 @@ msgstr ""
"Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut "
"kyselyjä suorittaessaan."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10657,7 +10622,7 @@ msgstr ""
"Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien "
"määrä (virheenä todennäköisesti päällekkäinen avain)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10665,23 +10630,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED -rivien kirjoituksia."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "FLUSH-kyselyjä suoritettu."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Sisäisten COMMIT-kyselyjen määrä."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10691,7 +10656,7 @@ msgstr ""
"tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. "
"discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10702,7 +10667,7 @@ msgstr ""
"läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen "
"col1:sen olevan indeksoitu sarake."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10710,7 +10675,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10720,7 +10685,7 @@ msgstr ""
"avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita "
"käyttämällä rajauksia tai jos suoritetaan indeksihaku."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10729,7 +10694,7 @@ msgstr ""
"avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC "
"-kyselyllä optimoimiseen."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10742,7 +10707,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:1337
+#: server_status.php:1340
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 "
@@ -10754,35 +10719,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Sisäisten ROLLBACK-kyselyjen määrä."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Taulun rivien päivityspyyntöjen määrä."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Kertoo tauluihin lisättyjen rivien määrän."
-#: server_status.php:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Vapaiden sivujen määrä."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10792,7 +10757,7 @@ msgstr ""
"parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden "
"välimuistia ei voida tyhjentää syystä tai toisesta."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10804,11 +10769,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Puskurivarannon kokonaiskoko sivuina."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10816,7 +10781,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10824,11 +10789,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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10836,7 +10801,7 @@ msgstr ""
"Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa "
"puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10850,55 +10815,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Fsync()-toimenpiteitä tähän mennessä."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Tähän mennessä luetun tiedon määrä tavuina."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan."
-#: server_status.php:1361
+#: server_status.php:1364
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:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10906,35 +10871,35 @@ msgstr ""
"Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin "
"tyhjentymistä jouduttiin odottamaan ennen jatkamista."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Lokitiedostojen fsync()-kirjoitusten määrä."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Lokitiedoston avointen fsync-synkronointien määrä."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Avoimet lokitiedostokirjoitukset."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Lokitiedostoon kirjoitettujen tavujen määrä."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Luotujen sivujen määrä."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10943,52 +10908,52 @@ msgstr ""
"arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen "
"koko tavuina."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Luettujen rivien määrä."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Kirjoitettujen sivujen määrä."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Tällä hetkellä odotettavien rivilukitusten määrä."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
"Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina."
-#: server_status.php:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB-tauluista poistettujen rivien määrä."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB-tauluihin lisättyjen rivien määrä."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB-taulusta luettujen rivien määrä."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB-taulun päivitettyjen rivien määrä."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10997,7 +10962,7 @@ msgstr ""
"muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto "
"tunnetaan yleisesti nimellä Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -11006,26 +10971,26 @@ msgstr ""
"avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan "
"käytössä."
-#: server_status.php:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Tuotavan tiedoston muoto"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -11036,27 +11001,27 @@ msgstr ""
"asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea "
"lausekkeella Key_reads / Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11067,18 +11032,18 @@ msgstr ""
"kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole "
"vielä koottu."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11086,39 +11051,39 @@ msgstr ""
"Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa "
"olla liian alhainen."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Avoinna olevien tiedostojen määrä."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Avoinna olevien taulujen määrä."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Kyselyvälimuistin vapaan muistin määrä."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Välimuistiosumien määrä."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Välimuistiin lisättyjen kyselyjen määrä."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11131,7 +11096,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11140,19 +11105,19 @@ msgstr ""
"tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne "
"query_cache_type-asetuksen takia)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Rekisteröityjen kyselyjen määrä välimuistissa."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11160,11 +11125,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11173,7 +11138,7 @@ msgstr ""
"rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa "
"huolella.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11181,17 +11146,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11199,13 +11164,13 @@ msgstr ""
"Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on "
"käynnistyksestään lähtien yrittänut suorittaa transaktioita."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11213,14 +11178,14 @@ msgstr ""
"Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin "
"slow_launch_time sekuntia."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11229,25 +11194,25 @@ msgstr ""
"Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, "
"sort_buffer-muuttujan arvoa voi suurentaa."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Lajiteltujen rivien määrä."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11259,7 +11224,7 @@ msgstr ""
"hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai "
"käyttää hyödyksi kahdennusta."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11269,11 +11234,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11285,74 +11250,73 @@ msgstr ""
"säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta "
"suorituskykyyn.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Seuranta ei ole käytössä."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Hereillä olevien säikeiden määrä."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Käynnistä"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Käytä indeksiä/indeksejä"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Päivitä"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR-tekstikentän sarakkeet"
-#: server_status.php:1624
+#: server_status.php:1627
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Virheiden hallinta:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
-#| msgid "Restore default value"
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Palauta oletusarvoon"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "Tiedot"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11361,7 +11325,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11369,18 +11333,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11388,11 +11352,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11400,97 +11364,97 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Tuhoa tietokanta"
-#: server_status.php:1677
+#: server_status.php:1680
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Näytä alipalvelimen tilan taulu"
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Valitse taulut"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Virheellinen taulun nimi"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Lisää uusi palvelin"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL-kyselyt"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Näytä tilastot"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Valitse taulut"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Kyselyn tyyppi"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -11498,7 +11462,7 @@ msgid_plural "%d seconds"
msgstr[0] "Sekunti"
msgstr[1] "Sekunti"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11635,7 +11599,7 @@ msgstr "Tämän istunnon arvo"
msgid "Global value"
msgstr "Globaali arvo"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Lataa koneelle"
@@ -11709,39 +11673,39 @@ msgstr "Palvelimia ei ole määritelty"
msgid "New server"
msgstr "Uusi palvelin"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Oletuskieli"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "anna käyttäjän valita"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ei mitään -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Oletuspalvelin"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Rivin loppu"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Näytä"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Lataa asetukset"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdminin verkkosivut"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Lahjoita"
@@ -12023,55 +11987,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Ei tietokantoja"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Selaa viitearvoja"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Haluatko varmasti "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Lisätyn rivin tunnus: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Näytetään PHP-koodina"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Näytetään SQL-kysely"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Tarkista SQL-lause"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-kyselyn tulos"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Luontiympäristö"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Tunniste"
@@ -12086,62 +12041,6 @@ msgstr "Taulun %1$s muuttaminen onnistui."
msgid "The columns have been moved successfully."
msgstr "Valitsemiesi käyttäjien poisto onnistui."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Pituudestaan johtuen tätä saraketta ei voine muokata "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binääritietoa - älä muokkaa"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Lisää uutena rivinä"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Näytetään SQL-kysely"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ja sen jälkeen"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Takaisin"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Lisää uusi rivi"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Palaa tälle sivulle"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Muokkaa seuraavaa riviä"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy "
-"siirtymään minne suuntaan tahansa."
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Aloita lisäys alusta %s rivillä"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12811,38 +12710,44 @@ msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
msgid "Create version"
msgstr "Luo versio"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Piilota hakusanat"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Näytettävien rivien enimmäismäärä"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Hallintakäyttäjä"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Palauta"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Hae teemoja lisää!"
@@ -13216,8 +13121,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13352,8 +13257,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14069,6 +13974,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Enim. yhtäaikaisia yhteyksiä"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Lähennä ja loitonna kaaviota hiiren rullalla."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Siirry eri kohtaan kaaviossa napsauttamalla ja raahaamalla hiirtä."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Merkkijonot muunnetaan kaaviota varten kokonaisluvuiksi"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14173,8 +14087,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
-#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta "
-#~ "%s?"
+#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %"
+#~ "s?"
#, fuzzy
#~ msgid "Unknown error while uploading."
@@ -14362,9 +14276,6 @@ msgstr "Enim. yhtäaikaisia yhteyksiä"
#~ msgid "No trigger with name %s found"
#~ msgstr "Kelvollista polkua teemalle %s ei löytynyt."
-#~ msgid "rows"
-#~ msgstr "Selaa"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "riviä alkaen rivistä"
diff --git a/po/fr.po b/po/fr.po
index c25bdd7e0e..931482410e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
-"PO-Revision-Date: 2012-05-11 18:22+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
+"PO-Revision-Date: 2012-05-25 18:45+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: none\n"
"Language: fr\n"
@@ -14,13 +14,13 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Tout afficher"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Tout afficher"
msgid "Page number:"
msgstr "Page n° : "
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"navigateur bloque les mises à jour entre fenêtres pour des raisons de "
"sécurité."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Rechercher"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Rechercher"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Exécuter"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nom de l'index"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Description"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Utiliser cette valeur"
@@ -123,12 +123,12 @@ msgstr "Commentaires sur la table"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Colonne"
@@ -137,6 +137,7 @@ msgstr "Colonne"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Colonne"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -154,12 +155,12 @@ msgstr "Type"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Commentaires"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Non"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Table"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Lignes"
@@ -409,28 +410,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Passer au %smode visuel%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Tri"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Croissant"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Décroissant"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Afficher"
@@ -451,8 +452,8 @@ msgid "Del"
msgstr "Effacer"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ou"
@@ -521,8 +522,8 @@ msgstr[0] "%1$s correspondance dans la table %2$s"
msgstr[1] "%1$s correspondances dans la table %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Afficher"
@@ -531,14 +532,14 @@ msgstr "Afficher"
msgid "Delete the matches for the %s table?"
msgstr "Supprimer de la table %s les occurences ?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Effacer"
@@ -606,14 +607,14 @@ msgstr "Le suivi est actif."
msgid "Tracking is not active."
msgstr "Le suivi n'est pas activé."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
-"%sdocumentation%s."
+"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
+"sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -622,7 +623,7 @@ msgstr "Vue"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Réplication"
@@ -636,20 +637,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Pour la sélection : "
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Tout cocher"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -661,27 +662,27 @@ msgstr "Cocher tables avec pertes"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Version imprimable"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Vider"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -707,11 +708,11 @@ msgstr "Analyser la table"
msgid "Add prefix to table"
msgstr "Ajouter un préfixe à la table"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Remplacer le préfixe de table"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copier la table avec un préfixe"
@@ -730,8 +731,8 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Base de données"
@@ -749,7 +750,7 @@ msgstr "Mis à jour"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "État"
@@ -851,45 +852,45 @@ msgstr "Utiliser OpenStreetMaps comme couche de base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Géométrie"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Point"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Point %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Ajouter un point"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Ligne"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Anneau extérieur"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Anneau intérieur"
@@ -897,15 +898,15 @@ msgstr "Anneau intérieur"
msgid "Add a linestring"
msgstr "Ajouter une ligne"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Ajouter un anneau intérieur"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygone"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Ajouter un polygone"
@@ -922,14 +923,14 @@ msgid ""
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
"string into the \"Value\" field"
msgstr ""
-"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne "
-"dans le champ «Valeur»"
+"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne dans "
+"le champ «Valeur»"
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -980,7 +981,7 @@ msgstr ""
"Chargement impossible des greffons d'importation, veuillez vérifier votre "
"installation !"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Signet %s créé"
@@ -1008,7 +1009,7 @@ msgstr ""
"limite de temps de PHP ne soit augmentée."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1025,7 +1026,7 @@ msgstr ""
"phpMyAdmin est plus convivial avec un navigateur supportant les cadres"
"b>."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "La commande «DROP DATABASE» est désactivée."
@@ -1034,7 +1035,7 @@ msgstr "La commande «DROP DATABASE» est désactivée."
msgid "Do you really want to execute \"%s\"?"
msgstr "Voulez-vous vraiment exécuter «%s» ?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
@@ -1120,21 +1121,21 @@ msgstr "Fermer"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modifier"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Graphique du trafic en temps réel"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Graphique des connexions et processus en temps réel"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Graphique des requêtes en temps réel"
@@ -1145,23 +1146,23 @@ msgstr "Données statiques"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Autres"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1181,7 +1182,7 @@ msgstr "Trafic du serveur (en Kio)"
msgid "Connections since last refresh"
msgstr "Connexions depuis le dernier rafraîchissement"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processus"
@@ -1199,7 +1200,7 @@ msgstr "Questions depuis le dernier rafraîchissement"
msgid "Questions (executed statements by the server)"
msgstr "Questions (énoncés exécutés par le serveur)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistiques sur les requêtes"
@@ -1244,14 +1245,14 @@ msgid "System swap"
msgstr "Zone d'échange"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "Mio"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "Kio"
@@ -1303,32 +1304,32 @@ msgstr "Octets envoyés"
msgid "Bytes received"
msgstr "Octets reçus"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Connexions"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "o"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "Gio"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "Tio"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "Pio"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "Eio"
@@ -1342,11 +1343,11 @@ msgstr "%d table(s)"
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Paramètres"
@@ -1367,10 +1368,10 @@ msgid "Please add at least one variable to the series"
msgstr "Veuillez ajouter au moins une variable à la série"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Aucune"
@@ -1470,7 +1471,7 @@ msgstr "Changer les paramètres"
msgid "Current settings"
msgstr "Paramètres courants"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Titre du graphique"
@@ -1554,9 +1555,9 @@ msgstr "Analyse en cours..."
msgid "Explain output"
msgstr "Expliquer les résultats"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Moment"
@@ -1653,7 +1654,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importer"
@@ -1773,15 +1774,15 @@ msgstr "Cacher les index"
msgid "Show indexes"
msgstr "Montrer les index"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Vérification des clés étrangères : "
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Activée)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Désactivée)"
@@ -1848,7 +1849,7 @@ msgstr "Montrer zone SQL"
msgid "No rows selected"
msgstr "Aucune ligne n'a été sélectionnée"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Modifier"
@@ -1857,17 +1858,18 @@ msgstr "Modifier"
msgid "Query execution time"
msgstr "Durée d'exécution de la requête"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d n'est pas un numéro de ligne valable."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Sauvegarder"
@@ -1892,81 +1894,70 @@ msgid "Hovering over a point will show its label."
msgstr "Survoler un point montrera sa description."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr ""
-"Utilisez la molette de la souris pour effectuer un zoom avant / arrière."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr "Pour faire un zoom avant, sélectionnez une section avec la souris."
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-"Cliquez et faites glisser la souris pour vous déplacer dans la série de "
-"points."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Cliquez sur un point pour visualiser et possiblement éditer la ligne de "
"données."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"L'image peut être redimensionnée en faisant glisser le coin inférieur droit."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Les chaînes sont converties en nombres entiers aux fins d'affichage"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Sélectionnez deux colonnes"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Sélectionnez deux colonnes différentes"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Opérations sur les résultats"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Données reliées à ce point"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copier"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Ajouter des colonnes"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Sélectionnez la clé référencée"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Choisissez la clé étrangère"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Veuillez choisir la clé primaire ou un index unique"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Colonne descriptive"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1974,15 +1965,15 @@ msgstr ""
"Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les "
"sauvegardez pas. Voulez-vous continuer ?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Ajouter une option pour la colonne "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Appuyez sur la touche d'échappement pour annuler l'édition"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1990,27 +1981,27 @@ msgstr ""
"Vous avez modifier des données non encore sauvegardées, êtes vous sûr de "
"vouloir quitter cette page avant de sauvegarder ?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Faire glisser pour réordonner"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Cliquer pour trier"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Cliquer pour marquer/enlever les marques"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Double-cliquez pour copier le nom de la colonne"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Cliquer sur la flèche pour gérer l'affichage des colonnes"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2019,48 +2010,48 @@ msgstr ""
"cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne "
"plus fonctionner après prise en compte de la modification."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Vous pouvez aussi modifier la plupart des colonnes en cliquant "
"directement sur leur contenu."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Suivre le lien"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copier le nom de la colonne"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Faites un clic-droit sur le nom de la colonne pour le copier vers le presse-"
"papier."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Afficher les lignes correspondantes"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Générer un mot de passe"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Générer"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Modifier le mot de passe"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "plus"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2070,266 +2061,266 @@ msgstr ""
"une mise à niveau. La version la plus récente est %s, publiée le %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", dernière version stable : "
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "à jour"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Fermer"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Précédent"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Janvier"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Février"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Mars"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Avril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juin"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juillet"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Août"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Septembre"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Octobre"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembre"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Seconde"
@@ -2380,19 +2371,19 @@ msgstr "Caractères imprévus à la ligne %s"
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais "
-"\"%2$s\" a été trouvé"
+"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais \"%2"
+"$s\" a été trouvé"
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "par seconde"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "par minute"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "par heure"
@@ -2528,15 +2519,15 @@ msgstr ""
msgid "Databases"
msgstr "Bases de données"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveur"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2548,20 +2539,20 @@ msgid "Structure"
msgstr "Structure"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insérer"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Opérations"
@@ -2619,12 +2610,12 @@ msgstr "Utilisateurs"
msgid "Synchronize"
msgstr "Synchroniser"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Log binaire"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variables"
@@ -2641,8 +2632,9 @@ msgid "Engines"
msgstr "Moteurs"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erreur"
@@ -2761,35 +2753,35 @@ msgstr ""
"sera pas persistant après actualisation de cette page. Merci de vérifier si "
"la structure de la table a changé."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Chemin des images inexistant pour le thème %s !"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Prévisualisation non disponible."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "utiliser celui-ci"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Thème par défaut %s inexistant !"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Thème %s inexistant !"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Chemin non trouvé pour le thème %s !"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Thème"
@@ -2797,16 +2789,16 @@ msgstr "Thème"
msgid ""
"A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255"
msgstr ""
-"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de "
-"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255"
+"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -"
+"128 à 127. Pour les nombres sans signe, c'est de 0 à 255"
#: libraries/Types.class.php:291
msgid ""
"A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to "
"65,535"
msgstr ""
-"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de "
-"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535"
+"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -"
+"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535"
#: libraries/Types.class.php:293
msgid ""
@@ -2845,16 +2837,16 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"Un petit nombre en virgule flottante, la fourchette des valeurs est "
-"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38"
+"Un petit nombre en virgule flottante, la fourchette des valeurs est -"
+"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Un nombre en virgule flottante double-précision, la fourchette des valeurs "
@@ -2904,9 +2896,9 @@ msgid ""
"A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, "
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
-"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à "
-"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de "
-"référence («1970-01-01 00:00:00» UTC)"
+"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-"
+"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence "
+"(«1970-01-01 00:00:00» UTC)"
#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
@@ -3161,8 +3153,8 @@ msgstr "Bienvenue dans %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@@ -3270,7 +3262,7 @@ msgstr "partagé"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tables"
@@ -3321,11 +3313,11 @@ msgstr "vulnérabilité possible"
msgid "numeric key detected"
msgstr "Clé numérique détectée"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Impossible de lire le fichier de configuration"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3333,13 +3325,13 @@ msgstr ""
"Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez "
"vérifier si une erreur s'affiche plus bas."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Chargement de la configuration par défaut impossible depuis %1$s"
# OK
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3347,24 +3339,24 @@ msgstr ""
"Le paramètre [code]$cfg['PmaAbsoluteUri'][/code] DOIT être renseigné dans "
"votre fichier de configuration !"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Indice de serveur invalide: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre "
"configuration."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
"Le fichier de configuration contient un type d'authentification invalide : "
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
@@ -3399,8 +3391,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "fr"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Requête SQL"
@@ -3438,7 +3430,7 @@ msgid "Create PHP Code"
msgstr "Créer source PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Actualiser"
@@ -3459,96 +3451,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En ligne"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilage"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dim"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%A %d %B %Y à %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Paramètre manquant : "
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Début"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Précédent"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Suivant"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Aller à la base de données "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Cliquer pour basculer"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Parcourir : "
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Le répertoire de transfert est inaccessible"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Aucun fichier n'est disponible pour le transfert"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Exécuter"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimer"
@@ -3721,9 +3713,9 @@ msgstr "Ramener la valeur par défaut"
msgid "Allow users to customize this value"
msgstr "Permettre aux utilisateurs de personnaliser cette valeur"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Réinitialiser"
@@ -3888,7 +3880,7 @@ msgid "Compress on the fly"
msgstr "Compression à la volée"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Fichier de configuration"
@@ -3948,7 +3940,7 @@ msgstr "Cacher les actions dans la structure de table"
msgid "Show binary contents as HEX by default"
msgstr "Montrer par défaut le contenu binaire en hexadécimal"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Montrer le contenu binaire en hexadécimal"
@@ -4677,10 +4669,9 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
#: libraries/config/messages.inc.php:281
-#, fuzzy
#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
-msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
+msgstr "Nombre minimum de bases de données pour activer le filtre"
#: libraries/config/messages.inc.php:282
msgid "String that separates databases into different tree levels"
@@ -5861,7 +5852,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Active le menu Développeur dans les paramètres"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Vérifier la présence d'une nouvelle version"
@@ -6002,7 +5993,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP."
msgid "possible deep recursion attack"
msgstr "possible attaque récursive"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6010,20 +6001,20 @@ msgstr ""
"Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL "
"local n'est pas correctement configurée)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Le serveur ne répond pas."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Veuillez vérifier les privilèges du répertoire contenant la base de données."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Détails..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6184,8 +6175,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@@ -6380,48 +6371,52 @@ msgstr "Options spécifiques au format : "
msgid "Language"
msgstr "Langue"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Sauvegarder les données modifiées"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Restaurer l'ordre des colonnes"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Ligne de départ"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Nombre de lignes"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Mode"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (en-têtes pivotés)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr "En-têtes à intervalle de %s lignes"
+#: libraries/display_tbl.lib.php:629
+#| msgid "Headers every %s rows"
+msgid "Headers every"
+msgstr "En-têtes à chaque"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Afficher"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Trier sur l'index"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6439,89 +6434,89 @@ msgstr "Trier sur l'index"
msgid "Options"
msgstr "Options"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Textes réduits"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Textes complets"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relations : clés"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relations : colonnes descriptives"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Montrer le contenu binaire"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Montrer le contenu BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Masquer les transformations"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Well Known Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "La ligne a été effacée"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Supprimer"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "dans la requête"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Affichage des lignes"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Traitement en %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Opérations sur les résultats de la requête"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Version imprimable (avec textes complets)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Afficher le graphique"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualiser les données GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Créer une vue"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Lien absent"
@@ -6569,7 +6564,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mémoire-tampon"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "État InnoDB"
@@ -6868,8 +6863,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@@ -6992,12 +6987,12 @@ msgstr "Afficher les types MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Client"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Généré le"
@@ -7221,8 +7216,8 @@ msgstr "Données non disponibles pour visualisation GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Tentative d'écrasement de GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a retourné un résultat vide (aucune ligne)."
@@ -7400,6 +7395,100 @@ msgstr "Mode de compatibilité SQL : "
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Fonction"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Cacher"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binaire"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+"Il est possible que cette colonne ne soit pas éditable en raison "
+"de sa longueur"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binaire - ne pas éditer"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "répertoire de transfert du serveur web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Modifier/Insérer"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Continuer l'insertion avec %s lignes"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "et ensuite"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Sauvegarder une nouvelle ligne"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Afficher l'énoncé d'insertion"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Retourner à la page précédente"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Insérer une nouvelle ligne"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Demeurer sur cette page"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Modifier la ligne suivante"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches "
+"pour aller n'importe où"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valeur"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Affichage de la requête SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Identifiant de la ligne insérée : %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7410,32 +7499,32 @@ msgstr "Aucune"
msgid "Convert to Kana"
msgstr "Conversion en kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Depuis"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Vers"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Exécuter"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Ajouter un préfixe de table"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Ajouter un préfixe"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Voulez-vous vraiment exécuter la requête suivante ?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Pas de modifications"
@@ -7443,11 +7532,6 @@ msgstr "Pas de modifications"
msgid "Charset"
msgstr "Jeu de caractères"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binaire"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgare"
@@ -7783,18 +7867,10 @@ msgid "Slave status"
msgstr "État de l'esclave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variable"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valeur"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID du serveur"
@@ -8123,11 +8199,6 @@ msgstr "Exécuter la procédure"
msgid "Routine parameters"
msgstr "Paramètres de procédure"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Fonction"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Désolé, il a été impossible de restaurer le déclencheur."
@@ -8452,7 +8523,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Exécuter une ou des requêtes SQL sur la base %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Vider"
@@ -8460,11 +8531,11 @@ msgstr "Vider"
msgid "Columns"
msgstr "Colonnes"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Conserver cette requête SQL dans les signets"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Signet visible pour les autres utilisateurs"
@@ -8488,10 +8559,6 @@ msgstr "Afficher à nouveau la requête après exécution"
msgid "View only"
msgstr "Voir uniquement"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "répertoire de transfert du serveur web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8561,8 +8628,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
-"PHP nécessaires ont bien été installées tel que décrit dans la "
-"%sdocumentation%s."
+"PHP nécessaires ont bien été installées tel que décrit dans la %"
+"sdocumentation%s."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -8688,10 +8755,6 @@ msgstr "Opérateur"
msgid "Table Search"
msgstr "Recherche dans la table"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Modifier/Insérer"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8916,7 +8979,7 @@ msgstr "Version du protocole"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Utilisateur"
@@ -9059,10 +9122,9 @@ msgid "No databases"
msgstr "Aucune base de données"
#: navigation.php:209
-#, fuzzy
#| msgid "Filter tables by name"
msgid "Filter databases by name"
-msgstr "Filtrer par nom de table"
+msgstr "Filtrer par nom de base de données"
#: navigation.php:272
msgid "Filter tables by name"
@@ -9141,10 +9203,6 @@ msgstr "Cacher/montrer tout"
msgid "Hide/Show Tables with no relation"
msgstr "Cacher/montrer les tables sans liens"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Cacher"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Nombre de tables"
@@ -9343,17 +9401,17 @@ msgstr "Le fichier n'existe pas"
msgid "Select binary log to view"
msgstr "Sélectionnez le log binaire à consulter"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Fichiers"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Afficher les requêtes tronquées"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Afficher les requêtes complètes"
@@ -9804,8 +9862,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@@ -9930,7 +9988,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Montrer l'état du maître"
@@ -10081,127 +10139,127 @@ msgstr ""
"Ce serveur n'est pas configuré comme esclave dans un processus de "
"réplication. Désirez-vous le configurer ?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Le processus %s a été éliminé."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Gestionnaire"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Cache des requêtes"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Fils d'exécution"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Données temporaires"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Insertions avec délais"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Cache des clés"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Jointures"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Mécanisme de tri"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordonnateur des transactions"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Fermer toutes les tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Montrer les tables ouvertes"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Montrer les serveurs esclaves"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Montrer l'état des serveurs esclaves"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Vider la cache des requêtes"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informations sur le serveur"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Toutes les variables d'état"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Surveillance"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Conseiller"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Taux de rafraîchissement : "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtres"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Contenant le mot : "
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Afficher uniquement les valeurs d'alerte"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrer par catégorie..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Afficher les valeurs non formattées"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Liens connexes : "
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Lancer l'analyseur"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Consignes"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10209,7 +10267,7 @@ msgstr ""
"Le conseiller peut donner des recommandations au sujet des variables de "
"serveur."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10218,7 +10276,7 @@ msgstr ""
"Veuillez noter que ce système se base sur de simples calculs et des règles "
"de base qui ne s'appliquent pas nécessairement à votre serveur."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10228,7 +10286,7 @@ msgstr ""
"(lisez la documentation) et de savoir comment défaire le changement. Un "
"réglage incorrect peut affecter négativement la performance."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10239,31 +10297,31 @@ msgstr ""
"produite."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions depuis le démarrage : %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Information"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Trafic réseau depuis le démarrage : %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ce serveur MySQL fonctionne depuis %1$s. Il a démarré le %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10271,19 +10329,19 @@ msgstr ""
"Ce serveur est un serveur maître et esclave dans le processus "
"de réplication."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10291,11 +10349,11 @@ msgstr ""
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
"consultez la section de réplication."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "État de la réplication"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10304,35 +10362,35 @@ msgstr ""
"dépassée, auquel cas les statistiques rapportées par MySQL peuvent être "
"inexactes."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Reçu"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Envoyé"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. de connexions simultanées"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Tentatives échouées"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Arrêts prématurés"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Commande"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10340,11 +10398,11 @@ msgstr ""
"Le nombre de connexions avortées en raison d'une interruption du client sans "
"fermeture adéquate de la connexion."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10354,18 +10412,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
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:1322
+#: server_status.php:1325
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 "
@@ -10378,11 +10436,11 @@ msgstr ""
"tmp_table_size afin que les tables temporaires soient maintenues en mémoire "
"au lieu d'être sur disque."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Le nombre de fichiers temporaires créés par mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10390,7 +10448,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10398,7 +10456,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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10406,23 +10464,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Le nombre de lignes écrites via INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Le nombre de commandes FLUSH exécutées."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Le nombre de commandes COMMIT internes."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10432,7 +10490,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10443,7 +10501,7 @@ msgstr ""
"d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une "
"colonne indexée."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10451,7 +10509,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10461,7 +10519,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10469,7 +10527,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10482,7 +10540,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:1337
+#: server_status.php:1340
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 "
@@ -10494,35 +10552,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Le nombre d'énoncés ROLLBACK internes."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Le nombre de pages contenant des données."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Le nombre de pages contenant des données «dirty»."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Le nombre de pages libres."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10532,7 +10590,7 @@ msgstr ""
"train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une "
"autre raison."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10544,11 +10602,11 @@ msgstr ""
"comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Taille totale de la réserve, en pages."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10557,7 +10615,7 @@ msgstr ""
"lorsqu'une requête doit balayer une large portion de table en ordre "
"discontinu."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10565,11 +10623,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10577,7 +10635,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:1352
+#: server_status.php:1355
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 "
@@ -10591,51 +10649,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Le nombre d'écritures faites dans la réserve InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Le nombre d'opérations fsync() faites jusqu'à présent."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Le nombre d'opérations fsync() actuellement en attente."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Le nombre actuel de lectures en attente."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Le nombre actuel d'écritures en attente."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "La quantité d'octets lus jusqu'à présent."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Le nombre total de lectures de données."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Le nombre total d'écritures de données."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "La quantité d'octets écrits jusqu'à présent."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Le nombre d'opérations «doublewrite» effectuées."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10643,35 +10701,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Le nombre de requêtes d'écritures sur le fichier témoin."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Le nombre d'écritures physiques au fichier témoin."
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Le nombre d'écritures du fichier témoin en attente."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Le nombre d'octets écrits sur le fichier témoin."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Le nombre de pages créées."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10680,51 +10738,51 @@ msgstr ""
"valeurs sont comptées par page; la taille de page leur permet d'être "
"facilement converties en octets."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Le nombre de pages lues."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Le nombre de pages écrites."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Le nombre de verrous d'enregistrements actuellement en attente."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Le nombre de lignes supprimées des tables InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Le nombre de lignes insérées dans des tables InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Le nombre de lignes lues dans des tables InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Le nombre de lignes mises à jour dans des tables InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10733,7 +10791,7 @@ msgstr ""
"pas encore transférés sur disque. Anciennement connu sous le nom "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10742,7 +10800,7 @@ msgstr ""
"cette valeur pour déterminer la proportion de la cache de clés qui est "
"utilisée."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10752,15 +10810,15 @@ msgstr ""
"maximum du nombre de blocs qui ont été utilisés en même temps dans le cache "
"de clés."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10771,7 +10829,7 @@ msgstr ""
"petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read "
"requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10779,22 +10837,22 @@ msgstr ""
"Échecs dans la cache de clés, en calculant le taux de lectures physiques "
"comparé aux requêtes de lecture (valeur calculée)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur "
"calculée)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10805,18 +10863,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:1395
+#: server_status.php:1398
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:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10824,19 +10882,19 @@ msgstr ""
"Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table "
"est probablement trop petite."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Le nombre de fichiers qui sont ouverts."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Le nombre de tables qui sont ouvertes."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10846,19 +10904,19 @@ msgstr ""
"peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la "
"commande FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
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:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Le nombre de succès dans la cache."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Le nombre de requêtes ajoutées à la cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10870,7 +10928,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10878,19 +10936,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Le nombre de requêtes enregistrées dans la cache."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
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:1410
+#: server_status.php:1413
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."
@@ -10898,13 +10956,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10913,7 +10971,7 @@ msgstr ""
"ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos "
"tables.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10921,19 +10979,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10941,11 +10999,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10953,14 +11011,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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10969,23 +11027,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Le nombre de tri effectués avec des plages."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Le nombre de lignes triées."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10997,7 +11055,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11007,11 +11065,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Le nombre de connexions ouvertes actuellement."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11024,47 +11082,47 @@ msgstr ""
"perceptible de la performance si votre serveur gère correctement les fils "
"d'exécution.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Le nombre de fils d'exécution non suspendus."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Démarrer la surveillance"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Consignes / réglages"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Terminé de modifier les graphiques"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Ajouter un graphique"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Modifier les graphiques"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Taux de rafraîchissement"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Colonnes du graphique"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Disposition du graphique"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11072,15 +11130,15 @@ msgstr ""
"La disposition du graphique est stockée dans le navigateur. Vous pouvez "
"vouloir l'exporter si vous avez une configuration complexe."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Ramener la valeur par défaut"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Consignes pour la surveillance"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11094,7 +11152,7 @@ msgstr ""
"slow_query_log ou general_log. Cependant, general_log produit beaucoup de "
"données et augmente jusqu'à 15% la charge du serveur"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11106,11 +11164,11 @@ msgstr ""
"est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même "
"utiliser les graphiques de serveur."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Utilisation de la surveillance : "
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11120,7 +11178,7 @@ msgstr ""
"pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous "
"«Paramètres», ou supprimer tout graphique via l'cône de rouage."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11133,11 +11191,11 @@ msgstr ""
"statistiques sous forme de requêtes groupées, par la suite vous pouvez "
"cliquer sur tout énoncé SELECT pour une analyse plus poussée."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Note : "
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11150,87 +11208,87 @@ msgstr ""
"portion de temps et de désactiver general_log puis de vider la table "
"correspondante lorsque la surveillance n'est plus requise."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Graphique prédéfini"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variables d'état"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Choisissez les séries : "
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Couramment surveillés"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "ou entrez un nom de variable : "
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Afficher en tant que valeur différentielle"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Appliquer un diviseur"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Ajouter l'unité aux valeurs de données"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Ajouter cette série"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Effacer la série"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Séries dans le graphique : "
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Statistiques des journaux"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Sélectionnez un intervalle de temps : "
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Enlever les données variables des énoncés INSERT pour un meilleur groupement"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Choisissez depuis quel journal les statistiques doivent être générées."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Les résultats sont regroupés par le texte des requêtes."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analyseur de requêtes"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d seconde"
msgstr[1] "%d secondes"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11364,7 +11422,7 @@ msgstr "Valeur pour la session"
msgid "Global value"
msgstr "Valeur globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Télécharger"
@@ -11438,39 +11496,39 @@ msgstr "Aucun serveur n'est configuré"
msgid "New server"
msgstr "Nouveau serveur"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Langue par défaut"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "laisser l'utilisateur choisir"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- aucun -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Serveur par défaut"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Fin de ligne"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Afficher"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Charger"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Site de phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Faire un don"
@@ -11550,8 +11608,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
-"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
-"%s."
+"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
+"s."
#: setup/lib/index.lib.php:296
msgid ""
@@ -11603,8 +11661,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
-"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
-"%d)."
+"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
+"d)."
#: setup/lib/index.lib.php:306
#, php-format
@@ -11623,8 +11681,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
-"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
-"%s doit avoir une valeur plus petite ou égale à celui-ci."
+"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
+"s doit avoir une valeur plus petite ou égale à celui-ci."
#: setup/lib/index.lib.php:310
#, php-format
@@ -11634,8 +11692,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
-"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
+"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
+"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
@@ -11699,51 +11757,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Données incorrectes"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Afficher les valeurs de la table liée"
-#: sql.php:255
+#: sql.php:253
#, 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:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Voulez-vous vraiment exécuter la requête suivante ?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Identifiant de la ligne insérée : %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Affichage du code PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Affichage de la requête SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL validé"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Résultat de la requête SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Généré par"
-#: sql.php:1058
+#: sql.php:1055
#, 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:1090
+#: sql.php:1087
msgid "Label"
msgstr "Intitulé"
@@ -11756,60 +11805,6 @@ msgstr "La table %1$s a été modifiée avec succès"
msgid "The columns have been moved successfully."
msgstr "Les colonnes ont été déplacées avec succès."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-"Il est possible que cette colonne ne soit pas éditable en raison "
-"de sa longueur"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binaire - ne pas éditer"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Sauvegarder une nouvelle ligne"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Afficher l'énoncé d'insertion"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "et ensuite"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Retourner à la page précédente"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Insérer une nouvelle ligne"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Demeurer sur cette page"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Modifier la ligne suivante"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches "
-"pour aller n'importe où"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Continuer l'insertion avec %s lignes"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12397,32 +12392,37 @@ msgstr "Suivre les énoncés de manipulation de données suivants : "
msgid "Create version"
msgstr "Créer une version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Faites une recherche «par valeur» (passepartout: «% ») sur deux colonnes "
"différentes"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Critères de recherche supplémentaires"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Utiliser cette colonne pour décrire chaque point"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Nombre maximum de lignes de données à utiliser pour le graphique"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Afficher/Modifier les points"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Consignes d'utilisation"
+#: tbl_zoom_select.php:432
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Réinitialiser le zoom"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Obtenez d'autres thèmes !"
@@ -12816,8 +12816,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la "
"mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%"
@@ -12888,9 +12888,9 @@ msgid ""
"The ratio of removed queries to inserted queries is %s%%. The lower this "
"value is, the better (This rules firing limit: 0.1%%)"
msgstr ""
-"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s"
-"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette "
-"règle: 0.1%%)"
+"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%"
+"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: "
+"0.1%%)"
#: libraries/advisory_rules.txt:188
msgid "Query cache max size"
@@ -12969,8 +12969,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% de tous les tris causent la création de tables temporaires, cette "
"valeur devrait être sous les 10%%."
@@ -13501,8 +13501,8 @@ msgstr ""
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
-"Max_used_connections est à %s%% de max_connections, devrait être sous les "
-"80%%"
+"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%"
+"%"
#: libraries/advisory_rules.txt:392
msgid "Percentage of aborted connections"
@@ -13741,6 +13741,18 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Le paramètre concurrent_insert a une valeur de 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Utilisez la molette de la souris pour effectuer un zoom avant / arrière."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr ""
+#~ "Cliquez et faites glisser la souris pour vous déplacer dans la série de "
+#~ "points."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Les chaînes sont converties en nombres entiers aux fins d'affichage"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14216,9 +14228,6 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Déclencheur %s non trouvé"
-#~ msgid "rows"
-#~ msgstr "Afficher"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "ligne(s) à partir de la ligne n°"
diff --git a/po/gl.po b/po/gl.po
index 4580665fb1..1e2d335638 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-17 16:56+0200\n"
"Last-Translator: Julio Guerra \n"
"Language-Team: Independant\n"
-"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.9\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostrar todo"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostrar todo"
msgid "Page number:"
msgstr "Número de páxina:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"xanela pai ou porque as opcións de seguranza do seu navegador están "
"bloqueando as actualizacións entre xanelas."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Buscar"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Buscar"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Ir"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nome da chave"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descrición"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Usar este valor"
@@ -122,12 +122,12 @@ msgstr "Comentarios da táboa"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Columna"
@@ -136,6 +136,7 @@ msgstr "Columna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Columna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -153,12 +154,12 @@ msgstr "Tipo"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulo"
@@ -197,13 +198,13 @@ msgstr "Comentarios"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Non"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Táboa"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Filas"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Cambiar ao %sconstrutor visual%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostrar"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Eliminar"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ou"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s ocorrencia dentro da táboa %2$s"
msgstr[1] "%1$s ocorrencias dentro da táboa %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Visualizar"
@@ -530,14 +531,14 @@ msgstr "Visualizar"
msgid "Delete the matches for the %s table?"
msgstr "Eliminar as coincidencias para a táboa %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Eliminar"
@@ -605,14 +606,14 @@ msgstr "O seguemento está activado."
msgid "Tracking is not active."
msgstr "O seguemento non está activado."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
-"%s."
+"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
+"s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -621,7 +622,7 @@ msgstr "Vista"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicación"
@@ -635,20 +636,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Cos marcados:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Marcalos todos"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Exceso na comprobación"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualización previa da impresión"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Borrar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analizar a táboa"
msgid "Add prefix to table"
msgstr "Engaidr prefixo á táboa"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Substituír o prefixo da táboa"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copiar a táboa con prefixo"
@@ -729,8 +730,8 @@ msgstr "Táboas seguidas"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Base de datos"
@@ -748,7 +749,7 @@ msgstr "Actualizada"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Estado"
@@ -848,45 +849,45 @@ msgstr "Utilizar OpenStreetMaps como Capa Base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Xeometría"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punto"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punto %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Engadir un punto"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Cadea de liñas"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Círculo externo"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Círculo interno"
@@ -894,15 +895,15 @@ msgstr "Círculo interno"
msgid "Add a linestring"
msgstr "Engadir unha cadea de liñas"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Engadir un círculo interno"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polígono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Engadir un polígono"
@@ -925,11 +926,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
-"%sdocumentación%s para averiguar como evitar este límite."
+"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
+"sdocumentación%s para averiguar como evitar este límite."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -975,7 +976,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Non foi posíbel importar as extensións - Comprobe a instalación!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Creouse o marcador %s"
@@ -1003,7 +1004,7 @@ msgstr ""
"non ser que lle incrementen os limites de tempo de php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1018,7 +1019,7 @@ msgstr "Voltar"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Non se permiten as ordes \"DROP DATABASE\"."
@@ -1027,7 +1028,7 @@ msgstr "Non se permiten as ordes \"DROP DATABASE\"."
msgid "Do you really want to execute \"%s\"?"
msgstr "Seguro que quere executar \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!"
@@ -1114,21 +1115,21 @@ msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modificar"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Grafico de trafico en directo"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Gráfica conexións/procesos en directo"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Gráfico de pesquisas en directo"
@@ -1139,23 +1140,23 @@ msgstr "Datos estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Outro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1175,7 +1176,7 @@ msgstr "Tráfico do servidor (en KiB)"
msgid "Connections since last refresh"
msgstr "Conexións dende o último refresco"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesos"
@@ -1193,7 +1194,7 @@ msgstr "Preguntas dende o último refresco"
msgid "Questions (executed statements by the server)"
msgstr "Preguntas (sentencias executadas polo servidor)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Estadísticas das pesquisas"
@@ -1234,14 +1235,14 @@ msgid "System swap"
msgstr "Arquivo de intercambio do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1293,32 +1294,32 @@ msgstr "Bytes enviados"
msgid "Bytes received"
msgstr "Bytes recibidos"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Conexións"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1332,11 +1333,11 @@ msgstr "%d táboa(s)"
msgid "Questions"
msgstr "Preguntas"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tráfico"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Configuración"
@@ -1357,10 +1358,10 @@ msgid "Please add at least one variable to the series"
msgstr "Por favor engada polo menos unha variable á serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ningunha"
@@ -1460,7 +1461,7 @@ msgstr "Cambiar configuración"
msgid "Current settings"
msgstr "Configuración actual"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Título do gráfico"
@@ -1541,9 +1542,9 @@ msgstr "Analizando..."
msgid "Explain output"
msgstr "Explicar saída"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tempo"
@@ -1638,7 +1639,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importar"
@@ -1762,15 +1763,15 @@ msgstr "Ocultar índices"
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Comprobación da chave externa:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Activado)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Desactivado)"
@@ -1837,7 +1838,7 @@ msgstr "Mostrar a caixa das pesquisas"
msgid "No rows selected"
msgstr "Non hai ningunha fileira seleccionada"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Mudar"
@@ -1846,17 +1847,18 @@ msgstr "Mudar"
msgid "Query execution time"
msgstr "Tempo de execución da pesquisa"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d non é un número de fileira válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Gardar"
@@ -1881,158 +1883,150 @@ msgid "Hovering over a point will show its label."
msgstr "Situar o rato sobre o punto mostrará a súa etiqueta."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Use a roda do rato para acercar ou alonxar a gráfica."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Prema e arrastre o rato para navegar na gráfica ."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Seleccionar duas columnas"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Seleccionar duas columnas diferentes"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "resultados da pesquisa"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Contido do punto de datos"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copiar"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Engadir columnas"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Seleccionar a chave referida"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Escoller unha chave externa"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Escolla a chave primaria ou unha chave única"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Escolla a columna a mostrar"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Engadir unha opción para a columna "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Pulse escape para cancelar a edición"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Arrastre para reordear"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Prema para ordear"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Prema para marcar/desmarcar"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ir á ligazón"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copiar nome da columna"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Mostrar fila(s) de datos"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Xerar contrasinal"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Xerar"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Cambiar contrasinal"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Máis"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2042,266 +2036,266 @@ msgstr ""
"actualizala. A versión máis recente é %s, publicada o %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ",última versión estable:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "actualizada"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Feito"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hoxe"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Xaneiro"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Febreiro"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Marzo"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Abril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maio"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Xuño"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Xullo"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agosto"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Setembro"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Outubro"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembro"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Decembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Luns"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Martes"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Mércores"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Xoves"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Venres"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "X"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sm"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Segundo"
@@ -2356,16 +2350,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "por segundo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "por minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "por hora"
@@ -2496,15 +2490,15 @@ msgstr ""
msgid "Databases"
msgstr "Bases de datos"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2516,20 +2510,20 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacións"
@@ -2587,12 +2581,12 @@ msgstr "Usuarios"
msgid "Synchronize"
msgstr "Sincronizar"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Ficheiro de rexistro binario"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variábeis"
@@ -2609,8 +2603,9 @@ msgid "Engines"
msgstr "Motores"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Houbo un erro"
@@ -2728,35 +2723,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Non hai un camiño válido de imaxe para o tema %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Non se dispón de previsualización."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "cólleo"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Non se atopou o tema por omisión %s!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Non se atopou o tema %s!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
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:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2797,14 +2792,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3064,8 +3059,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@@ -3174,7 +3169,7 @@ msgstr "compartida"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Táboas"
@@ -3225,11 +3220,11 @@ msgstr "posíbel vulnerabilidade (exploit)"
msgid "numeric key detected"
msgstr "detectouse unha tecla numérica"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Erro o ler o arquivo de configuración"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3237,12 +3232,12 @@ msgstr ""
"Esto normalmente significa que hai unha erro na sintaxe, por favor comprobe "
"calquera erro mostrado debaixo."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Non se puido cargar a configuración predeterminada dende: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3250,22 +3245,22 @@ msgstr ""
"A directiva [code]$cfg['PmaAbsoluteUri'][/code] DEBE estar asignada no seu "
"ficheiro de configuración!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"O nome de servidor non é válido para o servidor %1$s. Revise a configuración."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Na configuración indicouse un método de autenticación que non válido::"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Debería actualizar a %s %s ou posterior."
@@ -3300,8 +3295,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "orde SQL"
@@ -3339,7 +3334,7 @@ msgid "Create PHP Code"
msgstr "Crear código PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Refrescar"
@@ -3360,95 +3355,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "En liña"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Análise do desempeño"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Do"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d de %B de %Y ás %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parámetro que falta:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Inicio"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Fin"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar à base de datos "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Prema para trocar"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Examine o seu computador:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Seleccionar directorio de subida no servidor web %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Non hai arquivos para subir"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimir"
@@ -3620,9 +3615,9 @@ msgstr "Volver ao valor por omisión"
msgid "Allow users to customize this value"
msgstr "Permitir aos usuarios personalizar este valor"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reiniciar"
@@ -3779,7 +3774,7 @@ msgid "Compress on the fly"
msgstr "Comprimir ao voo"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Ficheiro de configuración"
@@ -3841,7 +3836,7 @@ msgstr "Propor unha estrutura para a táboa"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar os contidos binarios como HEX de forma predeterminada"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostrar o contido binario como HEX"
@@ -5724,7 +5719,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Habilitar o separador de desenvolvemento na configuración"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Comprobar cal é a última versión"
@@ -5872,7 +5867,7 @@ msgstr "Falta a extensión %s. Por favor comprobe a configuración do PHP."
msgid "possible deep recursion attack"
msgstr "posible ataque deep recursion"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5880,20 +5875,20 @@ msgstr ""
"O servidor non responde (ou o socket local do servidor non se configurou "
"correctamente)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "O servidor non responde."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor comprobe os privilexios do directorio que contén a base de datos."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalles..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6053,8 +6048,8 @@ msgstr ", @TABLE@ será o nome da táboa"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de tempo. Produciranse transformacións en "
@@ -6248,48 +6243,53 @@ msgstr "Opcións específicas do formato:"
msgid "Language"
msgstr "Lingua"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Gardar datos editados"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Restaurar orde das columnas"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Fila de comezo"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Número de fileiras"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Modo"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabezallos rotados)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Cabeceiras cada %s filas"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Visualizar"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ordenar pola chave"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6307,89 +6307,89 @@ msgstr "Ordenar pola chave"
msgid "Options"
msgstr "Opcións"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Textos parciais"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Chave relacional"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Mostrar columna de relación"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Mostrar os contidos binarios"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Mostrar os contidos BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Ocultar transformación do navegador"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Texto moi coñecido"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Binario moi coñecido"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Matar (kill)"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "a procurar"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrando os rexistros"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "a pesquisa levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operacións de resultados da procura"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Vista previa da impresión (con textos completos)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Mostrar gráfico"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Ver os datos GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Crear vista"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Non se atopou o vínculo"
@@ -6439,7 +6439,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Reserva da memoria intermedia"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Estado de InnoDB"
@@ -6735,8 +6735,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6857,12 +6857,12 @@ msgstr "Mostrar tipos MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Xerado en"
@@ -7064,8 +7064,8 @@ msgstr "Non se atoparon datos para a visualización GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)."
@@ -7232,6 +7232,98 @@ msgstr "Modo de compatiblidade SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Non empregar AUTO_INCREMENT cos valores cero"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Función"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Agochar"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binario"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Por causa da sua lonxitude, este campo pode non ser editable"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binario - non editar"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "directorio de recepción do servidor web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Editar/Inserir"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Continuar a inserción con %s fileiras"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "e despois"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Inserir unha columna nova"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Inserir como nova fila e ignorar erros"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Mostrar procura de inserción"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Voltar"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Inserir un rexistro novo"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Voltar para esta páxina"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Modificar a fileira seguinte"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL "
+"combinada cunha flecha para moverse a calquera sitio"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valor"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Mostrar procura SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Identificador da fileira inserida: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7242,32 +7334,32 @@ msgstr "Ningún"
msgid "Convert to Kana"
msgstr "Convertir a Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Dende"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Ata"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Enviar"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Engadir prefixo a táboa"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Engadir prefixo"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Está realmente seguro de executar a seguinte petición?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Sen cambios"
@@ -7275,11 +7367,6 @@ msgstr "Sen cambios"
msgid "Charset"
msgstr "Conxunto de caracteres"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binario"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Búlgaro"
@@ -7608,18 +7695,10 @@ msgid "Slave status"
msgstr "Estado do escravo"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variábel"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valor"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Identificador do servidor"
@@ -7941,11 +8020,6 @@ msgstr "Executar rutina"
msgid "Routine parameters"
msgstr "Parámetros da rutina"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Función"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Sentimolo, non se puido recuperar o disparador borrado."
@@ -8267,7 +8341,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Efectuar unha procura SQL na base de datos %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Limpar"
@@ -8275,11 +8349,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Columnas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Gardar esta procura de SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Permitir que calquera usuario poida acceder a este marcador"
@@ -8303,10 +8377,6 @@ msgstr "Mostrar esta consulta aquí outra vez"
msgid "View only"
msgstr "Só visualizar"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "directorio de recepción do servidor web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8513,10 +8583,6 @@ msgstr "Operador"
msgid "Table Search"
msgstr "Procura na táboa"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Editar/Inserir"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8770,7 +8836,7 @@ msgstr "Versión do protocolo"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Usuario"
@@ -8913,8 +8979,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
-"%sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
+"sdocumentation%s."
#: navigation.php:175 server_databases.php:311 server_synchronize.php:1465
msgid "No databases"
@@ -9003,10 +9069,6 @@ msgstr "Agochalo/Mostralo todo"
msgid "Hide/Show Tables with no relation"
msgstr "Agochar/Mostrar táboas sen relación"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Agochar"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Número de táboas"
@@ -9201,17 +9263,17 @@ msgstr "O arquivo non existe"
msgid "Select binary log to view"
msgstr "Seleccione o ficheiro de rexistro binario que queira ver"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Ficheiros"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Interrumpir as procuras mostradas"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostrar as procuras completas"
@@ -9646,8 +9708,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@@ -9774,7 +9836,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Mostrar o estado do principal"
@@ -9924,127 +9986,127 @@ msgstr ""
"Este servidor non está configurado como escravo nun proceso de replicación. "
"Desexa configuralo?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Finalizouse o fío %s."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "caché de procuras"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Fíos"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Datos temporais"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Insercións demoradas"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "caché da chave"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Unións"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Ordenación"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordinador da transacción"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Limpar (fechar) todas as táboas"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Mostrar as táboas abertas"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Mostrar os servidores escravos"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Mostrar o estado dos escravos"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Limpar a caché da pesquisa"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Información sobre o tempo de execución"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Todalas variables de estado"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitorizaci'on"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Consellos"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Tasa de refresco: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtros"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Contendo a palabra:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Mostrar só valores de alerta"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrar por categoría..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Mostrar valores sen formato"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Ligazóns relacionadas:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Executar analizador"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instruccións"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10052,7 +10114,7 @@ msgstr ""
"O sistema de consellos pode darlle valores recomendados para as variables do "
"servidor analizando as variables de estado do servidor."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10061,14 +10123,14 @@ msgstr ""
"Note sen embargo que este sistema proporciona recomendacións baseadas en "
"simples cálculos e a dedo que pode non ser necesarias no seu sistema."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10076,31 +10138,31 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Preguntas dende o inicio: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Informacións"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Tráfico de rede dende o inicio: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Este servidor de MySQL leva funcionando %1$s. Iniciouse às %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10108,18 +10170,18 @@ msgstr ""
"Este servidor funciona como maestro e esclavo nun proceso de "
"replicación."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Este servidor funciona como maestronun proceso de replicación."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Este servidor funciona como esclavo nun proceso de replicación"
"b>."
-#: server_status.php:1080
+#: server_status.php:1083
#, fuzzy
#| msgid ""
#| "s MySQL server works as %s in replication process. For further "
@@ -10133,11 +10195,11 @@ msgstr ""
"b>. Para máis información acerca do estado de replicación do servidor visite "
"a sección sobre replicación."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Estado da replicación"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10146,47 +10208,47 @@ msgstr ""
"que esas estatísticas, tal e como as transmite o servidor de MySQL, poden "
"resultar incorrectas."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Recibido"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "conexións simultáneas máximas"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Tentativas falidas"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Cancelado"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "Identificador"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Orde"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10196,16 +10258,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10217,11 +10279,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Número de ficheiros temporais creados por mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10229,7 +10291,7 @@ msgstr ""
"Número de táboas temporais na memoria creadas automaticamente polo servidor "
"ao executar instrucións."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10237,7 +10299,7 @@ msgstr ""
"Número de fileiras escritas con INSERT DELAYED que sofriron algún erro "
"(probabelmente unha chave duplicada)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10245,23 +10307,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Número de fileiras INSERT DELAYED escritas."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Número de instrucións FLUSH executadas."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Número de instrucións COMMIT internas."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10271,7 +10333,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10282,7 +10344,7 @@ msgstr ""
"completos; por exemplo, SELECT col FROM algo, supoñendo que col estea "
"indexada."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10290,7 +10352,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10300,7 +10362,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10308,7 +10370,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10320,7 +10382,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:1337
+#: server_status.php:1340
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 "
@@ -10332,35 +10394,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Número de páxinas actualmente suxas."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Número de páxinas libres."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10370,7 +10432,7 @@ msgstr ""
"actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por "
"algunha outra razón."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10382,11 +10444,11 @@ msgstr ""
"se pode calcular así: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Tamaño total do búfer, en páxinas."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10395,7 +10457,7 @@ msgstr ""
"cando unha procura vai examinar unha porción grande dunha táboa mais en orde "
"aleatoria."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10403,11 +10465,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10415,7 +10477,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:1352
+#: server_status.php:1355
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 "
@@ -10429,55 +10491,55 @@ msgstr ""
"que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser "
"pequeno."
-#: server_status.php:1353
+#: server_status.php:1356
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:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Número de operacións fsync() até o momento."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Número actual de operacións fsync() pendentes."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Número actual de lecturas pendentes."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Número actual de escritas pendentes."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Cantidade de datos lida até o momento, en bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Número total de lecturas de datos."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Número total de escritas de datos."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Cantidade de datos escrita até o momento, en bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10485,35 +10547,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Número de peticións de escrita no rexistro."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Número de escritas físicas no ficheiro de rexistro."
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Número de fsyncs do ficheiro de rexistro pendentes."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Escritas no ficheiro de rexistro pendentes."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Número de bytes escritos no ficheiro de rexistro."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Número de páxinas creadas."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10522,55 +10584,55 @@ msgstr ""
"cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente "
"en bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Número de páxinas lidas."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Número de páxinas escritas."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Número de fileiras eliminadas das táboas InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Número de fileiras inseridas nas táboas InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Número de fileiras lidas das táboas InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Número de fileiras actualizadas en táboas InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10578,7 +10640,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:1385
+#: server_status.php:1388
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."
@@ -10586,7 +10648,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:1386
+#: server_status.php:1389
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 "
@@ -10596,17 +10658,17 @@ msgstr ""
"referencia superior que indica o número máximo de bloques que se teñen "
"empregado."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Porcentaxe de uso do límite de ficheiros abertos"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10616,26 +10678,26 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10646,19 +10708,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10666,38 +10728,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Número de ficheiros abertos."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Número de táboas abertas."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Cantidade de memoria libre para a caché de procuras."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Número de impactos na caché."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Número de procuras adicionadas na caché."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10709,7 +10771,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10717,19 +10779,19 @@ msgstr ""
"Número de procuras non enviadas á caché (que non se poden enviar debido á "
"configuración de query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Número de procuras rexistradas na caché."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Número total de bloques na caché de procuras."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Estado da replicación en modo seguro (aínda non realizado)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10737,13 +10799,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10751,7 +10813,7 @@ msgstr ""
"Número de unións sen chaves que comproban a utilización de chaves despois de "
"cada fila (se non é 0, debería comprobar con atención os índices das táboas)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10759,15 +10821,15 @@ msgstr ""
"Número de unións que utilizaron intervalos na primeira táboa (Normalmente "
"non é grave, mesmo de ser grande)"
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10775,11 +10837,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10787,14 +10849,14 @@ msgstr ""
"Número de fíos aos que lles levou crearse máis segundos dos indicados en "
"slow_launch_time."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10804,23 +10866,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Número de ordenacións feitas con intervalos."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Número de fileiras ordenadas."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10832,7 +10894,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10842,11 +10904,11 @@ msgstr ""
"calcular como Threads_created/Connections. Se este valor for vermello, "
"debería aumentar a thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Número de conexións abertas neste momento."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10858,63 +10920,63 @@ msgstr ""
"non fornece unha mellora notábel no desempeño se ten unha boa implementación "
"de fíos.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Porcentaxe de caché de fíos %%"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Número de fíos que non están a durmir."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Iniciar monitorización"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Engadir gráfico"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Tasa de refresco"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Columnas do gráfico"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Ordenación dos gráficos"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Resetear a predeterminado"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instruccións de monitorización"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10923,7 +10985,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10931,18 +10993,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10950,11 +11012,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Por favor note:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10962,86 +11024,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Gráfico predefinido"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variable(s) de estado"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Seleccionar series:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Monitorizacións comúns"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "ou escriba o nome da variable:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Mostrar como valor diferencial"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Aplicar un divisor"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Engadir esta serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Limpar series"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Series no gráfico:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Estatísticas de rexistro"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Rango temporal seleccionado:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Os resultados están agrupados polo texto da consulta."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analizador de procuras"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d segundo"
msgstr[1] "%d segundos"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11178,7 +11240,7 @@ msgstr "Valor da sesión"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Descargar"
@@ -11249,39 +11311,39 @@ msgstr "Non hai ningún servidor configurado"
msgid "New server"
msgstr "Novo servidor"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Lingua por omisión"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "que o escolla o usuario"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ningún -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Servidor por omisión"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Fin da liña"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Mostrar"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Cargar"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Páxina web do phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Doar"
@@ -11537,51 +11599,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Datos erroneos"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Visualizar valores alleos"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Seguro que quere executar a petición seguinte?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Identificador da fileira inserida: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Mostrar como código PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Mostrar procura SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Resultado SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Xerado por"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nome"
@@ -11596,58 +11649,6 @@ msgstr "Alterouse a táboa %1$s sen problemas"
msgid "The columns have been moved successfully."
msgstr "Elimináronse sen problemas os usuarios seleccionados."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Por causa da sua lonxitude, este campo pode non ser editable"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binario - non editar"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Inserir unha columna nova"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Inserir como nova fila e ignorar erros"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Mostrar procura de inserción"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "e despois"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Voltar"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Inserir un rexistro novo"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Voltar para esta páxina"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Modificar a fileira seguinte"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL "
-"combinada cunha flecha para moverse a calquera sitio"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Continuar a inserción con %s fileiras"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12239,32 +12240,38 @@ msgstr "Seguir estas declaracións de manipulación de datos:"
msgid "Create version"
msgstr "Crear unha versión"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Facer unha \"consulta de exemplo\" (o comodín é \"%\") para duas columnas "
"diferentes"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Criterios adicionais de busca"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Máximo de filas que aparecen no gráfico"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Como usar"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reiniciar"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Obter máis temas!"
@@ -12607,8 +12614,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12734,8 +12741,8 @@ msgstr ""
#, fuzzy, php-format
#| msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"O %s%% de toda-las conexións foron canceladas. Este valor debería ser menor "
"ó 1%%"
@@ -13232,8 +13239,8 @@ msgstr ""
#: libraries/advisory_rules.txt:390
#, fuzzy, php-format
#| msgid ""
-#| "The number of opened files is at %s%% of the limit. It should be below "
-#| "85%%"
+#| "The number of opened files is at %s%% of the limit. It should be below 85%"
+#| "%"
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
@@ -13448,6 +13455,12 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definido a 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Use a roda do rato para acercar ou alonxar a gráfica."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Prema e arrastre o rato para navegar na gráfica ."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13724,9 +13737,6 @@ msgstr "concurrent_insert está definido a 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Non hai un camiño válido de imaxe para o tema %s!"
-#~ msgid "rows"
-#~ msgstr "Visualizar"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "fileiras, a comezar pola"
diff --git a/po/he.po b/po/he.po
index 33697df476..be75d3ac0d 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: hebrew \n"
-"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "הצגת הכול"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "הצגת הכול"
msgid "Page number:"
msgstr "מספר העמוד:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"לא ניתן לעדכן את חלון דפדפן היעד. יתכן שסגרת את חלון ההורה, או שהגדרות "
"האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "חיפוש"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "חיפוש"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ביצוע"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "שם מפתח"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "תיאור"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "שימוש בערך זה"
@@ -120,12 +120,12 @@ msgstr "הערות לטבלה"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "עמודה"
@@ -134,6 +134,7 @@ msgstr "עמודה"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -141,9 +142,9 @@ msgstr "עמודה"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "סוג"
@@ -151,12 +152,12 @@ msgstr "סוג"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "ריק"
@@ -195,13 +196,13 @@ msgstr "הערות"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -212,19 +213,19 @@ msgstr "לא"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -353,7 +354,7 @@ msgstr "טבלה"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "שורות"
@@ -404,28 +405,28 @@ msgid "Switch to %svisual builder%s"
msgstr "מעבר ל%sבונה החזותי%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "סידור"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "עולה"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "יורד"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "הצגה"
@@ -446,8 +447,8 @@ msgid "Del"
msgstr "מחיקה"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "או"
@@ -516,8 +517,8 @@ msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s"
msgstr[1] "%1$s תוצאות בטבלה %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "עיון"
@@ -526,14 +527,14 @@ msgstr "עיון"
msgid "Delete the matches for the %s table?"
msgstr "האם למחוק את התוצאות עבור הטבלה %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "מחיקה"
@@ -601,11 +602,11 @@ msgstr "המעקב פעיל."
msgid "Tracking is not active."
msgstr "המעקב אינו פעיל."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -615,7 +616,7 @@ msgstr "תצוגה"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "שכפול"
@@ -629,20 +630,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "עם הנבחרים:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "סימון הכול"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -654,27 +655,27 @@ msgstr "בדיקת טבלאות בעלות תקורה"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "יצוא"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "תצוגת הדפסה"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "ריקון"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -700,11 +701,11 @@ msgstr "ניתוח טבלה"
msgid "Add prefix to table"
msgstr "הוספת קידומת לטבלה"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "החלפת קידומת הטבלה"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "העתקת הטבלה עם קידומת"
@@ -723,8 +724,8 @@ msgstr "טבלאות במעקב"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "מסד נתונים"
@@ -742,7 +743,7 @@ msgstr "עודכנה"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "מצב"
@@ -840,45 +841,45 @@ msgstr "שימוש ב־OpenStreetMaps כשכבת הבסיס"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "פני השטח"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "נקודה"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "נקודה %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "הוספת נקודה"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "מחרוזת שורה"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "טבעת חיצונית"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "טבעת פנימית"
@@ -886,15 +887,15 @@ msgstr "טבעת פנימית"
msgid "Add a linestring"
msgstr "הוספת מחרוזת שורה"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "הוספת טבעת פנימית"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "מצולע"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "הוספת מצולע"
@@ -917,8 +918,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"כפי הנראה ניסית להוריד קובץ גדול מדי. נא לפנות ל%sתיעוד%s לקבלת דרכים לעקיפת "
"הגבלה זו."
@@ -965,7 +966,7 @@ msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ל
msgid "Could not load import plugins, please check your installation!"
msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "הסימנייה %s נוצרה"
@@ -992,7 +993,7 @@ msgstr ""
"לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1009,7 +1010,7 @@ msgstr ""
"phpMyAdmin מתנהג בצורה יותר ידידותית עם דפדפן התומך במסגרות (frames-"
"capable)."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "הוראות \"DROP DATABASE\" מנוטרלות."
@@ -1018,7 +1019,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות."
msgid "Do you really want to execute \"%s\"?"
msgstr "האם אכן ברצונך להפעיל את „%s”?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!"
@@ -1104,21 +1105,21 @@ msgstr "סגירה"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "עריכה"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "תרשים תעבורה חי"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "תרשים חיבור/תהליך חי"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "תרשים תשאול חי"
@@ -1129,23 +1130,23 @@ msgstr "נתונים סטטיים"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "סה״כ"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "אחר"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1165,7 +1166,7 @@ msgstr "תעבורת השרת (ב־KiB)"
msgid "Connections since last refresh"
msgstr "התחברויות מאז הרענון האחרון"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "תהליכים"
@@ -1183,7 +1184,7 @@ msgstr "שאלות מאז הרענון האחרון"
msgid "Questions (executed statements by the server)"
msgstr "שאלות (הצהרות שהופעלו על ידי השרת)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "סטטיסטיקת תשאולים"
@@ -1227,14 +1228,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1294,32 +1295,32 @@ msgstr ""
msgid "Bytes received"
msgstr "התקבל"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "חיבורים"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1335,11 +1336,11 @@ msgstr "%s טבלאות"
msgid "Questions"
msgstr "Persian"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Traffic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1364,10 +1365,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "ללא"
@@ -1467,7 +1468,7 @@ msgstr "תכונות קשר כלליות"
msgid "Current settings"
msgstr "תכונות קשר כלליות"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1552,9 +1553,9 @@ msgstr ""
msgid "Explain output"
msgstr "הסברת SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "זמן"
@@ -1665,7 +1666,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "ייצוא"
@@ -1811,17 +1812,17 @@ msgstr "הוספת שדה חדש"
msgid "Show indexes"
msgstr "הראה רשת"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "מופעל"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1901,7 +1902,7 @@ msgstr "שאילתת SQL"
msgid "No rows selected"
msgstr "לא נבחרו שורות"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "שינוי"
@@ -1910,17 +1911,18 @@ msgstr "שינוי"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d הוא לא מספר שורה תקין."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "שמירה"
@@ -1949,178 +1951,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "תוצאת SQL"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "תוכן עניניים"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "התעלמות"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "העתקה"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "הוספת %s תאים"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "בחירת שדה להצגה"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "שמות עמודה"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "מראה שורות"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "ייצור סיסמא"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "ייצור"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "שינוי סיסמא"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "יום שני"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2128,30 +2122,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "אין מאגרי נתונים"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ללא"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "הקודם"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2159,96 +2153,96 @@ msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "מאי"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2256,78 +2250,78 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2335,113 +2329,113 @@ msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "ללא"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2493,16 +2487,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "לשנייה"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "לדקה"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "לשעה"
@@ -2629,15 +2623,15 @@ msgstr ""
msgid "Databases"
msgstr "מאגרי נתונים"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "שרת"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2649,20 +2643,20 @@ msgid "Structure"
msgstr "מבנה"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "הכנסה"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "פעולות"
@@ -2722,12 +2716,12 @@ msgstr "משתמש"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "דו\"ח בינארי"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "משתנים"
@@ -2744,8 +2738,9 @@ msgid "Engines"
msgstr "מנועים"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "שגיאה"
@@ -2862,35 +2857,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "קח זאת"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2931,14 +2926,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3196,8 +3191,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3300,7 +3295,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "טבלאות"
@@ -3353,42 +3348,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "אתה צריך לשדרג אל %s %s לפחות."
@@ -3423,8 +3418,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "שאילתת SQL"
@@ -3462,7 +3457,7 @@ msgid "Create PHP Code"
msgstr "ייצור קוד PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "רענון"
@@ -3486,43 +3481,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "מנועים"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "יום ראשון"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "הוספת שדה חדש"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "התחלה"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3530,8 +3525,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "הקודם"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3539,52 +3534,52 @@ msgctxt "Next page"
msgid "Next"
msgstr "הבא"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "סיום"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "קפיצה אל מאגר נתונים "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
msgid "Select from the web server upload directory %s:"
msgstr "שמירת שרת בתוך תיקיית %s"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "הדפסה"
@@ -3767,9 +3762,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "איפוס"
@@ -3917,7 +3912,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3979,7 +3974,7 @@ msgstr "הצעת מבנה טבלה"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5820,7 +5815,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5958,27 +5953,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "השרת אינו מגיב"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6162,8 +6157,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6356,57 +6351,62 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "תיקיית בית של נתונים"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "הוספת/מחיקת עמודות שדה"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "שבת"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "מספר שדות"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "יום שני"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "מאוזן"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "מאוזן (headers מסובבים)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "ניצב"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "הרצת שאילתה מועדפת"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "עיון"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6425,99 +6425,99 @@ msgstr ""
msgid "Options"
msgstr "פעולות"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "טקסטים חלקיים"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "טקסטים מלאים"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "תצוגת יחסים"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
msgid "Relational display column"
msgstr "תצוגת יחסים"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
msgid "Hide browser transformation"
msgstr "שינויי צורה זמינים"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "השורה נמחקה"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "בשאילתה"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "מראה שורות"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "סה\"כ"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "שאילתה לקחה %01.4f שניות"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "תצוגת הדפסה (עם טקסטים מלאים)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "מציג הערות עמודה"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "גרסת שרת"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "קישור לא נמצא"
@@ -6561,7 +6561,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "מצב InnoDB"
@@ -6813,8 +6813,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6965,12 +6965,12 @@ msgstr "סוגי MIME זמינים"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "מארח"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "זמן ייצור"
@@ -7182,8 +7182,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
@@ -7350,6 +7350,101 @@ msgstr "תואם MySQL 4.0"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "פונקציה"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "בינארי"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "משום אורכם, השדה הזה יכול להיות בלתי עריך "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "בינארי - אין לערוך"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+#, fuzzy
+msgid "web server upload directory"
+msgstr "שמירת שרת בתוך תיקיית %s"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "הכנסה"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ואז"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "הכנסה כשורה חדשה"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "חזרה לעמוד הקודם"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "הוספה נוספת של שורה חדשה"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "חזרה אחורה לעמוד זה"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "עריכת השורה הבאה"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "ערך"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7362,38 +7457,38 @@ msgstr "ללא"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "יום שישי"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "שליחה"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "הוספת שדה חדש"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "האם אתה באמת רוצה "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "ללא שינוי"
@@ -7401,11 +7496,6 @@ msgstr "ללא שינוי"
msgid "Charset"
msgstr "קידוד"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "בינארי"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "בולגרית"
@@ -7736,18 +7826,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "משתנה"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "ערך"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "קוד שרת (ID)"
@@ -8096,11 +8178,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "פונקציה"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8461,7 +8538,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "לוח שנה"
@@ -8472,11 +8549,11 @@ msgstr "לוח שנה"
msgid "Columns"
msgstr "שמות עמודה"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "הכנס שאילתת SQL זאת למועדפים"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
@@ -8500,11 +8577,6 @@ msgstr "הראה את שאילתה כאן שוב"
msgid "View only"
msgstr "ראה רק"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-#, fuzzy
-msgid "web server upload directory"
-msgstr "שמירת שרת בתוך תיקיית %s"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8704,12 +8776,6 @@ msgstr "פעולות"
msgid "Table Search"
msgstr "חיפוש"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "הכנסה"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8895,7 +8961,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "משתמש"
@@ -9116,10 +9182,6 @@ msgstr "ראיית הכל"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
#, fuzzy
msgid "Number of tables"
@@ -9340,18 +9402,18 @@ msgstr "הטבלה \"%s\" לא קיימת!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "שדות"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "הראה שאילתות שלמות"
@@ -9800,8 +9862,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
@@ -9921,7 +9983,7 @@ msgstr "ההרשאות נטענו מחדש בהצלחה."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10060,160 +10122,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "סוג שאילתה"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "השתמש בהכנסות מעוכבות"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "ראיית טבלאות"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "מידע זמן ריצה"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "רענון"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "אל תשנה את הסיסמא"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "ראיית טבלאות"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "ראיית טבלאות"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "יחסים"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "סוג שאילתה"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "פונקציה"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10221,116 +10283,116 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "משפטים"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "התקבל"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "נשלח"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "ניסיונות כושלים"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "בוטל"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "קוד זיהוי"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "פקודה"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10338,78 +10400,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10417,7 +10479,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10425,42 +10487,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10468,33 +10530,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10503,243 +10565,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "חבילת הקידוד של הקובץ:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10747,99 +10809,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10847,18 +10909,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10866,69 +10928,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "סוג שאילתה"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "שבת"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "הוספת שדה חדש"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "רענון"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "הוספת/מחיקת עמודות שדה"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10937,7 +10999,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10945,18 +11007,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10964,11 +11026,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10976,90 +11038,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "שינוי שם מאגר נתונים אל"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "בחירת טבלאות"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "הוספת משתמש חדש"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "שאילתת SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "סטטיסטיקת שורה"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "בחירת הכל"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "סוג שאילתה"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11067,7 +11129,7 @@ msgid_plural "%d seconds"
msgstr[0] "לשנייה"
msgstr[1] "לשנייה"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11203,7 +11265,7 @@ msgstr "ערך זמן חיבור (Session)"
msgid "Global value"
msgstr "ערך גלובלי"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11267,41 +11329,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "מקומי"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "תיעוד phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11491,55 +11553,46 @@ msgstr ""
msgid "Wrong data"
msgstr "אין מאגרי נתונים"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "האם אתה באמת רוצה "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "בדיקת תקינות SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "תוצאת SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "נוצר ע\"י"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "תווית"
@@ -11553,58 +11606,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "משום אורכם, השדה הזה יכול להיות בלתי עריך "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "בינארי - אין לערוך"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "הכנסה כשורה חדשה"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ואז"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "חזרה לעמוד הקודם"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "הוספה נוספת של שורה חדשה"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "חזרה אחורה לעמוד זה"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "עריכת השורה הבאה"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12249,33 +12250,39 @@ msgstr ""
msgid "Create version"
msgstr "גרסת שרת"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "שאילתת SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "איפוס"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "השג סגנונות נוספים."
@@ -12637,8 +12644,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12767,8 +12774,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13538,9 +13545,6 @@ msgstr ""
#~ msgid "Export of event \"%s\""
#~ msgstr "לא נבחרו שורות"
-#~ msgid "rows"
-#~ msgstr "עיון"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "שורות המתחילות מרשומה #"
diff --git a/po/hi.po b/po/hi.po
index c428c14e8c..7bc5c1b4fc 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-27 16:58+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: hindi \n"
-"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "सभी दिखाएँ"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "सभी दिखाएँ"
msgid "Page number:"
msgstr "पृष्ठ संख्या:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है,"
"या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "ढूंढें"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "ढूंढें"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "जाएँ"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "मुख्यनाम"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "वर्णन"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "इस मान का उपयोग करें"
@@ -121,12 +121,12 @@ msgstr "टेबल टिप्पणि:"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "स्तम्भ"
@@ -135,6 +135,7 @@ msgstr "स्तम्भ"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "स्तम्भ"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "प्रकार/किस्म"
@@ -152,12 +153,12 @@ msgstr "प्रकार/किस्म"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "शून्य"
@@ -196,13 +197,13 @@ msgstr "टिप्पणी"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "नहीं"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -337,8 +338,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
-"%sयहाँ%s पर क्लिक करें."
+"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
+"sयहाँ%s पर क्लिक करें."
#: db_operations.php:633
msgid "Edit or export relational schema"
@@ -358,7 +359,7 @@ msgstr "टेबल "
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "रो"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "दृश्य निर्माता"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "सॉर्ट"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "आरोही"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "अवरोही"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "दिखाओ"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "हटाइए"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "अथवा"
@@ -524,8 +525,8 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं."
msgstr[1] "%s टेबल के अंदर %s मैच हैं."
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "ब्राउज़"
@@ -534,14 +535,14 @@ msgstr "ब्राउज़"
msgid "Delete the matches for the %s table?"
msgstr "इस %s टेबल से मैच हटाएँ"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "मिटाएँ"
@@ -609,11 +610,11 @@ msgstr "ट्रैकिंग सक्रिय है"
msgid "Tracking is not active."
msgstr "ट्रैकिंग सक्रिय नहीं है."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -623,7 +624,7 @@ msgstr "दृश्य"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "प्रतिकृति"
@@ -637,20 +638,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "चुने हुओं को:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "सभी को चेक करें"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -662,27 +663,27 @@ msgstr "ओवर्हेअद वाली तालुकाओं को
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "निर्यात"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "छपाई द्रश्य."
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "खाली"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -708,11 +709,11 @@ msgstr "टेबल का विश्लेषण करें"
msgid "Add prefix to table"
msgstr "टेबल पर उपसर्ग जोड़ें"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ"
@@ -731,8 +732,8 @@ msgstr "ट्रैक की गयी टेबलएं"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "डाटाबेस"
@@ -750,7 +751,7 @@ msgstr "अद्यतन"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "स्थिति"
@@ -856,49 +857,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add index"
msgid "Add a point"
msgstr "अनुक्रमणिका जोड़"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "लाईन समाप्त होता है"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -908,17 +909,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "नया यूसर जोडें"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "नया यूसर जोडें"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add column"
msgid "Add a polygon"
@@ -943,8 +944,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -991,7 +992,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें."
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "बुकमार्क %s बनाया"
@@ -1017,7 +1018,7 @@ msgstr ""
"सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1032,7 +1033,7 @@ msgstr "वापस"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin तख़्त-सक्षम ब्रोव्सेर के लिए ज्यादा दोस्ताना है."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
@@ -1042,7 +1043,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
msgid "Do you really want to execute \"%s\"?"
msgstr "क्या आप सचमुच चाहते है की"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
@@ -1135,23 +1136,23 @@ msgstr "बंद"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "सम्पादन"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "सर्वर चुनिये"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "Show query chart"
msgid "Live query chart"
@@ -1164,23 +1165,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "कुल"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1202,7 +1203,7 @@ msgstr "सर्वर चुनिये"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "प्रक्रियां"
@@ -1222,7 +1223,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "डाटाबेसों के सांख्यिकी"
@@ -1271,14 +1272,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1340,32 +1341,32 @@ msgstr ""
msgid "Bytes received"
msgstr "प्राप्त"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "कनेक्शन"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "बैट्स"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1383,11 +1384,11 @@ msgstr " %s टेबलें"
msgid "Questions"
msgstr "संस्करण"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "ट्रैफ़िक"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1414,10 +1415,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "कोई नहीं"
@@ -1517,7 +1518,7 @@ msgstr "सेटिंग्स प्रबंधक"
msgid "Current settings"
msgstr "अधिक सेटिंग्स"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Default title"
msgid "Chart Title"
@@ -1609,9 +1610,9 @@ msgstr "विश्लेषण"
msgid "Explain output"
msgstr "SQL की व्याख्या "
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "समय"
@@ -1724,7 +1725,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "आयात"
@@ -1862,19 +1863,19 @@ msgstr "अनुक्रमणिका जोड़"
msgid "Show indexes"
msgstr "ग्रिड दिखाओ"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "निष्क्रिय विदेशी कुंजी चेक"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "सक्षम"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1957,7 +1958,7 @@ msgstr "क्वेरी बॉक्स दिखाएँ"
msgid "No rows selected"
msgstr "कोई चयनित रो नहीं"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "बदलिये"
@@ -1968,17 +1969,18 @@ msgstr "बदलिये"
msgid "Query execution time"
msgstr "अधिकतम निष्पादन समय"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d वैध रो संख्या नहीं है"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "बचाना"
@@ -2005,174 +2007,166 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "कोलम जोडें/हटायें"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQLपरिणाम"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "सूचक का आकार डेटा"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "ध्यान न देना"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "अनुकृति"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "नया काँलम जोडें"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "संदर्भित कुंजी का चयन करें."
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "विदेश कुंजी का चयन करें."
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "काँलम के लिए एक विकल्प जोड़ें"
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "चयन करने के लिए क्लिक करें."
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
msgstr "दृश्य पर जायें"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "कोलम के नाम"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "अद्यतन रोयाँ"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "पासव्रड उत्पन्न करें"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "उत्पन्न"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "पासवर्ड बदलिये "
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "अधिक"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2181,29 +2175,29 @@ msgstr ""
"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", नवीनतम स्थिर संस्करण:"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "डेटाबेस को कूद"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "किया"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "पिछला"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2211,149 +2205,149 @@ msgid "Next"
msgstr "अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "आज"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "जनवरी"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "फरवरी"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "मार्च"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "मई"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "जून"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "सितम्बर"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "नवम्बर"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "मन्गलवार"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "बुधवार"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "गुरूवार"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2361,97 +2355,97 @@ msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "हफ्ता"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "कोई नहीं"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "घंटा"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "मिनट"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "सेकंड"
@@ -2502,16 +2496,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "प्रति सेकंड"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "प्रति मिनट"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "प्रति घंटे"
@@ -2638,15 +2632,15 @@ msgstr "सूचकांक %1$s और %2$s बराबर लगने क
msgid "Databases"
msgstr "डाटाबेस"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "सर्वर"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2658,20 +2652,20 @@ msgid "Structure"
msgstr "संरचना"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "इनसर्ट"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "कार्रवाई"
@@ -2731,12 +2725,12 @@ msgstr "यूसर"
msgid "Synchronize"
msgstr "सिंक्रनाइज़"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "बाइनरी लोग"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "प्रक्रियां"
@@ -2753,8 +2747,9 @@ msgid "Engines"
msgstr "इंजन"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "त्रुटि"
@@ -2879,35 +2874,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "पूर्वावलोकन उपलब्ध नहीं."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "इसे ले लो"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "विषयवस्तु %s नहीं मिला है!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2948,14 +2943,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3215,11 +3210,11 @@ msgstr "%s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
-"%2$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
+"$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3323,7 +3318,7 @@ msgstr "साझा"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "टेबल"
@@ -3374,24 +3369,24 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
msgstr "विन्यास सहेज नहीं सकते"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी |"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3402,21 +3397,21 @@ msgid ""
msgstr ""
"$cfg['PmaAbsoluteUri'] निर्देश आपकी विन्यास फाइल मैं सेट होना आवश्यक है"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "अवैध सर्वर सूचकांक: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें"
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए"
@@ -3451,8 +3446,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL क्वरी"
@@ -3490,7 +3485,7 @@ msgid "Create PHP Code"
msgstr "PHP Code बनाओ"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "ताज़ा करना"
@@ -3511,43 +3506,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "इनलाइन"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "रूपरेखा"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "रविवार"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y को %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "नियमित कार्य"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "प्रारंभ"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3555,8 +3550,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "पिछला"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3564,54 +3559,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "अगला"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "आखरी"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" डेटाबेस पर जायें "
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे "
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "चयन करने के लिए क्लिक करें."
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "अपने कंप्यूटर ब्राउज़ करें"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; "
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "छापें"
@@ -3785,9 +3780,9 @@ msgstr "मूलभूत मान को बहाल"
msgid "Allow users to customize this value"
msgstr "कर्ता को इस मूल्य को अनुकूलित करने की अनुमति दें "
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "रीसेट"
@@ -3944,7 +3939,7 @@ msgid "Compress on the fly"
msgstr "जल्दी संक्षिप्त करें"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "विन्यास फाइल"
@@ -4004,7 +3999,7 @@ msgstr "टेबल संरचना का प्रस्ताव"
msgid "Show binary contents as HEX by default"
msgstr "डिफ़ॉल्ट रूप से द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें"
@@ -5822,7 +5817,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "नवीनतम संस्करण के लिए जाँच"
@@ -5962,27 +5957,27 @@ msgstr "%s विस्तार गायब है. कृपया अपन
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "सर्वर जवाब नहीं दे रहा"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "विवरण..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6143,8 +6138,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6326,58 +6321,61 @@ msgstr "प्रारूप निर्दिष्ट विकल्पो
msgid "Language"
msgstr "भाषा"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "निर्देशिका बचाना"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Textarea rows"
msgid "Start row"
msgstr "क्षेत्र रोयाँ"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "रो की संख्या"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "अधिक"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "समतल"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "खडा"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "ब्राउज़"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "कुंजी सॉर्ट"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6395,93 +6393,93 @@ msgstr "कुंजी सॉर्ट"
msgid "Options"
msgstr "विकल्प"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "आंशिक पाठ"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "पूर्ण पाठ"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "कुंजी संबंधपरक"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "संबंधपरक प्रदर्शन स्तंभ"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "द्विआधारी सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "सामग्री दिखाने"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "रौ देखिये"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "कुल"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display Features"
msgid "Display chart"
msgstr "फीचरस दिखाओ"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "दृश्य बनाइये"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "लिंक नहीं मिला"
@@ -6525,7 +6523,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "बफर पूल"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6776,8 +6774,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6916,12 +6914,12 @@ msgstr "फीचरस दिखाओ"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "होस्ट"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "समय पर बनाया"
@@ -7135,8 +7133,8 @@ msgstr "चार्ट के लिए कोई डेटा नहीं म
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
@@ -7312,6 +7310,98 @@ msgstr "SQL संगतता मोड"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "छिपाना"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "बइनरी"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "बइनरी - एडिट मत करिये"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "वेब सर्वर अपलोड निर्देशिका"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "इनसर्ट"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "और फिर"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "इसको नया रौ में जोडे "
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "पिछले पृष्ट पर वापस जाएँ"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "एक और नई रो इनसर्ट करें"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "इस पृष्ठ पर वापस जाएँ"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "अगली रो को संपादित करें"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "मूल्य"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL क्वेरी शो"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "इनसर्ट रो id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "No"
@@ -7324,38 +7414,38 @@ msgstr "कोई एन्कोडिंग नहीं"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "शुक्रवार"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "सबमिट"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add index"
msgid "Add prefix"
msgstr "अनुक्रमणिका जोड़"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "क्या आप सचमुच चाहते है की"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "कोइ बदलाव नहीं"
@@ -7363,11 +7453,6 @@ msgstr "कोइ बदलाव नहीं"
msgid "Charset"
msgstr "कोई"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "बइनरी"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "बल्गेरियन्"
@@ -7696,18 +7781,10 @@ msgid "Slave status"
msgstr "स्लाव की स्थिति"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "स्थिति"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "मूल्य"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "सर्वर आईडी"
@@ -8067,11 +8144,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "नियमित कार्य"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8444,7 +8516,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "डाटाबेस %s में SQL प्रशन चलाइये "
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "स्पष्ट"
@@ -8454,11 +8526,11 @@ msgstr "स्पष्ट"
msgid "Columns"
msgstr "कोलम"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
@@ -8482,10 +8554,6 @@ msgstr "यह query वापस यहीं दिखायें "
msgid "View only"
msgstr "केवल देखिये"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "वेब सर्वर अपलोड निर्देशिका"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8667,12 +8735,6 @@ msgstr "ऑपरेटर"
msgid "Table Search"
msgstr "ढूंढें"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "इनसर्ट"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8858,7 +8920,7 @@ msgstr "अधिक सेटिंग्स"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "यूसर"
@@ -9074,10 +9136,6 @@ msgstr "सभी दिखाना/छिपाना"
msgid "Hide/Show Tables with no relation"
msgstr "बिना रिश्ते की टेबलओं को दिखाना/छिपाना"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "छिपाना"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "टेबल की संख्या"
@@ -9290,17 +9348,17 @@ msgstr "फ़ाइल मौजूद नहीं है"
msgid "Select binary log to view"
msgstr "द्विआधारी लॉग देखने के लिए चयनित करें"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "फाइलें"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "पूर्ण क्वरीों को दिखाएँ"
@@ -9741,8 +9799,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9860,7 +9918,7 @@ msgstr "मास्टर सर्वर सफलतापूर्वक प
msgid "This server is configured as master in a replication process."
msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है"
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "मास्टर अवस्था"
@@ -9997,160 +10055,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s को सफलता से मारा गया।"
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "हैंडलर"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "क्वेरी कैश"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "थ्रेअद"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "अस्थायी डेटा"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "देरी आवेषण"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "कुंजी कैश"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "जोड़"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "छँटाई"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "लेन - देन समन्वयक"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "सभी टेबलओं फ्लश"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "खुला टेबल शो"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "फ्लश क्वेरी कैश"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "क्रम जानकारी"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "ताज़ा करना"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "पासवर्ड मत बदलिये"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "खुला टेबल शो"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "खुला टेबल शो"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "पसंबंधित लिंक"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "क्वरी प्रकार"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "एडमिनिस्ट्रेशन"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10158,118 +10216,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "स्टार्टअप पेज अनुकूलित करें"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "रो आँकड़े"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "प्रतिकृति स्थिति"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "प्राप्त"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "भेजा"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "अधिकतम वर्तमान कनेक्शन"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "असफल प्रयास"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "रद्द"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "आदेश"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया"
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10277,78 +10335,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं"
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10356,7 +10414,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10364,42 +10422,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10407,33 +10465,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10442,244 +10500,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "आयात की गई फ़ाइल का प्रारूप"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10687,99 +10745,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10787,18 +10845,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10806,72 +10864,72 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "ट्रैकिंग सक्रिय नहीं है."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "क्षेत्र रोयाँ"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "अनुक्रमणिका जोड़"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "ताज़ा करना"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "मूलभूत मान को बहाल"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10880,7 +10938,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10888,18 +10946,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10907,11 +10965,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10919,95 +10977,95 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "डेटाबेस को हटा दे"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "टेबल चुनिये"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "अवैध टेबल नाम"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "एक नया सर्वर जोडें"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL क्वरी"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "आँकड़े दिखाएँ"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "पेज चुनिये"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "क्वरी प्रकार"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -11015,7 +11073,7 @@ msgid_plural "%d seconds"
msgstr[0] "सेकंड"
msgstr[1] "सेकंड"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11149,7 +11207,7 @@ msgstr "सत्र मूल्य"
msgid "Global value"
msgstr "वैश्विक मूल्य"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "डाउनलोड"
@@ -11213,39 +11271,39 @@ msgstr "कोई कॉन्फ़िगर सर्वर मौजूद
msgid "New server"
msgstr "नए सर्वर"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "डिफ़ॉल्ट भाषा"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "यूसर का चयन करने दे"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- कोई नहीं -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "मूलभूत सर्वर"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "लाइन के अंत"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "प्रदर्शन"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "लोड"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin मुखपृष्ठ"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "दान"
@@ -11435,53 +11493,44 @@ msgstr ""
msgid "Wrong data"
msgstr "कोइ डाटाबेस नहिं"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "विदेशी मूल्य ब्राउस करें "
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "क्या आप सचमुच चाहते है की"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "इनसर्ट रो id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP कोड की तरह दिखाएँ"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL क्वेरी शो"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL मान्य"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQLपरिणाम"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "द्वारा उत्पन्न"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "लेबल"
@@ -11496,56 +11545,6 @@ msgstr "%1$s टेबल को सफलतापूर्वक बदल द
msgid "The columns have been moved successfully."
msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "बइनरी - एडिट मत करिये"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "इसको नया रौ में जोडे "
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "और फिर"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "पिछले पृष्ट पर वापस जाएँ"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "एक और नई रो इनसर्ट करें"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "इस पृष्ठ पर वापस जाएँ"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "अगली रो को संपादित करें"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12191,36 +12190,42 @@ msgstr "डेटा आपरेशन पर नज़र रखना"
msgid "Create version"
msgstr "संस्करण बनाएँ"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "खोज मापदंड छिपाना"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "प्रदर्शित रो की अधिकतम संख्या"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "नियंत्रण यूसर"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "रीसेट"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "अधिक प्रसंग पाएं"
@@ -12590,8 +12595,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12724,8 +12729,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13685,9 +13690,6 @@ msgstr "अधिकतम वर्तमान कनेक्शन"
#~ msgid "No trigger with name %s found"
#~ msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
-#~ msgid "rows"
-#~ msgstr "ब्राउज़"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "रो से शुरू #"
diff --git a/po/hr.po b/po/hr.po
index f30bbb396a..07acec3729 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: croatian \n"
-"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Prikaži sve"
msgid "Page number:"
msgstr "Broj stranice:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane "
"za blokiranje ažuriranja preko više prozora."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Traži"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Traži"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Naziv ključa"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Opis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Upotrijebi ovu vrijednost"
@@ -123,12 +123,12 @@ msgstr "Komentari tablice"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -139,6 +139,7 @@ msgstr "Nazivi stupaca"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -146,9 +147,9 @@ msgstr "Nazivi stupaca"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Vrsta"
@@ -156,12 +157,12 @@ msgstr "Vrsta"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -200,13 +201,13 @@ msgstr "Komentari"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -217,19 +218,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -370,7 +371,7 @@ msgstr "Tablica"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redaka"
@@ -423,28 +424,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Prebaci se na kopiranu tablicu"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Presloži"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Uzlazno"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Silazno"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Prikaži"
@@ -465,8 +466,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ili"
@@ -540,8 +541,8 @@ msgstr[0] "%s poklapanja unutar tablice %s"
msgstr[1] "%s poklapanja unutar tablice %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Pretraživanje"
@@ -551,14 +552,14 @@ msgstr "Pretraživanje"
msgid "Delete the matches for the %s table?"
msgstr "Izbacivanje podataka za tablicu"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Izbriši"
@@ -635,11 +636,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@@ -650,7 +651,7 @@ msgstr "Prikaz"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikacija"
@@ -664,20 +665,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "S odabirom:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -689,27 +690,27 @@ msgstr "Provjeri za prepunjene tablice"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Prikaz ispisa"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -736,13 +737,13 @@ msgstr "Analiziraj tablicu"
msgid "Add prefix to table"
msgstr "Nema baza podataka"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Podatke tablice zamijeni datotekom"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -764,8 +765,8 @@ msgstr "Provjeri tablicu"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -785,7 +786,7 @@ msgstr "Ažurirano"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stanje"
@@ -895,49 +896,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrija"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Točka"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a point"
msgstr "Dodaj %s polja"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Redovi završeni s"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -947,17 +948,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -981,11 +982,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
-"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
+"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
+"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1030,7 +1031,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Izrađen je favorit %s"
@@ -1058,7 +1059,7 @@ msgstr ""
"povećate vremenska ograničenja unutar php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1075,7 +1076,7 @@ msgstr ""
"phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava "
"okvire."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" izjave su onemogućene."
@@ -1085,7 +1086,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene."
msgid "Do you really want to execute \"%s\"?"
msgstr "Želite li zaista "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
@@ -1186,23 +1187,23 @@ msgstr "Zatvori"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Uređivanje"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Odabir poslužitelja"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1214,23 +1215,23 @@ msgstr "Statički podatci"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Ostalo"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1252,7 +1253,7 @@ msgstr "Odabir poslužitelja"
msgid "Connections since last refresh"
msgstr "Veze od zadnjeg osvježavanja"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesi"
@@ -1272,7 +1273,7 @@ msgstr "Upiti od zadnjeg osvježavanja"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statistike redova"
@@ -1322,14 +1323,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "kB"
@@ -1391,32 +1392,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Veze"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1432,11 +1433,11 @@ msgstr "%s tablica"
msgid "Questions"
msgstr "Perzijski"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Promet"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1463,10 +1464,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "bez kompresije"
@@ -1566,7 +1567,7 @@ msgstr "Opće osobine relacija"
msgid "Current settings"
msgstr "Opće osobine relacija"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1654,9 +1655,9 @@ msgstr "Analiziraj"
msgid "Explain output"
msgstr "Objasni SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Vrijeme"
@@ -1766,7 +1767,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Uvoz"
@@ -1917,19 +1918,19 @@ msgstr "Indeksi"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Onemogući provjere stranih znakova"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Omogućeno"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -2009,7 +2010,7 @@ msgstr "SQL upit"
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Promijeni"
@@ -2018,17 +2019,18 @@ msgstr "Promijeni"
msgid "Query execution time"
msgstr "Vrijeme izvršavanja upita"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nije valjani broj retka."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Spremi"
@@ -2057,179 +2059,171 @@ msgid "Hovering over a point will show its label."
msgstr "Povlačenje pokazivača miša preko točke će pokazati oznaku"
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Koristite kotačić miša za zumiranje"
-
-#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-#: js/messages.php:308
+#: js/messages.php:306
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Odaberite dva različita stupca"
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Operacije rezultata upita"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Veličina pokazatelja podataka"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoriraj"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopiraj"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dodaj %s polja"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Odaberite referentni ključ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Odaberite strani ključ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Odaberite primarni ključ ili jedinstveni ključ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Odaberi polje za prikaz"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Dodaj opciju stupcu "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Kliknite za sortiranje"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "Nema baza podataka"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Nazivi stupaca"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Ažuriraj redak"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generiraj lozinku"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generiraj"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promijeni lozinku"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2239,30 +2233,30 @@ msgstr ""
"Najnovija verzija je %s dostupna od %s"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Izradi relaciju"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Nema baza podataka"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "Podaci"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodni"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2270,96 +2264,96 @@ msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Veljača"
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Svi"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Rujan"
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Studeno"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Prosinac"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2367,78 +2361,78 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Srijeda"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "ČEtvrtak"
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Subota"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2446,115 +2440,115 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "bez kompresije"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Sat"
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2607,16 +2601,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "po sekundi"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "po minuti"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "po satu"
@@ -2746,15 +2740,15 @@ msgstr ""
msgid "Databases"
msgstr "Baze podataka"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Poslužitelj"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2766,20 +2760,20 @@ msgid "Structure"
msgstr "Strukturu"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Umetni"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2839,12 +2833,12 @@ msgstr "Korisnik"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binarni zapisnik"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Varijable"
@@ -2861,8 +2855,9 @@ msgid "Engines"
msgstr "Pogoni"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Pogreška"
@@ -2987,35 +2982,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Valjana putanja slika za temu %s nije pronađena!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nema raspoloživog pregleda."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "Dodijeli"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Zadana tema %s nije pronađena!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s nije pronađena!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Za temu %s nije pronađena putanje tema!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -3056,14 +3051,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3322,8 +3317,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -3429,7 +3424,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tablice"
@@ -3483,25 +3478,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3513,24 +3508,24 @@ msgstr ""
"Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj "
"konfiguracijskoj datoteci!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Neispravan indeks poslužitelja: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju "
"konfiguraciju."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
@@ -3565,8 +3560,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL upit"
@@ -3604,7 +3599,7 @@ msgid "Create PHP Code"
msgstr "Izradi PHP kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Osvježi"
@@ -3627,43 +3622,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Pogoni"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Izrada profila"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y u %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Na vrh stranice"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3671,8 +3666,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodni"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3680,53 +3675,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sljedeće"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Završetak"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Skoči do baze podataka \"%s\"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Pretraži računalo"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Izvrši"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Ispiši"
@@ -3910,9 +3905,9 @@ msgstr "Vrati zadanu vrijednost"
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Povrat"
@@ -4061,7 +4056,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfiguracijska datoteka"
@@ -4125,7 +4120,7 @@ msgstr "Predloži strukturu tablice"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5992,7 +5987,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6132,7 +6127,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6141,21 +6136,21 @@ msgid ""
msgstr ""
"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Poslužitelj ne odgovara"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalji..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6341,12 +6336,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@@ -6560,57 +6555,62 @@ msgstr ""
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Osnovna mapa podataka"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Dodaj/Izbriši stupce polja"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sub"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Broj polja"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Pon"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vodoravno"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vodoravno (okrenuta zaglavlja)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "uspravno"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Izvrši favorizirani upit"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Pretraživanje"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Presloži po ključu"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6628,100 +6628,100 @@ msgstr "Presloži po ključu"
msgid "Options"
msgstr "Opcije"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Djelomični tekstovi"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Potpuni tekstovi"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relacijski ključ"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Polje za prikaz relacija"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Pretvaranje preglednika"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Redak je izbrisan"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Eliminiraj"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "unutar upita"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Prikazivanje redaka"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sek"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operacije rezultata upita"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Prikaz ispisa (s potpunim tekstovima)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Izradi relaciju"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -6769,7 +6769,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Međuspremnik"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB stanje"
@@ -7064,8 +7064,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7213,12 +7213,12 @@ msgstr "Raspoložive MIME vrste"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Računalo"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Vrijeme generiranja"
@@ -7431,8 +7431,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)."
@@ -7602,6 +7602,105 @@ msgstr "Način rada SQL kompatibilnosti"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Sakrij"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binarno"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+" Zbog svoje duljine, uređivanje ovog polja možda neće biti moguće "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binarno - ne uređuj"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "mapa učitavanja web poslužitelja"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Umetni"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Ponovno pokreni umetanje s %s redaka"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "i potom"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Umetni kao novi redak"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Prikazivanje SQL upita"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Kreni nazad na prethodnu stranicu"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Umetni dodatni novi redak"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Kreni nazad na ovu stranicu"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Uredi sljedeći redak"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, "
+"odnosno s tipkama CTRL+Strelice za premještanje bilo kamo"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vrijednost"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Prikazivanje SQL upita"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Umetnut ID retka: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7614,36 +7713,36 @@ msgstr "bez kompresije"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Pet"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Podnesi"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Dodaj prefiks"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Želite li zaista "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Bez izmjena"
@@ -7651,11 +7750,6 @@ msgstr "Bez izmjena"
msgid "Charset"
msgstr "Tablica znakova"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binarno"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bugarski"
@@ -7988,18 +8082,10 @@ msgid "Slave status"
msgstr "Prikaži stanje potčinjenog"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Varijabla"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vrijednost"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID poslužitelja"
@@ -8358,11 +8444,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Rutine"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8733,7 +8814,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Pokreni SQL upit na bazi podataka %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Kalendar"
@@ -8744,11 +8825,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Nazivi stupaca"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Favoriziraj ovaj SQL upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
@@ -8772,10 +8853,6 @@ msgstr "Ovaj upit ponovno prikaži ovdje"
msgid "View only"
msgstr "Samo prikaz"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "mapa učitavanja web poslužitelja"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8987,12 +9064,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Traži"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Umetni"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9264,7 +9335,7 @@ msgstr "Verzija protokola"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Korisnik"
@@ -9492,10 +9563,6 @@ msgstr "Prikaži / Sakrij sve"
msgid "Hide/Show Tables with no relation"
msgstr "Prikaži / Sakrij tablice bez relacija"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Sakrij"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Broj tablica"
@@ -9716,17 +9783,17 @@ msgstr "Tablica \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Odaberite binarni zapisnik za prikaz"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Sreži prikazane rezultate"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Prikaži pune upite"
@@ -10182,8 +10249,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@@ -10308,7 +10375,7 @@ msgstr "Privilegije su uspješno učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Prikaži stanje potčinjenog"
@@ -10449,161 +10516,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Grana %s uspješno je prekinuta."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Hvatišta"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Pohrana upita"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Grane"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Odgođena umetanja"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Pohrana ključeva"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Preslagivanje"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinator transakcije"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Isprazni (zatvori) sve tablice"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Prikaži potčinjena računala"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Prikaži stanje potčinjenog"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Isprazni pohranu upita"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Podaci o razini izvršavanja"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Osvježi"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Datoteke"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ne mijenjaj lozinku"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtriraj po kategoriji"
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Prikaži otvorene tablice"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcije"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10611,57 +10678,57 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Izjave"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10670,47 +10737,47 @@ msgstr ""
"prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti "
"netočne."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "najv. uzastopnih veza"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Neuspjeli pokušaji"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10720,17 +10787,17 @@ msgstr ""
"ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu "
"datoteku za pohranjivanje izjava transakcija."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10742,11 +10809,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Koliko je privremenih tablica izradio mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10754,7 +10821,7 @@ msgstr ""
"Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio "
"tijekom izvršavanja izjava."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10762,7 +10829,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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10770,23 +10837,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj redaka zapisanih pomoću INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih izjava FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Broj internih izjava COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10796,7 +10863,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10806,7 +10873,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10814,7 +10881,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10824,7 +10891,7 @@ msgstr ""
"povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako "
"izvodite pretraživanje indeksa."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10832,7 +10899,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10844,7 +10911,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:1337
+#: server_status.php:1340
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 "
@@ -10856,36 +10923,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih izjava ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Broj zahtjeva za ažuriranje retka u tablici."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahtjeva za umetanje retka u tablici."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj stranice koje sadrže podatke (dirty ili clean)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Broj stranica koje su trenutno 'dirty'."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Broj slobodnih stranica."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10895,7 +10962,7 @@ msgstr ""
"čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog "
"drugog razloga."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10907,11 +10974,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Ukupna veličina međuspremnika, u stranicama."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10919,7 +10986,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10927,11 +10994,11 @@ msgstr ""
"Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se "
"događa kad InnoDB izvodi potpuno pretraživanje tablice."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10939,7 +11006,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:1352
+#: server_status.php:1355
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 "
@@ -10953,55 +11020,55 @@ msgstr ""
"prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno "
"postavljena, ova bi vrijednost trebala biti malenom."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Broj dosadašnjih fsync() operacija."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Trenutan broj fsync() operacija u čekanju."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Trenutan broj čitanja u čekanju."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Trenutan broj zapisivanja u čekanju."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Ukupan broj iščitavanja podataka."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Ukupan broj zapisivanja podataka."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -11010,35 +11077,35 @@ msgstr ""
"međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka "
"rada."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Broj zahtjeva za zapisivanje u zapisnik."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih zapisivanja u zapisnik."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Zapisivanja u zapisnik na čekanju."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova zapisanih u zapisnik."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Broj izrađenih stranica."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -11047,52 +11114,52 @@ msgstr ""
"vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo "
"jednostavno pretvaranje u bajtove."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Broj iščitanih stranica."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Broj zapisanih stranica."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Broj zaključavanja redaka na koje se trenutno čeka."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama."
-#: server_status.php:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redaka izbrisanih iz InnoDB tablica."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redaka umetnutih u InnoDB tablice."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redaka iščitanih iz InnoDB tablica."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj ažuriranih redaka u InnoDB tablicama."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11100,7 +11167,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:1385
+#: server_status.php:1388
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."
@@ -11108,7 +11175,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:1386
+#: server_status.php:1389
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 "
@@ -11118,17 +11185,17 @@ msgstr ""
"gornje razine koja označuje najveći broj blokova koji su ikad bili u "
"istovremenoj upotrebi."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Oblikovanje uvezene datoteke"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -11139,26 +11206,26 @@ msgstr ""
"promašivanja pohrane moguće je izračunati putem naredbi Key_reads/"
"Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11168,17 +11235,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11186,39 +11253,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Broj otvorenih tablica."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za pohranu upita."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Broj pronalaženja u pohrani."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Broj upita pridodanih u pohranu."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11231,7 +11298,7 @@ msgstr ""
"nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će "
"upite ukloniti iz pohrane."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11239,19 +11306,19 @@ msgstr ""
"Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog "
"postavke query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Broj upita registriranih u pohrani."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u pohrani upita."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11259,12 +11326,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11273,7 +11340,7 @@ msgstr ""
"retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite "
"indekse vaših tablica."
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11281,17 +11348,17 @@ msgstr ""
"Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije "
"kritično ako je ovaj iznos velik.)"
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11299,12 +11366,12 @@ msgstr ""
"Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane "
"replikacijske potčinjene SQL grane."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11312,14 +11379,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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11329,23 +11396,23 @@ msgstr ""
"Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti "
"sistemske varijable sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Broj preslagivanja učinjenih pomoću opsega."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Broj presloženih redaka."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Količina trenutno postignutih zaključavanja tablica."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11357,7 +11424,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11367,11 +11434,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11383,70 +11450,70 @@ msgstr ""
"(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti "
"primjetna poboljšanja performansi.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Pohrana ključeva"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Broj grana koje nisu uspavane."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Dodaj %s polja"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Osvježi"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/Izbriši stupce polja"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Resetiraj na zadano"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11455,7 +11522,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11463,18 +11530,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11482,11 +11549,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11494,92 +11561,92 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Preimenuj bazu podataka u"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Odaberite tablice"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Neispravan naziv tablice"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Dodaj novog korisnika"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL upit"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statistike redova"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Odaberite tablice"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11588,7 +11655,7 @@ msgstr[0] "po sekundi"
msgstr[1] "po sekundi"
msgstr[2] "po sekundi"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11727,7 +11794,7 @@ msgstr "Vrijednost sesije"
msgid "Global value"
msgstr "Opća vrijednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Preuzmi"
@@ -11792,41 +11859,41 @@ msgstr ""
msgid "New server"
msgstr "Web poslužitelj"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Zadani jezik"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokalno"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Podaci"
@@ -12018,55 +12085,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Nema baza podataka"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Pretraži strane vrijednosti"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Želite li zaista "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Umetnut ID retka: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Prikazivanje kao PHP koda"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Prikazivanje SQL upita"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Provjera valjanosti SQL-a"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL rezultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generirano s"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Oznaka"
@@ -12081,63 +12139,6 @@ msgstr "Tablica %1$s uspješno je izmijenjena."
msgid "The columns have been moved successfully."
msgstr "Odabrani korisnici uspješno su izbrisani."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-" Zbog svoje duljine, uređivanje ovog polja možda neće biti moguće "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binarno - ne uređuj"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Umetni kao novi redak"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Prikazivanje SQL upita"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "i potom"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Kreni nazad na prethodnu stranicu"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Umetni dodatni novi redak"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Kreni nazad na ovu stranicu"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Uredi sljedeći redak"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, "
-"odnosno s tipkama CTRL+Strelice za premještanje bilo kamo"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Ponovno pokreni umetanje s %s redaka"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12783,34 +12784,40 @@ msgstr ""
msgid "Create version"
msgstr "Izradi relaciju"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "PHP ekstenzija"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Povrat"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13176,8 +13183,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13311,8 +13318,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14020,6 +14027,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "najv. uzastopnih veza"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Koristite kotačić miša za zumiranje"
+
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
@@ -14208,9 +14218,6 @@ msgstr "najv. uzastopnih veza"
#~ msgid "No trigger with name %s found"
#~ msgstr "Valjana putanja slika za temu %s nije pronađena!"
-#~ msgid "rows"
-#~ msgstr "Pretraživanje"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "redovi koji započinju zapisom #"
@@ -14398,8 +14405,8 @@ msgstr "najv. uzastopnih veza"
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
-#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
-#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
+#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
+#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "
diff --git a/po/hu.po b/po/hu.po
index 43ccb3efc4..0c4c629474 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-20 00:10+0200\n"
"Last-Translator: Gergely Nagy \n"
"Language-Team: hungarian \n"
-"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.9\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Összes megjelenítése"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Összes megjelenítése"
msgid "Page number:"
msgstr "Oldalszám:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Keresés"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Keresés"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Indítás"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Kulcsnév"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Leírás"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Ezen érték használata"
@@ -122,12 +122,12 @@ msgstr "Tábla megjegyzése"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Oszlop"
@@ -136,6 +136,7 @@ msgstr "Oszlop"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Oszlop"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Típus"
@@ -153,12 +154,12 @@ msgstr "Típus"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulla"
@@ -197,13 +198,13 @@ msgstr "Megjegyzések"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Nem"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Tábla"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Sorok"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Átváltás a %svizuális tervezőre%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Rendezés"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Növekvő"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Csökkenő"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Megjelenítés"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Törlés"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Vagy"
@@ -524,8 +525,8 @@ 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:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Tartalom"
@@ -534,14 +535,14 @@ msgstr "Tartalom"
msgid "Delete the matches for the %s table?"
msgstr "Törli a találatokat a %s táblában?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Törlés"
@@ -609,14 +610,14 @@ msgstr "Nyomkövetés aktív."
msgid "Tracking is not active."
msgstr "Nyomkövetés inaktív."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
-"%sdokumentációban%s."
+"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
+"sdokumentációban%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -625,7 +626,7 @@ msgstr "Nézet"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Többszörözés"
@@ -639,20 +640,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Mind kijelölése"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -664,27 +665,27 @@ msgstr "A felülírott táblák kijelölése"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportálás"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Nyomtatási nézet"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Kiürítés"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -710,11 +711,11 @@ msgstr "Tábla elemzése"
msgid "Add prefix to table"
msgstr "Előtag hozzáadása a táblához"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Tábla előtagjának lecserélése"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Tábla másolása előtaggal"
@@ -733,8 +734,8 @@ msgstr "Nyomon követett táblák"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Adatbázis"
@@ -752,7 +753,7 @@ msgstr "frissítve"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Állapot"
@@ -852,47 +853,47 @@ msgstr "OpenStreetMaps használata alaprétegként"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Pont"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "%d. pont"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Pont hozzáadása"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Sorok vége"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Külső gyűrű"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Belső gyűrű"
@@ -900,15 +901,15 @@ msgstr "Belső gyűrű"
msgid "Add a linestring"
msgstr "Új sorvég hozzáadása"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Belső gyűrű hozzáadása"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Sokszög"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Sokszög hozzáadása"
@@ -931,11 +932,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
-"%sdokumentációban%s a korlátozás feloldása végett."
+"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
+"sdokumentációban%s a korlátozás feloldása végett."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -983,7 +984,7 @@ msgstr ""
"Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a "
"telepítését!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "A(z) %s könyvjelző elkészült"
@@ -1012,7 +1013,7 @@ msgstr ""
"növeli meg a PHP időkorlátozását."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1027,7 +1028,7 @@ msgstr "Vissza"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "A \"DROP DATABASE\" utasítást letiltották."
@@ -1037,7 +1038,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották."
msgid "Do you really want to execute \"%s\"?"
msgstr "Valóban a következőt akarja "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
@@ -1127,23 +1128,23 @@ msgstr "Bezárás"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Módosítás"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Szerver választása"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1156,23 +1157,23 @@ msgstr "Statikus adat"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Összesen"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Egyéb"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1192,7 +1193,7 @@ msgstr "Szerverforgalom (KiB-ban)"
msgid "Connections since last refresh"
msgstr "Kapcsolatok a legutóbbi frissítés óta"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Folyamatok"
@@ -1210,7 +1211,7 @@ msgstr "Kérdések a legutóbbi frissítés óta"
msgid "Questions (executed statements by the server)"
msgstr "Kérdések (a kiszolgáló által végrehajtott lekérdezések)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Lekérdezések statisztikája"
@@ -1253,14 +1254,14 @@ msgid "System swap"
msgstr "Rendszer lapozófájl"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1312,32 +1313,32 @@ msgstr "Bájt elküldve"
msgid "Bytes received"
msgstr "Fogadott bájtok"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Kapcsolatok"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1351,11 +1352,11 @@ msgstr "%d tábla"
msgid "Questions"
msgstr "Kérdések"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Forgalom"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Beállítások"
@@ -1376,10 +1377,10 @@ msgid "Please add at least one variable to the series"
msgstr "Legalább egy változót adjon meg a sorozathoz"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nincs"
@@ -1477,7 +1478,7 @@ msgstr "Beállítások megváltoztatása"
msgid "Current settings"
msgstr "Jelenlegi beállítások"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Diagramcím"
@@ -1557,9 +1558,9 @@ msgstr "Elemzés…"
msgid "Explain output"
msgstr "A kimenet magyarázata"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Idő"
@@ -1658,7 +1659,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importálás"
@@ -1782,19 +1783,19 @@ msgstr "Indexek elrejtése"
msgid "Show indexes"
msgstr "Indexek megjelenítése"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Az idegen kulcsok ellenőrzésének letiltása"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Engedélyezett"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1865,7 +1866,7 @@ msgstr "SQL-lekérdezési panelek mutatása"
msgid "No rows selected"
msgstr "Nem jelölte ki a sort"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Módosítás"
@@ -1874,17 +1875,18 @@ msgstr "Módosítás"
msgid "Query execution time"
msgstr "A lekérdezés végrehajtási ideje"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "A(z) %d érvénytelen sorszám."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Mentés"
@@ -1911,79 +1913,71 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Válasszon két oszlopot"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Válasszon két különböző oszlopot"
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Műveletek a lekérdezési eredménnyel"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Adatmutató mérete"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Kihagyás"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Másolás"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Oszlopok hozzáadása"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Válassza ki a hivatkozott kulcsot"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Idegen kulcs kiválasztása"
-#: js/messages.php:343
+#: js/messages.php:339
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:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Válassza ki a megjelenítendő oszlopot"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1991,88 +1985,88 @@ 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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Adjon meg egy opciót az oszlophoz "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Nyomja meg az escape-et a szerkesztés megszakításához"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Kattintson a rendezéshez"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ugrás a hivatkozáshoz"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Oszlopnevek"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Sor(ok) frissítése"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Jelszó generálása"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generálás"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Jelszó megváltoztatása"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Több"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2082,268 +2076,268 @@ msgstr ""
"%s, kiadás dátuma: %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", utolsó stabil verzió:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "friss"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Kész"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Előző"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Ma"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Január"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Február"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Március"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Április"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Május"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Június"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Július"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Augusztus"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Szeptember"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Október"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec."
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Vasárnap"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Hétfő"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Kedd"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Szerda"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Csütörtök"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Péntek"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Szombat"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Vas"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Hét"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ked"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Csü"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pén"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Va"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Hé"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pé"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Hét"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nincs"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Óra"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Perc"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "másodperc"
@@ -2394,16 +2388,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "másodpercenként"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "percenként"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "óránként"
@@ -2536,15 +2530,15 @@ msgstr ""
msgid "Databases"
msgstr "Adatbázisok"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Kiszolgáló"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2556,20 +2550,20 @@ msgid "Structure"
msgstr "Szerkezet"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Beszúrás"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Műveletek"
@@ -2627,12 +2621,12 @@ msgstr "Felhasználók"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Bináris napló"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Változók"
@@ -2649,8 +2643,9 @@ msgid "Engines"
msgstr "Motorok"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Hiba"
@@ -2770,35 +2765,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nincs előnézet."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "csináld"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "A(z) %s alapértelmezett téma nem található!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Nem található a(z) %s téma!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nem található a(z) %s téma elérési útja!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Téma"
@@ -2839,14 +2834,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3106,11 +3101,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
-"%1$stelepítőszkripttel%2$s el tudja készíteni."
+"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
+"$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3217,7 +3212,7 @@ msgstr "megosztott"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Táblák"
@@ -3268,22 +3263,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "A beállítófájl olvasása meghiúsult"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nem lehetett betölteni az alapértelmezett konfigurációt innen: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3295,21 +3290,21 @@ msgstr ""
"A $cfg['PmaAbsoluteUri'] utasítás értékét a konfigurációs "
"fájlban KELL megadni!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Érvénytelen szerverindex: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Frissítenie kell %s %s vagy újabb verzióra."
@@ -3344,8 +3339,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-lekérdezés"
@@ -3383,7 +3378,7 @@ msgid "Create PHP Code"
msgstr "PHP-kód létrehozása"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Frissítés"
@@ -3404,101 +3399,101 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Belső"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Adatgyűjtés"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Vas"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y. %B %d. %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Hiányzó paraméter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "A tetejére"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Előző"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Következő"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Vége"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Ugrás a(z) "%s" adatbázishoz."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Kattintson a kijelöléshez."
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Számítógép tallózása:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nincsenek feltöltendő fájlok"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Végrehajtás"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Nyomtatás"
@@ -3671,9 +3666,9 @@ msgstr "Alapértelmezett érték visszaállítása"
msgid "Allow users to customize this value"
msgstr "Engedélyezi a felhasználóknak az érték módosítását"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Visszaállítás"
@@ -3838,7 +3833,7 @@ msgid "Compress on the fly"
msgstr "Menet közbeni tömörítés"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurációs fájl"
@@ -3900,7 +3895,7 @@ msgstr "Táblaszerkezet ajánlása"
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:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Bináris tartalom megjelenítése HEX-ként"
@@ -5822,7 +5817,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Új verzió ellenőrzése"
@@ -5969,7 +5964,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5977,19 +5972,19 @@ msgstr ""
"A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően "
"beállítotva)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "A kiszolgáló nem válaszol."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Részletek..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6153,8 +6148,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával "
"történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő "
@@ -6347,52 +6342,57 @@ msgstr "Formátum specifikus beállítások:"
msgid "Language"
msgstr "Nyelv"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "A módosított adatok mentése"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
msgstr "Szövegterület oszlopai"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Indítás"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Sorok száma"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Mód"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vízszintesen"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vízszintesen (elforgatott fejlécek)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "függőlegesen"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute every"
+msgid "Headers every"
+msgstr "Végrehajtás minden"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Tartalom"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Kulcs szerinti rendezés"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6410,93 +6410,93 @@ msgstr "Kulcs szerinti rendezés"
msgid "Options"
msgstr "Beállítások"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Részleges szövegek"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Teljes szövegek"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relációs kulcs"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relációs megjelenítési mező"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Bináris tartalom megjelenítése"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB-tartalom megjelenítése"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Böngésző átalakítása"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "A sor törlése megtörtént"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Leállít"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "lekérdezésben"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Megjelenített sorok:"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "összesen"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "a lekérdezés %01.4f másodpercig tartott"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Műveletek a lekérdezési eredménnyel"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Nyomtatási nézet (teljes szöveggel)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Diagram megjelenítése"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Nézet létrehozása"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Nem található a hivatkozás"
@@ -6544,7 +6544,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Pufferkészlet"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB állapota"
@@ -6838,8 +6838,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6966,12 +6966,12 @@ msgstr "MIME-típusok megjelenítése"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Hoszt"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Létrehozás ideje"
@@ -7198,8 +7198,8 @@ msgstr "Nem található adat a grafikonhoz"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)."
@@ -7369,6 +7369,98 @@ msgstr "SQL kompatibilitási mód:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ne használja az AUTO_INCREMENT-et nulla értékekhez"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Függvény"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Elrejtés"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Bináris"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "A hossza miatt ez az oszlop talán nem szerkeszthető"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Bináris - nem szerkeszthető"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "webszerver feltöltési könyvtár"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Szerkesztés/Beszúrás"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Beszúrás folytatása a(z) %s sorokkal"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "és utána"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Beszúrás új sorként"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Beillesztő lekérdezés megjelenítése"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Vissza az előző oldalra"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Új sor beszúrása"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Visszatérés erre az oldalra"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Következő sor szerkesztése"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová "
+"léphet."
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Érték"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Megjelenítés SQL lekérdezésként"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "A beszúrt sor azonosítószáma: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7379,34 +7471,34 @@ msgstr "Nincs"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Ettől"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Indítás"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Valóban a következőt akarja "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nincs változás"
@@ -7414,11 +7506,6 @@ msgstr "Nincs változás"
msgid "Charset"
msgstr "Karakterkészlet"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Bináris"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bolgár"
@@ -7757,18 +7844,10 @@ msgid "Slave status"
msgstr "Másodlagos állapot"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Változó"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Érték"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Szerver AZ"
@@ -8109,11 +8188,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Eljárás paraméterei"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Függvény"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8456,7 +8530,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Törlés"
@@ -8464,11 +8538,11 @@ msgstr "Törlés"
msgid "Columns"
msgstr "Oszlopok"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
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:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
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 "
@@ -8494,10 +8568,6 @@ msgstr "A fenti lekérdezés megjelenítése itt újra"
msgid "View only"
msgstr "Csak megtekinthető"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "webszerver feltöltési könyvtár"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8568,8 +8638,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
-"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
+"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
+"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
#: libraries/tbl_common.inc.php:58
@@ -8702,10 +8772,6 @@ msgstr "Kezelő"
msgid "Table Search"
msgstr "Keresés"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Szerkesztés/Beszúrás"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8934,7 +9000,7 @@ msgstr "Protokoll verzió"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Felhasználó"
@@ -9171,10 +9237,6 @@ msgstr "Minden elrejtése/megjelenítése"
msgid "Hide/Show Tables with no relation"
msgstr "A kapcsolat nélküli táblák megjelenítése/elrejtése"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Elrejtés"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Táblák száma"
@@ -9333,8 +9395,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"További beállításokat állíthat be a config.inc.php modosításával, pl. "
-"%sBeállító parancsfájl%s használatával."
+"További beállításokat állíthat be a config.inc.php modosításával, pl. %"
+"sBeállító parancsfájl%s használatával."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -9376,17 +9438,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:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Fájlok"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "A megjelenített lekérdezések lerövidítése"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Teljes lekérdezések megjelenítése"
@@ -9836,13 +9898,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
-"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
-"%stöltse be újra a jogokat%s a folytatás előtt."
+"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
+"stöltse be újra a jogokat%s a folytatás előtt."
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -9960,7 +10022,7 @@ msgstr "A jogok újratöltése sikerült."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Kisegítő állapot megjelenítése"
@@ -10101,12 +10163,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sikerült leállítani a(z) %s. szálat."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10114,136 +10176,136 @@ 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Kezelő"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Lekérdezési gyorsítótár"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Szálak"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Ideiglenes adatok"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Késleltetett beszúrások"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Kulcs gyorsítótár"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Illesztések"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Rendezés"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Tranzakció koordinátor"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Összes tábla kiírása (bezárása)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Nyitott táblák megjelenítése"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Kisegítő állomások megjelenítése"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Kisegítő állapot megjelenítése"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Lekérdezési gyorsítótár kiírása"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Futtatási információk"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Frissítési időköz: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Szűrő"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Tartalmazza ezt a szót:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Csak a figyelmeztető értékek megjelenítése"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Formázatlan értékek megjelenítése"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Kapcsolódó hivatkozások:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Elemző futtatása"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Utasítások"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10251,46 +10313,46 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "A kezdőlap testreszabása"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Utasítások"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ez a MySQL szerver %1$s óta fut. Indítás időpontja: %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10298,11 +10360,11 @@ msgstr ""
"A szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Többszörözéses állapot"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10310,47 +10372,47 @@ msgstr ""
"Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által "
"jelentett statisztikák pontatlanok lehetnek."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Fogadott"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Küldött"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Max. egyidejű kapcsolatok száma"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Sikertelen próbák"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Megszakítva"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "AZ"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Parancs"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10360,17 +10422,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10382,11 +10444,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10394,7 +10456,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10402,7 +10464,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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10410,23 +10472,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "A beírt INSERT DELAYED sorok száma."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "A végrehajtott FLUSH utasítások száma."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "A belső COMMIT utasítások száma."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10436,7 +10498,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10447,7 +10509,7 @@ msgstr ""
"például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül "
"indexelésre."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10455,7 +10517,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10465,7 +10527,7 @@ msgstr ""
"ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot "
"végez."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10473,7 +10535,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10485,7 +10547,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:1337
+#: server_status.php:1340
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 "
@@ -10497,35 +10559,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "A belső ROLLBACK utasítások száma."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "A jelenleg piszkos lapok száma."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "A szabad lapok száma."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10535,7 +10597,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:1346
+#: server_status.php:1349
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 "
@@ -10548,11 +10610,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is "
"számolható."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "A pufferkészlet teljes mérete lapokban."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10561,7 +10623,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10569,11 +10631,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10581,7 +10643,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:1352
+#: server_status.php:1355
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 "
@@ -10596,53 +10658,53 @@ msgstr ""
"méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell "
"lennie."
-#: server_status.php:1353
+#: server_status.php:1356
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:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Az fsync() műveletek eddigi száma."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "A folyamatban lévő fsync() műveletek száma."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "A folyamatban lévő olvasások száma."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "A folyamatban lévő írások száma."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Az eddig beolvasott adatok mennyisége bájtban."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Az összes beolvasott adat."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Az összes írott adat."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Az összes írott adat, bájtban."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10650,35 +10712,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "A naplóírási kérések száma."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "A naplófájlba történt fsync() írások száma."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "A folyamatban lévő naplófájl fsync-ek száma."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "A folyamatban lévő naplófájl írások száma."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "A naplófájlba írt bájtok száma."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "A létrehozott lapok száma."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10687,51 +10749,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "A beolvasott lapok száma."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Az írott lapok száma."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "A sorzárolásokra fordított összes idő, milliszekundumban."
-#: server_status.php:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
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:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Az InnoDB táblákba beszúrt sorok száma."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Az InnoDB táblákból beolvasott sorok száma."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Az InnoDB táblákban frissített sorok száma."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10739,7 +10801,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:1385
+#: server_status.php:1388
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."
@@ -10747,7 +10809,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:1386
+#: server_status.php:1389
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 "
@@ -10756,17 +10818,17 @@ msgstr ""
"A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális "
"jel, mely a valamikor használatban volt blokkok számát jelzi."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Az importált fájl formátuma"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10777,26 +10839,26 @@ msgstr ""
"sikertelen találatainak aránya a Key_reads/Key_read_requests alapján "
"számítható ki."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10807,17 +10869,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10825,40 +10887,40 @@ msgstr ""
"Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor "
"valószínűleg túl kicsi a táblagyorsítótár értéke."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "A megnyitott fájlok száma."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "A megnyitott táblák száma."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
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:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "A gyorsítótár találatok száma."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "A gyorsítótárhoz adott lekérdezések száma."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10871,7 +10933,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10879,19 +10941,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "A gyorsítótárban bejegyzett lekérdezések száma."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
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:1410
+#: server_status.php:1413
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."
@@ -10899,11 +10961,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10912,7 +10974,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10920,15 +10982,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10936,11 +10998,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10948,14 +11010,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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10965,23 +11027,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "A tartományokkal végzett rendezések száma."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Rendezett sorok száma."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10993,7 +11055,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11003,11 +11065,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "A jelenleg megnyitott kapcsolatok száma."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11018,66 +11080,66 @@ 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:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Nyomkövetés inaktív."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "A nem alvó szálak száma."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Indítás"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Diagram hozzáadása"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Frissítési időköz"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Diagram oszlopai"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Visszaállítás az alapértékre"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "Információ"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11086,7 +11148,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11094,18 +11156,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11113,11 +11175,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11125,100 +11187,100 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Adatbázis eltávolítása"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Táblák kiválasztása"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Érvénytelen táblanév"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Új szerver hozzáadása"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL-lekérdezések"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Naplóstatisztikák"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Táblák kiválasztása"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Lekérdezés típusa"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d másodperc"
msgstr[1] "%d másodperc"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11350,7 +11412,7 @@ msgstr "Munkamenet értéke"
msgid "Global value"
msgstr "Globális változó"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Letöltés"
@@ -11420,39 +11482,39 @@ msgstr "Nincsenek konfigurált szerverek"
msgid "New server"
msgstr "Új szerver"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Alapértelmezett nyelv"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "válassza ki a felhasználó"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- nincs -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Alapértelmezett szerver"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Sorvége"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Nézet"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Betöltés"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin honlap"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Adományozás"
@@ -11709,53 +11771,44 @@ msgstr ""
msgid "Wrong data"
msgstr "Hibás adat"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Az idegen kulcsok böngészése"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Valóban a következőt akarja "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "A beszúrt sor azonosítószáma: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Megjelenítés PHP kódként"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Megjelenítés SQL lekérdezésként"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Érvényes SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-eredmény"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Készítette"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Név"
@@ -11770,58 +11823,6 @@ msgstr "A(z) %1$s tábla módosítása sikerült"
msgid "The columns have been moved successfully."
msgstr "A kiválasztott felhasználók törlése sikerült."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "A hossza miatt ez az oszlop talán nem szerkeszthető"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Bináris - nem szerkeszthető"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Beszúrás új sorként"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Beillesztő lekérdezés megjelenítése"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "és utána"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Vissza az előző oldalra"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Új sor beszúrása"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Visszatérés erre az oldalra"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Következő sor szerkesztése"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová "
-"léphet."
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Beszúrás folytatása a(z) %s sorokkal"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12437,35 +12438,41 @@ msgstr ""
msgid "Create version"
msgstr "Verzió létrehozása"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "További keresési feltételek"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "A megjelenítendő sorok száma"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Hogyan kell használni"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Visszaállítás"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Több téma letöltése"
@@ -12820,8 +12827,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12952,8 +12959,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13943,8 +13950,8 @@ msgstr "Max. egyidejű kapcsolatok száma"
#~ "No themes support; please check your configuration and/or your themes in "
#~ "directory %s."
#~ msgstr ""
-#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) "
-#~ "%s könyvtárban."
+#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %"
+#~ "s könyvtárban."
#~ msgid "Switch to"
#~ msgstr "Váltás"
@@ -13967,9 +13974,6 @@ msgstr "Max. egyidejű kapcsolatok száma"
#~ msgid "No trigger with name %s found"
#~ msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
-#~ msgid "rows"
-#~ msgstr "Tartalom"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "sor a következő számú rekordtól kezdődően:"
diff --git a/po/hy.po b/po/hy.po
index 9af0ac33e5..4e625bacff 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -7,24 +7,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-23 10:41+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: none\n"
-"Language: hy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: hy\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,28 +32,29 @@ msgstr ""
msgid "Page number:"
msgstr ""
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr ""
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr ""
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr ""
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr ""
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr ""
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr ""
@@ -121,12 +121,12 @@ msgstr ""
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr ""
@@ -135,6 +135,7 @@ msgstr ""
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -152,12 +153,12 @@ msgstr ""
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr ""
@@ -196,13 +197,13 @@ msgstr ""
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr ""
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +355,7 @@ msgstr ""
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
@@ -405,28 +406,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr ""
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr ""
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr ""
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr ""
@@ -447,8 +448,8 @@ msgid "Del"
msgstr ""
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr ""
@@ -517,8 +518,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -527,14 +528,14 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr ""
@@ -602,11 +603,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -616,7 +617,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -630,20 +631,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr ""
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -655,27 +656,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -701,11 +702,11 @@ msgstr ""
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -724,8 +725,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -743,7 +744,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -841,45 +842,45 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr ""
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -887,15 +888,15 @@ msgstr ""
msgid "Add a linestring"
msgstr ""
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -916,8 +917,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -957,7 +958,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,7 +981,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -995,7 +996,7 @@ msgstr ""
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1004,7 +1005,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1090,21 +1091,21 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1115,23 +1116,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ""
@@ -1151,7 +1152,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1169,7 +1170,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1210,14 +1211,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr ""
@@ -1269,32 +1270,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr ""
@@ -1308,11 +1309,11 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr ""
@@ -1333,10 +1334,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr ""
@@ -1429,7 +1430,7 @@ msgstr ""
msgid "Current settings"
msgstr ""
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr ""
@@ -1505,9 +1506,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1598,7 +1599,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr ""
@@ -1718,15 +1719,15 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr ""
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr ""
@@ -1793,7 +1794,7 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
@@ -1802,17 +1803,18 @@ msgstr ""
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -1837,158 +1839,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr ""
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr ""
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1996,266 +1990,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr ""
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr ""
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr ""
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr ""
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr ""
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr ""
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr ""
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr ""
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr ""
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr ""
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr ""
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr ""
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr ""
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr ""
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr ""
@@ -2305,16 +2299,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2439,15 +2433,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2459,20 +2453,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2530,12 +2524,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2552,8 +2546,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
@@ -2665,35 +2660,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2734,14 +2729,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -2991,8 +2986,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3090,7 +3085,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3141,42 +3136,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3211,8 +3206,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3250,7 +3245,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3271,95 +3266,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3531,9 +3526,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3677,7 +3672,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3735,7 +3730,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5467,7 +5462,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5605,25 +5600,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5781,8 +5776,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5958,48 +5953,51 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6017,89 +6015,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6143,7 +6141,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6394,8 +6392,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6516,12 +6514,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6719,8 +6717,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6882,6 +6880,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6892,32 +6980,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6925,11 +7013,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7254,18 +7337,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7583,11 +7658,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7907,7 +7977,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7915,11 +7985,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7943,10 +8013,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8117,10 +8183,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8292,7 +8354,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8485,10 +8547,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8679,17 +8737,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9114,8 +9172,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9230,7 +9288,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9363,146 +9421,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9510,115 +9568,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9626,78 +9684,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9705,7 +9763,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9713,42 +9771,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -9756,33 +9814,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -9791,242 +9849,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
msgid ""
"The number of queries that have been removed from the cache to free up "
"memory for caching new queries. This information can help you tune the query "
@@ -10034,99 +10092,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10134,18 +10192,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
@@ -10153,61 +10211,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10216,7 +10274,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10224,18 +10282,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10243,11 +10301,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10255,86 +10313,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10466,7 +10524,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10528,39 +10586,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10746,51 +10804,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10803,56 +10852,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr ""
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11433,30 +11432,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -11792,8 +11795,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -11911,8 +11914,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/id.po b/po/id.po
index 9a8997a6ca..79e3823303 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-27 16:57+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: indonesian \n"
-"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 0.8\n"
"X-Poedit-Basepath: ../../..\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Tampilkan semua"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Tampilkan semua"
msgid "Page number:"
msgstr "Nomor halaman:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"menutup jendela induk atau pilihan keamanan pada peramban Anda mencekal "
"pembaruan lintas-jendela"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Cari"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kirim"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nama kunci"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Deskripsi"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Gunakan nilai ini"
@@ -123,12 +123,12 @@ msgstr "Komentar tabel"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolom"
@@ -137,6 +137,7 @@ msgstr "Kolom"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Kolom"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Jenis"
@@ -154,12 +155,12 @@ msgstr "Jenis"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Kosong"
@@ -198,13 +199,13 @@ msgstr "Komentar"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Tidak"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -361,7 +362,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Baris"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Alihkan ke %spembangun visual%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Urutan"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Menaik"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Menurun"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Tampilkan"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "Hapus"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Atau"
@@ -524,8 +525,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%s cocok dalam tabel %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Jelajahi"
@@ -534,14 +535,14 @@ msgstr "Jelajahi"
msgid "Delete the matches for the %s table?"
msgstr "Hapus yang cocok untuk %s tabel?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Hapus"
@@ -608,14 +609,14 @@ msgstr "Pelacakan aktif"
msgid "Tracking is not active."
msgstr "Pelacakan tidak aktif."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat "
-"%sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %"
+"sdokumentasi%s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -624,7 +625,7 @@ msgstr "Gambarkan"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikasi"
@@ -638,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s adalah mesin penyimpanan utama pada server MySQL ini."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Dengan pilihan:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Pilih Semua"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -663,28 +664,28 @@ msgstr "Pilih tabel berbeban tambahan"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Ekspor"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Tampilan cetak"
# Imperative menu
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Kosongkan"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -710,11 +711,11 @@ msgstr "Analisis tabel"
msgid "Add prefix to table"
msgstr "Tambahkan prefiks untuk tabel"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Ganti prefiks tabel"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Salin tabel dengan prefiks"
@@ -733,8 +734,8 @@ msgstr "Tabel yang dilacak"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Basis data"
@@ -752,7 +753,7 @@ msgstr "Diperbarui"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -852,45 +853,45 @@ msgstr "Gunakan OpenStreetMaps sebagai Lapisan Dasar"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometri"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Titik"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Titik %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Tambahkan titik"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Segmen garis"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Lingkar Luar"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Lingkar Dalam"
@@ -898,15 +899,15 @@ msgstr "Lingkar Dalam"
msgid "Add a linestring"
msgstr "Tambahkan segmen garis"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Tambahkan lingkar dalam"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Tambahkan poligon"
@@ -929,11 +930,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat "
-"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat %"
+"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -979,7 +980,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Markah %s dibuat"
@@ -1007,7 +1008,7 @@ msgstr ""
"waktu eksekusi php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1024,7 +1025,7 @@ msgstr ""
"Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung "
"frame."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Perintah \"DROP DATABASE\" dinonaktifkan."
@@ -1034,7 +1035,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan."
msgid "Do you really want to execute \"%s\"?"
msgstr "Benarkah Anda ingin untuk "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Anda akan MENGHAPUS seluruh basis data!"
@@ -1120,21 +1121,21 @@ msgstr "Tutup"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edit"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Bagan lalu lintas langsung"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Bagan koneksi/proses langsung"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Bagan kueri langsung"
@@ -1145,23 +1146,23 @@ msgstr "Data statis"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jumlah"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Lainnya"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1181,7 +1182,7 @@ msgstr "Lalu lintas server (dalam KB)"
msgid "Connections since last refresh"
msgstr "Koneksi sejak dibuka terakhir"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Proses Aktif"
@@ -1199,7 +1200,7 @@ msgstr "Perintah sejak penyegaran terakhir"
msgid "Questions (executed statements by the server)"
msgstr "Pertanyaan (statement yang dieksekusi server)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistik kueri"
@@ -1244,14 +1245,14 @@ msgid "System swap"
msgstr "Swap sistem"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1303,32 +1304,32 @@ msgstr "Bita dikirim"
msgid "Bytes received"
msgstr "Bita diterima"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Koneksi"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1342,11 +1343,11 @@ msgstr "%d tabel"
msgid "Questions"
msgstr "Perintah"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Lalu Lintas"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Pengaturan"
@@ -1367,10 +1368,10 @@ msgid "Please add at least one variable to the series"
msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Tidak ada"
@@ -1470,7 +1471,7 @@ msgstr "Ubah pengaturan"
msgid "Current settings"
msgstr "Pengaturan saat ini"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Judul Bagan"
@@ -1556,9 +1557,9 @@ msgstr "Menganalisis..."
msgid "Explain output"
msgstr "Jelaskan hasil"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Waktu"
@@ -1658,7 +1659,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Impor"
@@ -1782,19 +1783,19 @@ msgstr "Sembunyikan indeks"
msgid "Show indexes"
msgstr "Tampilkan indeks"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Tanpa pemeriksaan kunci asing"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Aktif"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1865,7 +1866,7 @@ msgstr "Tampilkan kotak kueri"
msgid "No rows selected"
msgstr "Tidak ada baris yang dipilih"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ubah"
@@ -1874,17 +1875,18 @@ msgstr "Ubah"
msgid "Query execution time"
msgstr "Waktu eksekusi kueri"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d bukanlah nomor baris yang berlaku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Simpan"
@@ -1909,77 +1911,69 @@ msgid "Hovering over a point will show its label."
msgstr "Melayang di atas titik akan menunjukkan labelnya."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Gunakan roda tetikus untuk memperbesar atau keluar dari plot."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Klik dan tarik tetikus untuk mengarah ke plot."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Klik link Zoom reset untuk kembali ke keadaan semula."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Klik titik data untuk melihat dan mungkin mengedit baris data."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Plot dapat diubah ukurannya dengan menyeretnya di sepanjang sudut kanan "
"bawah."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "string dikonversi menjadi integer untuk perencanaan"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Pilih dua kolom"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Pilih dua kolom yang berbeda"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Operasi hasil pertanyaan"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Isi titk data"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Abaikan"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Salin"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Tambahkan kolom"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Pilih kunci rujukan"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Pilih Foreign Key"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Harap pilih kunci primer atau kunci unik"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Pilih kolom untuk ditampilkan"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1987,15 +1981,15 @@ msgstr ""
"Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda "
"tidak menyimpannya. Apakah Anda ingin melanjutkan?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Tambahkan pilihan untuk kolom"
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Tekan escape untuk membatalkan pengeditan"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2003,27 +1997,27 @@ msgstr ""
"Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin "
"akan meninggalkan halaman ini sebelum menyimpan data?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Seret untuk mengubah urutan"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Klik untuk mengurutkan"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klik untuk memberi/menghapus tanda"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klik tanda panah ke bawah untuk beralih visibilitas kolom"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2032,50 +2026,50 @@ msgstr ""
"grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja "
"setelah disimpan."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Anda juga dapat mengedit sebagian besar kolom dengan mengeklik langsung "
"konten."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Tuju ke tautan"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Nama kolom"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Perbarui baris"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Hasilkan kata sandi"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Hasilkan"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Ubah Sandi"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Lainnya"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2085,266 +2079,266 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "Mutakhir"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Selesai"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Sblm"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Brkt"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hari ini"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Januari"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Februari"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Maret"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "April"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mei"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agustus"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Agu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Des"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Rabu"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Kamis"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Min"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Sen"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Kam"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Min"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Sn"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Sl"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Rb"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Km"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Jm"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Mingguan"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "Kalender-bulan-tahun"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Kosong"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Jam"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Menit"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Detik"
@@ -2398,16 +2392,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per detik"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per menit"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "dalam sejam"
@@ -2539,15 +2533,15 @@ msgstr ""
msgid "Databases"
msgstr "Basis data"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2559,20 +2553,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Tambahkan"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operasi"
@@ -2630,12 +2624,12 @@ msgstr "Pengguna"
msgid "Synchronize"
msgstr "Sinkronisasi"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Log biner"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabel"
@@ -2652,8 +2646,9 @@ msgid "Engines"
msgstr "Mesin"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Galat"
@@ -2776,35 +2771,35 @@ msgstr ""
"terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika "
"struktur tabel telah berubah."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Tidak ada pratayang tersedia."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "ambil ini"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema %s bawaan tidak ditemukan!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s tidak ditemukan!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2845,14 +2840,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3112,11 +3107,11 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan "
-"%1$ssetup script%2$s untuk membuatnya."
+"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1"
+"$ssetup script%2$s untuk membuatnya."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3222,7 +3217,7 @@ msgstr "dibagi"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabel"
@@ -3273,11 +3268,11 @@ msgstr "memungkinkan mengeksploitasi"
msgid "numeric key detected"
msgstr "tombol angka terdeteksi"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Gagal membaca berkas konfigurasi"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3285,12 +3280,12 @@ msgstr ""
"Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek "
"kesalahan di bawah ini."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Tidak dapat memuat konfigurasi default dari: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3302,22 +3297,22 @@ msgstr ""
"Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam berkas "
"konfigurasi!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Indeks server tidak sah: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Anda harus memperbarui ke %s %s atau lebih baru."
@@ -3352,8 +3347,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Pencarian SQL"
@@ -3391,7 +3386,7 @@ msgid "Create PHP Code"
msgstr "Buat kode PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Segarkan"
@@ -3412,95 +3407,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Edit di tempat"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Minggu"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y pada %H.%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parameter yang hilang:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Awal"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Sebelumnya"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Berikutnya"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Akhir"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Langsung ke basis data "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klik untuk beralih"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Telusuri komputer Anda:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Pilih dari direktori unggah %s pada web server:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Tidak ada arsip untuk diunggah"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Eksekusi"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Cetak"
@@ -3674,9 +3669,9 @@ msgstr "Kembalikan nilai bawaan"
msgid "Allow users to customize this value"
msgstr "Izinkan pengguna untuk mengubah nilai ini"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Reset"
@@ -3834,7 +3829,7 @@ msgid "Compress on the fly"
msgstr "Pampatkan sambil jalan"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Berkas konfigurasi"
@@ -3896,7 +3891,7 @@ msgstr "Usulkan struktur tabel"
msgid "Show binary contents as HEX by default"
msgstr "Tampilkan konten biner dalam HEX sebagai bawaan"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Tampilkan konten biner dalam HEX"
@@ -5663,7 +5658,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Aktifkan tab pengembang dalam pengaturan"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Periksa versi terbaru"
@@ -5803,7 +5798,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5811,19 +5806,19 @@ msgstr ""
"Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan "
"benar)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Server tidak merespons."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Harap periksa hak akses direktori basis data."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Rincian..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5984,8 +5979,8 @@ msgstr ", @TABLE@ akan menjadi nama tabel"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6170,48 +6165,53 @@ msgstr "Opsi Format Khusus:"
msgid "Language"
msgstr "Bahasa"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Simpan data yang diedit"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Pulihkan urutan kolom"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Baris mulai"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Jumlah baris"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Modus"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horisontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horisontal (judul diputar)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Judul setiap %s baris"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Browse"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Urut berdasarkan kunci"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6229,91 +6229,91 @@ msgstr "Urut berdasarkan kunci"
msgid "Options"
msgstr "Opsi"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Teks parsial"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Teks penuh"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Kunci relasi"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Kolom tampilan relasi"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Tampilkan konten biner"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Tampilkan konten BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Transformasi Browser"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Baris telah dihapus"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Tutup"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "dalam susunan pemeriksaan"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Tampilan baris"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Pencarian dilakukan dalam %01.4f detik"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operasi hasil kueri"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Tampilan cetak (teks lengkap)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Tampilkan bagan"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Buat tampilan"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Tautan tidak ditemukan"
@@ -6361,7 +6361,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Penampungan Penyangga"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Status InnoDB"
@@ -6629,8 +6629,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6751,12 +6751,12 @@ msgstr "Tampilkan jenis MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Inang"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Waktu pembuatan"
@@ -6958,8 +6958,8 @@ msgstr "Data untuk visualisasi GIS tidak ditemukan."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memberikan hasil kosong (atau nol baris)."
@@ -7126,6 +7126,98 @@ msgstr "Modus kompatibilitas SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Fungsi"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Sembunyikan"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Biner"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Karena panjangnya, isian ini mungkin tidak dapat diedit"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Biner - jangan diedit"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "direktori unggahan server web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Edit/Tambah"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Lanjutkan penambahan untuk %s baris"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "selanjutnya"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Tambahkan sebagai baris baru"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Tambahkan sebagai baris baru dan abaikan galat"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Tampilkan kueri penambahan"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "kembali"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "tambahkan baris baru berikutnya"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Kembali ke halaman ini"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Edit baris berikut"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah "
+"untuk maju kemana saja"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Nilai"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Menampilkan kueri SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Nomor baris baru: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7136,34 +7228,34 @@ msgstr "Tidak ada"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Dari"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Menjadi"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Kirim"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Tambahkan prefiks tabel"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Tambahkan prefiks"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Benarkah Anda ingin untuk "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Tidak ada perubahan"
@@ -7171,11 +7263,6 @@ msgstr "Tidak ada perubahan"
msgid "Charset"
msgstr "Perangkat karakter (Charset)"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Biner"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgaria"
@@ -7504,18 +7591,10 @@ msgid "Slave status"
msgstr "Status slave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Nilai"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID Server"
@@ -7834,11 +7913,6 @@ msgstr "Jalankan routine"
msgid "Routine parameters"
msgstr "Parameter routine"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Fungsi"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Maaf, kami gagal memulihkan trigger yang dihapus."
@@ -8162,7 +8236,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Jalankan perintah SQL pada basis data %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Bersihkan"
@@ -8170,11 +8244,11 @@ msgstr "Bersihkan"
msgid "Columns"
msgstr "Kolom"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Markahi kueri SQL ini"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Izinkan semua pengguna untuk mengakses markah ini"
@@ -8198,10 +8272,6 @@ msgstr "Tampilkan ulang perintah SQL "
msgid "View only"
msgstr "Hanya melihat"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "direktori unggahan server web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8401,10 +8471,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Pencarian Tabel"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Edit/Tambah"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8609,7 +8675,7 @@ msgstr "Versi protokol"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Pengguna"
@@ -8825,10 +8891,6 @@ msgstr "Sembunyikan/Tampilkan semua"
msgid "Hide/Show Tables with no relation"
msgstr "Tampilkan/Sembunyikan Tabel tanpa relasi"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Sembunyikan"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Jumlah tabel"
@@ -9022,17 +9084,17 @@ msgstr "Berkas tidak ditemukan"
msgid "Select binary log to view"
msgstr "Pilih log biner untuk ditampilkan"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Berkas"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Potongkan pencarian yang ditampilkan"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Tampilkan pencarian yang lengkap"
@@ -9482,8 +9544,8 @@ msgstr "Hapus basis data yang memiliki nama yang sama dengan pengguna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
@@ -9608,7 +9670,7 @@ msgstr "Server master berhasil diubah menjadi %s"
msgid "This server is configured as master in a replication process."
msgstr "Server ini dikonfigurasikan sebagai master dalam proses replikasi."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Tampilkan status master"
@@ -9748,12 +9810,12 @@ msgstr ""
"Server ini tidak dikonfigurasikan sebagai slave dalam proses replikasi. "
"Apakah Anda ingin mengonfigurasikannya?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Sukses hentikan Thread %s."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -9761,137 +9823,137 @@ msgstr ""
"phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah "
"ditutup terlebih dahulu"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Singgahan kueri"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Thread"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Data temporer"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Penambahan tunda"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Singgahan kunci"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Join"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Pengurutan"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinator transaksi"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Bersihkan (tutup) semua tabel"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Tampilkan tabel terbuka"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Tampilkan inang slave"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Tampilka status slave"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Bersihkan singgahan kueri"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informasi Waktu Eksekusi"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Semua variabel status"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Pemantauan"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Penasihat"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Laju penyegaran:"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
#| msgid "Filter"
msgid "Filters"
msgstr "Filter"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Mengandung kata:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Tampilkan hanya nilai peringatan"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filter menurut kategori..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Tampilkan nilai tanpa format"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Tautan terkait:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Jalankan penganalisis"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instruksi"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9899,32 +9961,32 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Perintah sejak awal: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Keterangan"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Lalu lintas jaringan sejak awal: %sw"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
"Server MySQL ini telah berjalan selama %1$s. Server ini dijalankan pada %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9932,63 +9994,63 @@ msgstr ""
"Server MySQL ini berfungsi sebagai master dan slave dalam "
"proses replication."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Server MySQL ini berfungsi sebagai master dalam proses "
"replication."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Server MySQL ini berfungsi sebagai slave dalam proses replication"
"b>."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Status replikasi"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Penerimaan"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Pengiriman"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Koneksi konkuren maks."
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Gagal"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Pengguguran"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Perintah"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -9996,11 +10058,11 @@ msgstr ""
"Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi "
"dengan baik."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Jumlah upaya koneksi ke server MySQL yang gagal."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10010,16 +10072,16 @@ msgstr ""
"melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk "
"menyimpan perintah dari transaksi."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10031,11 +10093,11 @@ msgstr ""
"mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan "
"di yang berbasis memori daripada yang berbasis diska."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Jumlah berkas temporer yang telah dibuat mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10043,7 +10105,7 @@ msgstr ""
"Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu "
"mengeksekusi perintah."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10051,7 +10113,7 @@ msgstr ""
"Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa "
"galat (kemungkinan karena kunci duplikat)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10059,30 +10121,30 @@ msgstr ""
"Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang "
"menggunakan INSERT DELAYED mendapat satu thread sendiri."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Jumlah baris INSERT DELAYED yang ditulis."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Jumlah perintah FLUSH yang dieksekusi."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Jumlah perintah COMMIT internal."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Berapa kali suatu baris dihapus dari suatu tabel."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10092,7 +10154,7 @@ msgstr ""
"bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, "
"SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10101,7 +10163,7 @@ msgstr ""
"tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan "
"baik."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10111,7 +10173,7 @@ msgstr ""
"bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu "
"rentang batasan atau jika Anda melakukan pemindaian indeks."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10119,7 +10181,7 @@ msgstr ""
"Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca "
"ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10131,7 +10193,7 @@ msgstr ""
"Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh "
"tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10143,42 +10205,42 @@ msgstr ""
"bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak "
"ditulis dengan memanfaatkan indeks yang Anda miliki."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Jumlah perintah ROLLBACK internal."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Jumlah permintaan untuk menambah baris dalam tabel."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Jumlah halaman kotor saat ini."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Jumlah halaman bebas."
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10186,33 +10248,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10221,244 +10283,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Jumlah operasi fsync() tunda saat ini."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Jumlah baca tunda saat ini."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Jumlah tulis tunda saat ini."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Jumlah total baca data."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Jumlah total tulis data."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Jumlah halaman yang dibaca."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Jumlah halaman yang ditulis."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Jumlah baris yang dihapus dari tabel InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Jumlah baris yang dibaca dari tabel InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Jumlah baris yang diperbarui pada tabel InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Percentage of used open files limit"
msgid "Percentage of used key cache (calculated value)"
msgstr "Persentase limit berkas terbuka yang dipakai"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10466,99 +10528,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10566,18 +10628,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10585,63 +10647,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Thread cache hit rate %%"
msgid "Thread cache hit rate (calculated value)"
msgstr "Tingkat penggunaan singgahan thread %%"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Jalankan Pemantauan"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Petunjuk/Penyiapan"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Selesai mengatur ulang/mengedit bagan"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Tambahkan bagan"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Atur ulang/edit bagan"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Laju penyegaran"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Kolom bagan"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Pengaturan bagan"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Kembalikan nilai bawaan"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instruksi Pemantauan"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10650,7 +10712,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10658,18 +10720,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10677,11 +10739,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Harap catat:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10689,85 +10751,85 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Bagan bawaan"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variabel status"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Pilih seri:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Biasa dipantau"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "atau masukkan nama variabel:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Tampilkan sebagai nilai diferensial"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Terapkan pemisah"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Sertakan satuan kepada nilai data"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Tambahkan seri ini"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Bersihkan seri"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Seri pada Bagan:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Statistik log"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Rentang waktu pilihan:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Penganalisis kueri"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d detik"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10900,7 +10962,7 @@ msgstr "Nilai sesi"
msgid "Global value"
msgstr "Nilai global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Unduh"
@@ -10962,39 +11024,39 @@ msgstr "Tidak ada server yang terkonfigurasi"
msgid "New server"
msgstr "Server baru"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Bahasa bawaan"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "biarkan pengguna memilih"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- tidak ada -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Server bawaan"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Akhir baris"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Tampilkan"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Muat"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Situs phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Donasi"
@@ -11184,53 +11246,44 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus."
msgid "Wrong data"
msgstr "Data salah"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Menjelajahi nilai luar"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan."
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Benarkah Anda ingin untuk "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Nomor baris baru: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Tampilkan sebagai kode PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Menampilkan kueri SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL tervalidasi"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Hasil SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Diciptakan oleh"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Judul"
@@ -11245,58 +11298,6 @@ msgstr "Tabel %1$s berhasil diubah"
msgid "The columns have been moved successfully."
msgstr "Sukses menghapus pengguna yang dipilih."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Karena panjangnya, isian ini mungkin tidak dapat diedit"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Biner - jangan diedit"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Tambahkan sebagai baris baru"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Tambahkan sebagai baris baru dan abaikan galat"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Tampilkan kueri penambahan"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "selanjutnya"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "kembali"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "tambahkan baris baru berikutnya"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Kembali ke halaman ini"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Edit baris berikut"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah "
-"untuk maju kemana saja"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Lanjutkan penambahan untuk %s baris"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -11903,32 +11904,38 @@ msgstr "Lacak manipulasi data dari pernyataan berikut:"
msgid "Create version"
msgstr "Buat versi"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Lakukan \"kueri dengan contoh\" (wildcard: \"%\") untuk dua kolom yang "
"berbeda"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Kriteria pencarian tambahan"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Cara pakai"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Reset"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Dapatkan tema lainnya"
@@ -12278,8 +12285,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12405,8 +12412,8 @@ msgstr ""
#| "Rate of temporary tables being written to disk: %s, this value should be "
#| "less than 1 per hour"
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 "
"per jam"
@@ -13135,6 +13142,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Gunakan roda tetikus untuk memperbesar atau keluar dari plot."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Klik dan tarik tetikus untuk mengarah ke plot."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "string dikonversi menjadi integer untuk perencanaan"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13379,9 +13395,6 @@ msgstr ""
#~ msgid "No trigger with name %s found"
#~ msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
-#~ msgid "rows"
-#~ msgstr "Browse"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "baris dimulai dari rekord #"
diff --git a/po/it.po b/po/it.po
index 1246a05294..ac9c76474c 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-07 14:32+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
-"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.10\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostra tutti"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostra tutti"
msgid "Page number:"
msgstr "Numero pagina:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"bloccando gli aggiornamenti fra finestre a causa di qualche impostazione di "
"sicurezza."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Cerca"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Esegui"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Chiave"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descrizione"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Usa questo valore"
@@ -123,12 +123,12 @@ msgstr "Commenti alla tabella"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Campo"
@@ -137,6 +137,7 @@ msgstr "Campo"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Campo"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -154,12 +155,12 @@ msgstr "Tipo"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Commenti"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "No"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Tabella"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Righe"
@@ -409,28 +410,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Passa a %svisual builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordinamento"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Crescente"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Decrescente"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostra"
@@ -451,8 +452,8 @@ msgid "Del"
msgstr "Elimina"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Oppure"
@@ -521,8 +522,8 @@ msgstr[0] "%1$s corrispondenza nella tabella %2$s"
msgstr[1] "%1$s corrispondenze nella tabella %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Mostra"
@@ -531,14 +532,14 @@ msgstr "Mostra"
msgid "Delete the matches for the %s table?"
msgstr "Eliminare le corrispondenze relative alla tabella %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Elimina"
@@ -606,11 +607,11 @@ msgstr "Il tracking è attivo."
msgid "Tracking is not active."
msgstr "Il tracking non è attivo."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@@ -622,7 +623,7 @@ msgstr "Vista"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicazione"
@@ -636,20 +637,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Se selezionati:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Seleziona tutti"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -661,27 +662,27 @@ msgstr "Controllo addizionale"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Esporta"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualizza per stampa"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Svuota"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -707,11 +708,11 @@ msgstr "Analizza tabella"
msgid "Add prefix to table"
msgstr "Aggiungi prefisso alla tabella"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Sostituisci il prefisso della tabella"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copia tabella col prefisso"
@@ -730,8 +731,8 @@ msgstr "Tabelle monitorate"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -749,7 +750,7 @@ msgstr "Aggiornato"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stato"
@@ -850,45 +851,45 @@ msgstr "Usa OpenStreetMaps come livello base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punto"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punto %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Aggiungi un punto"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linestring"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Cerchio Esterno"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Cerchio Interno"
@@ -896,15 +897,15 @@ msgstr "Cerchio Interno"
msgid "Add a linestring"
msgstr "Aggiungi un linestring"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Aggiunge una cerchia interna"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Aggiungi un poligono"
@@ -927,8 +928,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
@@ -982,7 +983,7 @@ msgstr ""
"Non è stato possibile caricare i plugin di importazione, controlla la tua "
"installazione!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Segnalibro %s creato"
@@ -1010,7 +1011,7 @@ msgstr ""
"basso per consentire a phpMyAdmin di terminare l'operazione."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1025,7 +1026,7 @@ msgstr "Indietro"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin funziona meglio con browser che supportano i frames."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
@@ -1034,7 +1035,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
msgid "Do you really want to execute \"%s\"?"
msgstr "Sei sicuro di voler eseguire \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!"
@@ -1120,21 +1121,21 @@ msgstr "Chiudi"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Modifica"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Grafico del traffico in tempo reale"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Grafico delle connessioni e processi in tempo reale"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Grafico delle query in tempo reale"
@@ -1145,23 +1146,23 @@ msgstr "Dati statici"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totale"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Altre"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1181,7 +1182,7 @@ msgstr "Traffico del server (in KiB)"
msgid "Connections since last refresh"
msgstr "Numero di connessioni dall'ultimo aggiornamento"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processi"
@@ -1199,7 +1200,7 @@ msgstr "Numero di 'questions' dall'ultimo aggiornamento"
msgid "Questions (executed statements by the server)"
msgstr "Questions (instruzioni eseguiti dal server)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistiche query"
@@ -1245,14 +1246,14 @@ msgid "System swap"
msgstr "Swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1304,32 +1305,32 @@ msgstr "Byte inviati"
msgid "Bytes received"
msgstr "Byte ricevuti"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Connessioni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1343,11 +1344,11 @@ msgstr "%d tabella/e"
msgid "Questions"
msgstr "Domande"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Traffico"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Impostazioni"
@@ -1368,10 +1369,10 @@ msgid "Please add at least one variable to the series"
msgstr "Aggiungi almeno una variabile alla serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nessuno"
@@ -1471,7 +1472,7 @@ msgstr "Modifica impostazioni"
msgid "Current settings"
msgstr "Impostazioni attuali"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Titolo del diagramma"
@@ -1559,9 +1560,9 @@ msgstr "Analisi in corso..."
msgid "Explain output"
msgstr "Spiega l'output"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tempo"
@@ -1661,7 +1662,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importa"
@@ -1785,17 +1786,17 @@ msgstr "Nascondi gli indici"
msgid "Show indexes"
msgstr "Mostra gli indici"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Controllo delle chiavi straniere:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Abilitato)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Disabilitato)"
@@ -1866,7 +1867,7 @@ msgstr "Mostra riquadro query SQL"
msgid "No rows selected"
msgstr "Nessuna riga selezionata"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Modifica"
@@ -1875,17 +1876,18 @@ msgstr "Modifica"
msgid "Query execution time"
msgstr "Tempo di esecuzione della query"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d non è un numero valido di righe."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Salva"
@@ -1910,80 +1912,71 @@ msgid "Hovering over a point will show its label."
msgstr "Passando il mouse su un punto mostrerà la sua etichetta."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Utilizza la rotellina del mouse per ingrandire o ridurre il piano."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Fai clic e trascina il mouse per navigare il piano."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Fai clic su \"Ripristina zoom\" per tornare allo stato originale."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Clicca su un punto nel piano per visualizzare ed eventualmente modificare la "
"riga di dati."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Il piano può essere ridimensionato trascinandolo dall'angolo in basso a "
"destra."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-"Le stringhe verranno convertite a numeri interi per tracciare il grafico"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Seleziona due campi"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Seleziona due campi diversi"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Risultati della query"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Contenuto del punto"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copia"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Aggiungi campi"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Seleziona le chiavi referenziali"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Seleziona Foreign Key"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Seleziona la chiave primaria o una chiave univoca"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Scegli il campo da mostrare"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1991,15 +1984,15 @@ msgstr ""
"Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno "
"persi se non li salvi. Vuoi procedere?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Aggiungi un'opzione al campo "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Premi Esc per annullare la modifica"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2007,28 +2000,28 @@ msgstr ""
"Hai modificato dei dati e non hai salvato. Sei sicuro di voler navigare via "
"da questa pagina senza salvare i dati?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Trascina per riordinare"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Clicca per ordinare"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Clicca per selezionare/deselezionare"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Clicca sulla freccia per cambiare lo stato di visualizzazzione dei campi"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2037,48 +2030,48 @@ msgstr ""
"modifica, copia ed eliminazione potrebbero non funzionare dopo il "
"salvataggio."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"È possibile modificare la maggior parte dei campi cliccando "
"direttamente sul loro contenuto."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Vai al link"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copia il nome del campo"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Aggiorna riga/righe"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Genera password"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genera"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Cambia password"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Più"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2088,266 +2081,266 @@ msgstr ""
"l'aggiornamento. La versione più recente è la %s, rilasciata il %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", versione stabile piú recente:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "aggiornata"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Fatto"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Prec"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Oggi"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Gennaio"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Febbraio"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Marzo"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Aprile"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maggio"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Giugno"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Luglio"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agosto"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Setttembre"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Ottobre"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembre"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Domenica"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Lunedì"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Martedì"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Mercoledì"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Giovedì"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Venerdì"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Gi"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sett"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Nessuno"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Ora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Secondo"
@@ -2398,16 +2391,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "al secondo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "al minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "all'ora"
@@ -2539,15 +2532,15 @@ msgstr ""
msgid "Databases"
msgstr "Database"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2559,20 +2552,20 @@ msgid "Structure"
msgstr "Struttura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserisci"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operazioni"
@@ -2630,12 +2623,12 @@ msgstr "Utenti"
msgid "Synchronize"
msgstr "Sincronizza"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Log binario"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabili"
@@ -2652,8 +2645,9 @@ msgid "Engines"
msgstr "Motori"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Errore"
@@ -2773,36 +2767,36 @@ msgstr ""
"saranno mantenuti se ricaricate questa pagina. Controllate se la struttura "
"della tabella è cambiata."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nessuna anteprima disponibile."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "prendilo"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema di default %s non trovato!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s non trovato!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Percorso per il tema non trovato %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2843,14 +2837,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3110,8 +3104,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@@ -3218,7 +3212,7 @@ msgstr "condiviso"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabelle"
@@ -3269,11 +3263,11 @@ msgstr "possibile exploit"
msgid "numeric key detected"
msgstr "chiave numerica rilevata"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Lettura del file di configurazione fallita"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3281,12 +3275,12 @@ msgstr ""
"Questo di solito significa che vi è un errore di sintassi in esso, verifica "
"eventuali errori riportati in basso."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Non posso caricare la configurazione predefinita da: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3294,22 +3288,22 @@ msgstr ""
"La direttiva [code]$cfg['PmaAbsoluteUri'][/code] DEVE essere impostata nel "
"file di configurazione!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Indice server non valido: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nome host per il server %1$s non valido. Controlla la tua configurazione."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Metodo di autenticazione impostato nella configurazione non valido:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
@@ -3344,8 +3338,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Query SQL"
@@ -3383,7 +3377,7 @@ msgid "Create PHP Code"
msgstr "Crea il codice PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Aggiorna"
@@ -3404,95 +3398,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y alle %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parametro mancante:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Inizio"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Precedente"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Prossima"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Ultima"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Passa al database "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Clicca per alternare"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Cerca sul tuo computer:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nessun file da caricare"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Esegui"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Stampa"
@@ -3666,9 +3660,9 @@ msgstr "Ripristinare valori predefiniti"
msgid "Allow users to customize this value"
msgstr "Consente agli utenti di personalizzare questo valore"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Riavvia"
@@ -3833,7 +3827,7 @@ msgid "Compress on the fly"
msgstr "Comprimi al volo"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "File di configurazione"
@@ -3895,7 +3889,7 @@ msgstr "Proponi la struttura della tabella"
msgid "Show binary contents as HEX by default"
msgstr "Mostra sempre contenuti binari come esadecimali"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostra contenuti binari come esadecimali"
@@ -5832,7 +5826,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Abilita la tabulazione per Sviluppatori nelle impostazioni"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Controlla l'ultima versione"
@@ -5982,7 +5976,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP."
msgid "possible deep recursion attack"
msgstr "possibile attacco di ricorsione in profondità"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5990,19 +5984,19 @@ msgstr ""
"Il server non risponde (o il socket del server locale MySQL non è "
"correttamente configurato)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Il server non risponde."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Controllate i privilegi della cartella che contiene il database."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Dettagli..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6165,8 +6159,8 @@ msgstr ", @TABLE@ diventerá il nome della tabella"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@@ -6365,48 +6359,53 @@ msgstr "Opzioni specifisce al formato:"
msgid "Language"
msgstr "Lingua"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Salva i dati modificati"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Ripristina l'ordine dei campi"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Riga iniziale"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Numero di righe"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Modalità"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "orizzontale"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "orizzontale (headers ruotati)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "verticale"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Intestazioni ogni %s righe"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Mostra"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ordina per chiave"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6424,89 +6423,89 @@ msgstr "Ordina per chiave"
msgid "Options"
msgstr "Opzioni"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Testi parziali"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Testi completi"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Chiave relazionale"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Campo di visualizzazione relazionale"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Mostra contenuti binari"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Mostra contenuti BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Nascondi le trasformazioni del browser"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Well Known Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "La riga è stata cancellata"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Rimuovi"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "nella query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrando le righe"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "totale"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "La query ha impiegato %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operazioni sui risultati della query"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Vista stampa (con full text)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Mostra diagramma"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualizzare dati GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Crea vista"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link non trovato"
@@ -6554,7 +6553,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stato InnoDB"
@@ -6851,8 +6850,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
"su %sPrimeBase XT Home Page%s."
@@ -6977,12 +6976,12 @@ msgstr "Mostra tipi MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Generato il"
@@ -7207,8 +7206,8 @@ msgstr "Nessun data trovato per la visualizzazione GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Tentativo di sovrascrivere GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)."
@@ -7386,6 +7385,99 @@ msgstr "Modalitá di compatibilità SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Non usare AUTO_INCREMENT per il valori zero"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funzione"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Nascondi"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binario"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+"A causa della lunghezza, questo campo potrebbe non essere modificabile"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Dato binario - non modificare"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "directory di upload del web-server"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Modifica/Inserisci"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Riprendi inserimento con %s righe"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "e quindi"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Inserisci come nuova riga"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Inserisci come nuova riga e ignora gli errori"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Mostra la insert query"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Indietro"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Inserisci un nuovo record"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Torna a questa pagina"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Modifica il record successivo"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL"
+"+frecce per spostarlo altrove"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valore"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Visualizzo la query SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Inserita riga id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7396,32 +7488,32 @@ msgstr "Nessuno"
msgid "Convert to Kana"
msgstr "Converti a Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Da"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "A"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Invia"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Aggiungi un prefisso alla tabella"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Aggiungi prefisso"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Sei sicuro di voler eseguire la seguente query?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nessun cambiamento"
@@ -7429,11 +7521,6 @@ msgstr "Nessun cambiamento"
msgid "Charset"
msgstr "Set di caratteri"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binario"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgaro"
@@ -7765,18 +7852,10 @@ msgid "Slave status"
msgstr "Stato slave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabile"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valore"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID del server"
@@ -8114,11 +8193,6 @@ msgstr "Esegui routine"
msgid "Routine parameters"
msgstr "Parametri della routine"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funzione"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8442,7 +8516,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Esegui la/e query SQL sul database %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Cancella"
@@ -8450,11 +8524,11 @@ msgstr "Cancella"
msgid "Columns"
msgstr "Campi"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Aggiungi ai preferiti questa query SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Permetti ad ogni utente di accedere a questo bookmark"
@@ -8478,10 +8552,6 @@ msgstr "Mostra di nuovo questa query"
msgid "View only"
msgstr "Visualizza solo"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "directory di upload del web-server"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8682,10 +8752,6 @@ msgstr "Operatore"
msgid "Table Search"
msgstr "Ricerca nella Tabella"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Modifica/Inserisci"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8910,7 +8976,7 @@ msgstr "Versione protocollo"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Utente"
@@ -9046,8 +9112,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
-"%sdocumentation%s per possibili problemi."
+"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
+"sdocumentation%s per possibili problemi."
#: navigation.php:175 server_databases.php:311 server_synchronize.php:1465
msgid "No databases"
@@ -9136,10 +9202,6 @@ msgstr "Mostra/nascondi tutto"
msgid "Hide/Show Tables with no relation"
msgstr "Mostra/nascondi tabella senza relazioni"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Nascondi"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Numero di tabelle"
@@ -9335,17 +9397,17 @@ msgstr "Il file non esiste"
msgid "Select binary log to view"
msgstr "Selezionare il log binario da visualizzare"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "File"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Tronca le Query Mostrate"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostra query complete"
@@ -9784,8 +9846,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
@@ -9913,7 +9975,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Mostra lo stato del master"
@@ -10062,12 +10124,12 @@ msgstr ""
"Questo server non é configurato come slave in un processo di replicazione. "
"Vorresti configurarlo ora?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Il thread %s è stato terminato con successo."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10075,115 +10137,115 @@ msgstr ""
"phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già "
"stato terminato."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Cache delle query"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Processi"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dati temporanei"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Inserimento ritardato"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Ordinando"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordinatore delle transazioni"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Rinfresca (chiudi) tutte le tabelle"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Mostra le tabelle aperte"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Mostra gli hosts slave"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Mostra lo stato degli slave"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Rinfresca la cache delle query"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informazioni di Runtime"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Tutte le variabili di stato"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitoraggio"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Advisor"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Ritmo dell'aggiornamento: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtri"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Contenente la parola:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Mostra solo i valori di allarme"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtra per categoria..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Mostra i valore non formattati"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Collegamenti associati:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Lancia l'analyzer"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Introduzioni"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10191,7 +10253,7 @@ msgstr ""
"Il sistema Advisor può fornire raccomandazioni sulle variabili del server "
"analizzando le variabili di stato del server."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10201,7 +10263,7 @@ msgstr ""
"semplici calcoli e regole pratiche che non necessariamente si possono "
"applicare al vostro sistema."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10212,7 +10274,7 @@ msgstr ""
"cambiamento. Una regolazione sbagliata può avere effetti negativi sulle "
"prestazioni."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10224,31 +10286,31 @@ msgstr ""
"misurabile."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions eseguiti dall'avvio: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Istruzioni"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Traffico rete dall'avvio: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Questo server MySQL sta girando da %1$s. É stato avviato il %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10256,19 +10318,19 @@ msgstr ""
"Questo server MySQL funziona come un master e slave nel "
"processo di replicazione."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10276,11 +10338,11 @@ msgstr ""
"Per ulteriori informazioni a riguardo lo stato di replicazione su questo "
"server, vedi la seztione sulla replicazione."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Stato di replicazione"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10289,35 +10351,35 @@ msgstr ""
"dismisura e per questa ragione le statistiche riportate dal server MySQL "
"potrebbero non essere corrette."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Ricevuti"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Spediti"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. connessioni contemporanee"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Tentativi falliti"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Fallito"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Comando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10325,11 +10387,11 @@ msgstr ""
"Il numero di connessioni fallite perché il cliente é morto senza chiudere la "
"connessione correttemente."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Il numero di tentativi falliti di connettere al server MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10339,19 +10401,19 @@ msgstr ""
"ma che oltrepassano il valore di binlog_cache_size e usano un file "
"temporaneo per salvare gli statements dalle transazioni."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Il numero di tentativi di connesione al server MySQL (completati con "
"successo o no)."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10363,11 +10425,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Numero di file temporanei che mysqld ha creato."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10375,7 +10437,7 @@ msgstr ""
"Il numero di tabelle temporanee create automaticamente in memoria dal server "
"durante l'esecuzione dei comandi."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10383,7 +10445,7 @@ msgstr ""
"Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori "
"(probabilmete chiave dublicata)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10391,23 +10453,23 @@ msgstr ""
"Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato "
"INSERT DELAYED occupa un thread."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Il numero di righe INSERT DELAYED scritte."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Il numero di comandi FLUSH eseguiti."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Il numero di comandi interni COMMIT eseguiti."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10417,7 +10479,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10428,7 +10490,7 @@ msgstr ""
"degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia "
"indicizzata."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10437,7 +10499,7 @@ msgstr ""
"alta, è un buon indice che le tue query e le tue tabelle sono correttamente "
"indicizzate."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10448,7 +10510,7 @@ msgstr ""
"indice con un range costante, oppure se stai facendo una scansione degli "
"indici."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10457,7 +10519,7 @@ msgstr ""
"chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare "
"ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10470,7 +10532,7 @@ msgstr ""
"MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le "
"chiavi correttamente."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10483,37 +10545,37 @@ msgstr ""
"indicizzate, o che le query non sono state scritte per trarre vantaggi dagli "
"indici che hai."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Il numero di comandi ROLLBACK interni."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Il numero di pagine che contengono dati (sporchi o puliti)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Il numero di pagine attualmente sporche."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Il numero di pagine libere."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10523,7 +10585,7 @@ msgstr ""
"attualmente in lettura o in scittura e non possono essere aggiornate o "
"rimosse per altre ragioni."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10535,11 +10597,11 @@ msgstr ""
"come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Il numero totale di buffer pool, in pagine."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10547,7 +10609,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10555,11 +10617,11 @@ msgstr ""
"Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB "
"esegue una scansione completa sequenziale di una tabella."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Il numero di richieste logiche che InnoDb ha fatto."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10567,7 +10629,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:1352
+#: server_status.php:1355
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 "
@@ -10582,55 +10644,55 @@ msgstr ""
"dimesione del buffer pool è stata settata correttamente questo valore "
"dovrebbe essere basso."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Il numero di scritture effettuate nel buffer pool InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Il numero delle operazioni fsync() fino ad ora."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Il numero di operazioni fsync() in attesa."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Il numero di letture in attesa."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Il numero di scritture in attesa."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "La quantità di dati letti fino ad ora, in bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Il numero totale di dati letti."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Il numero totale di dati scritti."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "La quantità di dati scritti fino ad ora, in bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10638,35 +10700,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Il numero di richieste di scrittura dei log."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Il numero scritture fisiche del log file."
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Il numero degli fsyncs in sospeso sul log file."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Il numero di scritture in sospeso sul log file."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Il numero di bytes scritti sul log file."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Il numero di pagine create."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10675,51 +10737,51 @@ msgstr ""
"valori sono conteggiati nelle pagine; la dimesione delle pagine permette di "
"convertirli facilmente in bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Il numero di pagine lette."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Il numero di pagine scritte."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Il numero di row locks attualmente in attesa."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Il numero di righe cancellate da una tabella InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Il numero di righe inserite da una tabella InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Il numero di righe lette da una tabella InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Il numero di righe aggiornate da una tabella InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10728,7 +10790,7 @@ msgstr ""
"cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome "
"di Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10736,7 +10798,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:1386
+#: server_status.php:1389
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 "
@@ -10746,15 +10808,15 @@ msgstr ""
"segnale che indica il numero massimo di blocchi che sono stati in uso "
"contemporaneamente."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10765,26 +10827,26 @@ msgstr ""
"rapporto di cache miss rate può essere calcolato come Key_reads/"
"Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10795,7 +10857,7 @@ msgstr ""
"query per la stessa operazione di query. Il valore di default è 0, che "
"significa che nessuna query è stata ancora compilata."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10803,12 +10865,12 @@ msgstr ""
"Il massimo numero di connessioni che sono state utilizzate "
"contemporaneamente dall'avvio del server."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10816,20 +10878,20 @@ msgstr ""
"Il numero di tabelle che sono state aperte. Se il valore opened_tables è "
"grande, probabilmente il valore di table cache è troppo piccolo."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Il numero di file che sono aperti."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Il numero di tabelle che sono aperte."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10839,19 +10901,19 @@ msgstr ""
"potrebbero indicare problemi di fragmentazione che possono essere risolti "
"con l'esecuzione dell'istruzione FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "L'ammontare di memoria libera nella cache delle query."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Il numero di cache hits."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Il numero di query aggiunte alla cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10864,7 +10926,7 @@ msgstr ""
"una strategia di \"meno usate recentemente\" (LRU - least recently used) per "
"decidere quali query rimuovere dalla cache."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10872,19 +10934,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Il numero di query registrate nella cache."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Il numero totale di blocchi nella cache delle query."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Lo sato delle repliche failsafe (non ancora implementato)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10892,13 +10954,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10907,7 +10969,7 @@ msgstr ""
"ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli "
"indici delle tue tabelle.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10915,17 +10977,17 @@ msgstr ""
"Il numero di joins che usano un range sulla prima tabella. (Non è, "
"solitamente, un valore critico anche se è grande.)"
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10933,12 +10995,12 @@ msgstr ""
"Numero totale di volte (dalla partenza) in cui la replica slave SQL ha "
"ritentato una transazione."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10946,12 +11008,12 @@ msgstr ""
"Numero di processi che hanno impiegato più di slow_launch_time secondi per "
"partire."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10961,23 +11023,23 @@ msgstr ""
"fatte. Se questo valore è grande, dovresti incrementare la variabile di "
"sistema sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
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:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Il numero di righe ordinate."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10989,7 +11051,7 @@ msgstr ""
"performance, dovresti prima ottimizzare le query, oppure sia utilizzare le "
"repliche, sia dividere le tabelle."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10999,11 +11061,11 @@ msgstr ""
"essere calcolato come processi_creati/connessioni. Se questo valore è rosso "
"devi aumentare la tua thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Il numero di connessioni correntemente aperte."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11015,49 +11077,49 @@ msgstr ""
"(Normalmente questo non fornisce un significatico incremento delle "
"performace se hai una buona implementazione dei processi.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Thread cache hit rate %%"
msgid "Thread cache hit rate (calculated value)"
msgstr "Percentuale hit nella cache del thread"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Il numero di processi non in attesa."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Avvia monitoraggio"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Istruzioni/Configurazione"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Ho finito di modificare/muovere i grafici"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Aggiungi grafico"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Muovi/modifica i grafici"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Ritmo di aggiornamenti"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Numero di grafici per rigo"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Disposizione dei grafici"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11065,15 +11127,15 @@ msgstr ""
"La configurazione dei grafici è memorizzata nella memoria locale dei "
"browser. Potreste voler esportarla se avete una configurazione complicata."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Ripristina i valori predefiniti"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Istruzioni per monitoraggio"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11087,7 +11149,7 @@ msgstr ""
"slow_query_log oppure general_log. Notate comunque che general_log produce "
"molti dati e aumenta il carico del server fino al 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11100,11 +11162,11 @@ msgstr ""
"potete ancora utilizzare le funzionalità di generazione dei grafici del "
"server."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Utilizzo del monitor:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11115,7 +11177,7 @@ msgstr ""
"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona "
"dentellata su ogni grafico."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11128,11 +11190,11 @@ msgstr ""
"raggruppate nella quale potete cliccare su ogni comando SELECT che appare "
"per l'analisi successiva."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Nota:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11144,88 +11206,88 @@ msgstr ""
"compito intensivo per cui si consiglia di selezionare solo un intervallo "
"temporale piccolo e disabilitare il general_log e svuotare la sua tabella."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Valori predefiniti del grafico"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Variabili di stato"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Seleziona serie:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Monitorate di solito"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "or scrivi il nome di una variabile:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Visualizzare come valore differenziale"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Applica un divisore"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Aggiungi un unitá ai valori dei dati"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Aggiungi questa serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Cancella la serie"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Serie del grafico:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Registra statistiche"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Intervallo di tempo selezionato:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior "
"raggruppamento"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Scegli il log dal quale generare le statistiche."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "I risultati verranno raggruppati secondo il testo di query."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analyzer della query"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d secondo"
msgstr[1] "%d secondi"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11363,7 +11425,7 @@ msgstr "Valore sessione"
msgid "Global value"
msgstr "Valore globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Scarica"
@@ -11439,39 +11501,39 @@ msgstr "Non ci sono server configurati"
msgid "New server"
msgstr "Nuovo server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Lingua predefinita"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "lascia la scelta all'utente"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- nessuno -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Server predefinito"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Fine del file"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Visualizza"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Carica"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Homepage di phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Dona"
@@ -11640,10 +11702,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
-"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
-"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
-"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
+"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
+"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
+"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
+"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:312
@@ -11658,8 +11720,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
-"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
-"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
+"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:314
#, php-format
@@ -11704,51 +11766,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Dati errati"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Naviga tra i valori esterni"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Sei sicuro di voler eseguire la seguente query?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Inserita riga id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Visualizzo comel codice PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Visualizzo la query SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL Validato"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Risultato SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generato da"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etichetta"
@@ -11763,59 +11816,6 @@ msgstr "La tabella %1$s è già stata modificata con successo"
msgid "The columns have been moved successfully."
msgstr "Gli utenti selezionati sono stati cancellati con successo."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-"A causa della lunghezza, questo campo potrebbe non essere modificabile"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Dato binario - non modificare"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Inserisci come nuova riga"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Inserisci come nuova riga e ignora gli errori"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Mostra la insert query"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "e quindi"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Indietro"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Inserisci un nuovo record"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Torna a questa pagina"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Modifica il record successivo"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL"
-"+frecce per spostarlo altrove"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Riprendi inserimento con %s righe"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12404,31 +12404,37 @@ msgstr "Monitora le istruzioni di manipolazione dei dati:"
msgid "Create version"
msgstr "Crea versione"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Esegui \"query da esempio\" (carattere jolly: \"%\") per due campi differenti"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Ulteriori criteri di ricerca"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Usate questo campo per etichettare ogni punto"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Massimo numero di righe da visualizzare"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Esplora/Modifica i punti"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Come usare"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Riavvia"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Scarica altri temi!"
@@ -12825,12 +12831,12 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Il rapporto corrente tra la memoria libera nella cache delle query e la "
-"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra "
-"l'80%%"
+"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%"
+"%"
#: libraries/advisory_rules.txt:174
msgid "Query cache fragmentation"
@@ -12984,8 +12990,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, "
"questo valore dovrebbe essere inferiore al 10%%."
@@ -13771,6 +13777,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert è impostato a 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Utilizza la rotellina del mouse per ingrandire o ridurre il piano."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Fai clic e trascina il mouse per navigare il piano."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr ""
+#~ "Le stringhe verranno convertite a numeri interi per tracciare il grafico"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13893,8 +13909,8 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
-#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database "
-#~ "%s?"
+#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %"
+#~ "s?"
#~ msgid "Unknown error while uploading."
#~ msgstr "Errore sconosciuto durante il caricamento del file."
@@ -14171,9 +14187,6 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgstr ""
#~ "Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
-#~ msgid "rows"
-#~ msgstr "Mostra"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "righe a partire da #"
diff --git a/po/ja.po b/po/ja.po
index cb9cf77abc..0d8ecfc04d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-23 11:54+0200\n"
"Last-Translator: Yuichiro Takahashi \n"
"Language-Team: japanese \n"
-"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "すべて表示"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "すべて表示"
msgid "Page number:"
msgstr "ページ番号:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも"
"のと思われます。"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "検索"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "検索"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "実行"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "キー名"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "説明"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "この値を利用する"
@@ -122,12 +122,12 @@ msgstr "テーブルのコメント"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "カラム"
@@ -136,6 +136,7 @@ msgstr "カラム"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "カラム"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "データ型"
@@ -153,12 +154,12 @@ msgstr "データ型"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "NULL"
@@ -197,13 +198,13 @@ msgstr "コメント"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "いいえ"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "テーブル"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行"
@@ -407,28 +408,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "ソート"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "昇順"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "降順"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "表示"
@@ -449,8 +450,8 @@ msgid "Del"
msgstr "削除"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "または"
@@ -518,8 +519,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%1$s 件 (テーブル %2$s)"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "表示"
@@ -528,14 +529,14 @@ msgstr "表示"
msgid "Delete the matches for the %s table?"
msgstr "テーブル %s に対して条件に一致したものを削除しますか?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "削除"
@@ -602,11 +603,11 @@ msgstr "SQL コマンドの追跡はアクティブです。"
msgid "Tracking is not active."
msgstr "SQL コマンドの追跡は非アクティブです。"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -616,7 +617,7 @@ msgstr "ビュー"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "レプリケーション"
@@ -630,20 +631,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです。"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "チェックしたものを:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "すべてチェックする"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -655,27 +656,27 @@ msgstr "オーバーヘッドのあるテーブルを確認する"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "エクスポート"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "印刷用画面"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "空にする"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -701,11 +702,11 @@ msgstr "テーブルを分析する"
msgid "Add prefix to table"
msgstr "接頭辞をテーブル名に追加する"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "テーブル名の接頭辞を付け替える"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "接頭辞を付け替えてテーブルをコピーする"
@@ -724,8 +725,8 @@ msgstr "SQL コマンドを追跡しているテーブル"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "データベース"
@@ -743,7 +744,7 @@ msgstr "更新日時"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "状態"
@@ -843,45 +844,45 @@ msgstr "ベースレイヤーに OpenStreetMap を使用する"
msgid "SRID"
msgstr "空間参照識別子"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "幾何データ"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "座標"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "座標 %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "座標を追加する"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "線分"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "外輪"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "内輪"
@@ -889,15 +890,15 @@ msgstr "内輪"
msgid "Add a linestring"
msgstr "線分を追加する"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "内輪を追加する"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "ポリゴン"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "ポリゴンを追加する"
@@ -920,8 +921,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください。"
@@ -971,7 +972,7 @@ msgstr ""
"インポートプラグインが読み込めません。正しくインストールされているか確認して"
"ください!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "ブックマーク %s を作成しました"
@@ -998,7 +999,7 @@ msgstr ""
"の時間制限を伸ばさない限りこのデータのインポートはできません。"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1013,7 +1014,7 @@ msgstr "戻る"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします。"
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "DROP DATABASE 文は無効にされています。"
@@ -1022,7 +1023,7 @@ msgstr "DROP DATABASE 文は無効にされています。"
msgid "Do you really want to execute \"%s\"?"
msgstr "「%s」を本当に実行しますか?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "データベースを完全に削除しようとしています!"
@@ -1108,21 +1109,21 @@ msgstr "閉じる"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "編集"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "リアルタイムでのトラフィックグラフ"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "リアルタイムでの接続/プロセスグラフ"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "リアルタイムでのクエリグラフ"
@@ -1133,23 +1134,23 @@ msgstr "統計データ"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "合計"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "その他"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1169,7 +1170,7 @@ msgstr "サーバのトラフィック (単位:KiB)"
msgid "Connections since last refresh"
msgstr "更新間隔中の接続数"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "プロセス"
@@ -1187,7 +1188,7 @@ msgstr "更新間隔中の問い合わせ数"
msgid "Questions (executed statements by the server)"
msgstr "問い合わせ数 (サーバで実行された命令文)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "クエリの統計"
@@ -1231,14 +1232,14 @@ msgid "System swap"
msgstr "システムスワップ"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1290,32 +1291,32 @@ msgstr "送信"
msgid "Bytes received"
msgstr "受信"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "接続"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "バイト"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1329,11 +1330,11 @@ msgstr "%d テーブル"
msgid "Questions"
msgstr "問い合わせ"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "トラフィック"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "設定"
@@ -1354,10 +1355,10 @@ msgid "Please add at least one variable to the series"
msgstr "少なくとも1つの系列を追加してください"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "なし"
@@ -1457,7 +1458,7 @@ msgstr "設定の変更"
msgid "Current settings"
msgstr "現在の設定"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "グラフの題名"
@@ -1544,9 +1545,9 @@ msgstr "解析しています..."
msgid "Explain output"
msgstr "EXPLAIN の結果"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "時間"
@@ -1648,7 +1649,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "インポート"
@@ -1768,15 +1769,15 @@ msgstr "インデックスを隠す"
msgid "Show indexes"
msgstr "インデックスを表示する"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "外部キーのチェック:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(有効)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(無効)"
@@ -1845,7 +1846,7 @@ msgstr "クエリボックスを表示"
msgid "No rows selected"
msgstr "行が選択されていません"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "変更"
@@ -1854,17 +1855,18 @@ msgstr "変更"
msgid "Query execution time"
msgstr "クエリの実行時間"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d は不正な行番号です。"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "保存する"
@@ -1889,75 +1891,67 @@ msgid "Hovering over a point will show its label."
msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。"
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "マウスホイールでズームの調整ができます。"
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "ドラッグすることでプロットのスクロールが行えます。"
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "「Reset zoom」リンクをクリックすることで元の状態に戻せます。"
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。"
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。"
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "文字列データは、数値に変換されてからプロットされます"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "カラムを 2 つ選択してください"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "異なるカラムを 2 つ選択してください"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "クエリの結果"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "データポインタの内容"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "無視"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "コピー"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "カラムを追加する"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "参照されているキーを選択"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "外部キーを選択してください"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "主キーまたはユニークキーを選択してください"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "表示するカラムの選択"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1965,15 +1959,15 @@ msgstr ""
"レイアウトの変更を保存されていません。保存していない場合、それらは失われま"
"す。このまま続けてもよろしいですか?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "カラムに対するオプションを追加する "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "ESC キーで編集キャンセル"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1981,27 +1975,27 @@ msgstr ""
"いくつかのデータが編集されていますが、それらは保存されていません。データを保"
"存せずにこのページから移動してもよろしいですか?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "ドラッグでカラムの入れ替え"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "クリックでソート"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "クリックでカラムを反転/解除"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "ダブルクリックでカラム名をコピー"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "クリックでカラムの表示/非表示 ができるドロップダウンを表示"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2010,46 +2004,46 @@ msgstr ""
"ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合"
"があります。"
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"ほとんどのカラムは、内容を直接クリック することでも、編集することができ"
"ます。"
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "リンク先へ移動する"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "カラム名のコピー"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "右クリックでカラム名をクリップボードにコピーしてください。"
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "データ行の表示"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "パスワードを生成する"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "生成する"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "パスワードを変更する"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "その他"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2059,266 +2053,266 @@ msgstr ""
"します。最新バージョンは %s で、%s にリリースされています。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", 最終安定バージョン:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "最新版"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "決定"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "前月"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "翌月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "今日"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "1 月"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "2 月"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "3 月"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "4 月"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "5 月"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "6 月"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "7 月"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "8 月"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "9 月"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "10 月"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "11 月"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "12 月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "1 月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "2 月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "3 月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "4 月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "5 月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "6 月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "12 月"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "日"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "月"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "水"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "木"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "金"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "土"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "週"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-year-month"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr " 年"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "時"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "分"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "秒"
@@ -2373,16 +2367,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "/ 秒"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "/ 分"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "/ 時"
@@ -2517,15 +2511,15 @@ msgstr ""
msgid "Databases"
msgstr "データベース"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "サーバ"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2537,20 +2531,20 @@ msgid "Structure"
msgstr "構造"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "挿入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2608,12 +2602,12 @@ msgstr "ユーザ"
msgid "Synchronize"
msgstr "同期"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "バイナリログ"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "変数"
@@ -2630,8 +2624,9 @@ msgid "Engines"
msgstr "エンジン"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "エラー"
@@ -2744,35 +2739,35 @@ msgstr ""
"環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ"
"とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。"
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "テーマ %s の画像パスが無効です!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "プレビューは利用できません。"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "これにする"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "デフォルトテーマ %s が見つかりません!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "テーマ %s が見つかりません!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "テーマ %s のテーマパスが見つかりません!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "テーマ"
@@ -2821,20 +2816,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、"
"1.175494351E-38 から 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から "
-"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E"
+"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -"
+"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E"
"+308"
#: libraries/Types.class.php:305
@@ -3121,11 +3116,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
-"ト%2$s を利用して設定ファイルを作成してください。"
+"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
+"$s を利用して設定ファイルを作成してください。"
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3228,7 +3223,7 @@ msgstr "共有"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "テーブル"
@@ -3279,11 +3274,11 @@ msgstr "なんらかの攻撃をされている可能性があります"
msgid "numeric key detected"
msgstr "グローバル変数から数値キーが検出されました"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "設定ファイルの読み込みに失敗しました"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3291,12 +3286,12 @@ msgstr ""
"通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認し"
"てください。"
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "デフォルトの設定を読み込めませんでした: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3304,21 +3299,21 @@ msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] は必ず設定ファイルに設定しなければ"
"なりません!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "サーバのインデックスが不正です: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。"
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "設定ファイルに無効な認証方法が指定されています:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s を %s 以降にアップグレードしてください。"
@@ -3353,8 +3348,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "実行した SQL"
@@ -3392,7 +3387,7 @@ msgid "Create PHP Code"
msgstr "PHP コードの作成"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "再描画"
@@ -3413,95 +3408,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "インライン"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "プロファイリング"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %B %d 日 %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 日 %s 時間 %s 分 %s 秒"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "パラメータがありません:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "先頭"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "前へ"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "次へ"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "最後"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "データベース「%s」に移動します。"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s の機能には既知のバグがあります。%s をご覧ください"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "クリックでオン/オフ切り替え"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "アップロードファイル:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "指定したアップロードディレクトリが利用できません"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "アップロードファイルがありません"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "実行"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "印刷"
@@ -3673,9 +3668,9 @@ msgstr "デフォルト値に戻す"
msgid "Allow users to customize this value"
msgstr "この値の変更をユーザに許可する"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "リセット"
@@ -3835,7 +3830,7 @@ msgid "Compress on the fly"
msgstr "逐次圧縮"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "設定ファイル"
@@ -3895,7 +3890,7 @@ msgstr "テーブル構造の操作欄を折り畳む"
msgid "Show binary contents as HEX by default"
msgstr "デフォルトではバイナリの内容を 16 進数で表示します。"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "バイナリの内容を 16 進数で表示する"
@@ -4620,7 +4615,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "テーブル表示数を絞るための入力欄が現れる最小のテーブル数"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "データベース表示数を絞るための入力欄が現れる最小のデータベース数"
@@ -5778,7 +5772,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "設定に開発者向けタブを追加する"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "バージョンアップの確認"
@@ -5800,8 +5794,8 @@ msgid ""
"for import and export operations"
msgstr ""
"インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/"
-"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC"
-"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
+"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC%E3%83%"
+"9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。"
#: libraries/config/messages.inc.php:527
msgid "ZIP"
@@ -5919,7 +5913,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて
msgid "possible deep recursion attack"
msgstr "深い再帰的な攻撃を受けている可能性があります"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5927,20 +5921,20 @@ msgstr ""
"サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま"
"せん)。"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "サーバが応答しません。"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"データベースを含んでいるディレクトリのパーミッションを確認してください。"
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "詳細..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6101,8 +6095,8 @@ msgstr "、@TABLE@ はテーブル名に"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
@@ -6296,48 +6290,53 @@ msgstr "フォーマット特有のオプション:"
msgid "Language"
msgstr "言語"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "変更したデータを保存する"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "カラムの順番を元に戻す"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "開始行"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "表示行数"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "モード"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "水平 (縦ヘッダ)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "%s 行毎にヘッダを表示"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "表示"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "キーでソート"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6355,89 +6354,89 @@ msgstr "キーでソート"
msgid "Options"
msgstr "オプション"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "部分テキスト"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "全文"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "リレーションキー"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "リレーション表示カラム"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "バイナリの内容を表示する"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB の内容を表示する"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "ブラウザ変換機能を隠す"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "空間データをテキストで表示"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "空間データをバイナリで表示"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "行を削除しました"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "停止"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "行/クエリ"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "行の表示"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "合計"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "クエリの実行時間 %01.4f 秒"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "クエリ結果操作"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "印刷用画面 (全テキストを含む)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "グラフで表示する"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "空間情報のデータを視覚化する"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "ビューを作成する"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "リンク先が見つかりません"
@@ -6485,7 +6484,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "バッファプール"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB ステータス"
@@ -6774,8 +6773,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
"ト%sにあります。"
@@ -6898,12 +6897,12 @@ msgstr "MIME タイプを表示する"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "ホスト"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "生成日時"
@@ -7116,8 +7115,8 @@ msgstr "視覚化できる空間情報がありません。"
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS 変数が書き換えられている可能性があります"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした (行数 0)。"
@@ -7293,6 +7292,98 @@ msgstr "SQL 互換モード:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "関数"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "隠す"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "バイナリ"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "長さによってはこのカラムを 編集できなくなる場合もあります。"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "バイナリ - 編集不可"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "ウェブサーバ上のアップロードディレクトリ"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "編集/挿入"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "%s 行づつ挿入を行う"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "続いて"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "新しい行として挿入する"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "新しい行として挿入し、エラーは無視する"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "挿入クエリ文を表示する"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "前のページに戻る"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "新しいレコードを追加する"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "このページに戻る"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "次の行を編集する"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自"
+"由に移動できます"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "値"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL クエリを表示"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "id %1$d の行を挿入しました"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7303,32 +7394,32 @@ msgstr "なし"
msgid "Convert to Kana"
msgstr "全角カナへ変換する"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "付け替え元"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "付け替え先"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "実行する"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "テーブル接頭辞の追加"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "追加する接頭辞"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "以下のクエリを本当に実行しますか?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "変更なし"
@@ -7336,11 +7427,6 @@ msgstr "変更なし"
msgid "Charset"
msgstr "文字セット"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "バイナリ"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "ブルガリア語"
@@ -7669,18 +7755,10 @@ msgid "Slave status"
msgstr "スレーブステータス"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "変数"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "値"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "サーバ ID"
@@ -8007,11 +8085,6 @@ msgstr "ルーチンを実行する"
msgid "Routine parameters"
msgstr "ルーチンのパラメータ"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "関数"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "申し訳ありませんが、削除されたトリガの復元に失敗しました。"
@@ -8333,7 +8406,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "データベース %s 上でクエリを実行する"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "クリア"
@@ -8341,11 +8414,11 @@ msgstr "クリア"
msgid "Columns"
msgstr "カラム"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "この SQL をブックマークする"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
@@ -8369,10 +8442,6 @@ msgstr "実行したクエリをここに表示する"
msgid "View only"
msgstr "表示のみ"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "ウェブサーバ上のアップロードディレクトリ"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8566,10 +8635,6 @@ msgstr "演算子"
msgid "Table Search"
msgstr "テーブル検索"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "編集/挿入"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8786,7 +8851,7 @@ msgstr "プロトコルバージョン"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "ユーザ"
@@ -8926,7 +8991,6 @@ msgid "No databases"
msgstr "データベースが存在しません"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "データベース名を絞る"
@@ -9007,10 +9071,6 @@ msgstr "すべて隠す/表示"
msgid "Hide/Show Tables with no relation"
msgstr "リレーションのないテーブルを隠す/表示"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "隠す"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "テーブル数"
@@ -9209,17 +9269,17 @@ msgstr "ファイルが存在しません"
msgid "Select binary log to view"
msgstr "表示するバイナリログを選択してください"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "ファイル"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "クエリの表示を切り詰める"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "クエリ全体を表示"
@@ -9649,8 +9709,8 @@ msgstr "ユーザと同名のデータベースを削除する"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@@ -9772,7 +9832,7 @@ msgstr "マスタサーバを %s へ切り替えるのに成功しました。"
msgid "This server is configured as master in a replication process."
msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。"
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "マスタステータスの表示"
@@ -9924,126 +9984,126 @@ msgstr ""
"このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "スレッド %s は正常終了しました。"
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "ハンドラ"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "クエリキャッシュ"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "スレッド"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "一時データ"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "遅延インサート"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "キーキャッシュ"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "結合"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "ソート"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "トランザクションコーディネータ"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "すべてのテーブルをフラッシュする(閉じる)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "開いているテーブルを表示する"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "スレーブホストを表示する"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "スレーブの状態を表示する"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "クエリキャッシュをフラッシュする"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "ランタイム情報"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "すべての状態変数"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "モニタ"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "アドバイザ"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "再描画間隔: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "フィルタ"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "含まれている文字:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "警告値のみ表示する"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "種別によるフィルタ..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "生の値 (書式化なし) で表示する"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "関連リンク:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "事象の解析をする"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "アドバイザの利用にあたって"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10051,7 +10111,7 @@ msgstr ""
"アドバイザ・システムは、サーバの状態変数を分析することにより、ふさわしいと思"
"われるサーバ変数の調整方法を提供するものです。"
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10060,7 +10120,7 @@ msgstr ""
"このシステムは、単純な計算を基にして経験則によって調整方法を提供するため、お"
"使いのシステムに必ずしも当てはまるものではないことに注意してください。"
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10070,7 +10130,7 @@ msgstr ""
"を確認しておいてください。間違ったチューニングは、パフォーマンスに非常に悪影"
"響を与える可能性があります。"
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10081,31 +10141,31 @@ msgstr ""
"変更した箇所を元に戻します。"
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "起動以後の問い合わせ数:%s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "ステートメント"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "クエリ数"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "起動以後のネットワークトラフィック:%s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "この MySQL サーバの稼働時間: %1$s (起動時刻: %2$s)"
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10113,19 +10173,19 @@ msgstr ""
"この MySQL サーバは、レプリケーションプロセスのマスタとス"
"レーブとして動作しています。"
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"この MySQL サーバは、レプリケーションプロセスのマスタとして動作"
"しています。"
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"この MySQL サーバは、レプリケーションプロセスのスレーブとして動"
"作しています。"
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10133,11 +10193,11 @@ msgstr ""
"サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。"
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "レプリケーションステータス"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10145,45 +10205,45 @@ msgstr ""
"処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ"
"が報告してくる統計は不正確なことがあります。"
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "受信済"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "送信済"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "最大同時接続数"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "失敗回数"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "中断"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "コマンド"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。"
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "MySQL サーバへの接続を試みて失敗した回数。"
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10192,16 +10252,16 @@ msgstr ""
"一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた"
"め一時ファイルにステートメントを保存したトランザクション数。"
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "一時バイナリログキャッシュを使用したトランザクション数。"
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。"
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10212,24 +10272,24 @@ msgstr ""
"Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ"
"スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。"
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "mysqld が生成した一時ファイル数。"
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。"
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
"何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。"
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10237,23 +10297,23 @@ msgstr ""
"使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ"
"ルの数だけ固有のスレッドが用意されます。"
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED で書き込まれた行数。"
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "FLUSH 文の実行回数。"
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "内部で COMMIT 文を実行した回数。"
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "テーブルから行を削除した回数。"
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10263,7 +10323,7 @@ msgstr ""
"ての情報を持っているか問い合わせることができます。これを開示と言いますが、"
"Handler_discover はその開示されたタイムテーブルの数です。"
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10273,7 +10333,7 @@ msgstr ""
"もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 "
"FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。"
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10281,7 +10341,7 @@ msgstr ""
"キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ"
"ルが適切にインデックスされているものと考えられます。"
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10291,7 +10351,7 @@ msgstr ""
"エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま"
"す。"
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10299,7 +10359,7 @@ msgstr ""
"キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER "
"BY ... DESC の最適化に利用されます。"
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10311,7 +10371,7 @@ msgstr ""
"キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に"
"不適切なところがあります。"
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10322,36 +10382,36 @@ msgstr ""
"キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適"
"切か、クエリがインデックスを利用するように書かれていないことを意味します。"
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "内部で ROLLBACK 文を実行した回数。"
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "テーブル内の行を更新したリクエストの数。"
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "テーブル内に行を挿入したリクエストの数。"
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。"
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "現在のダーティページの数。"
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "フラッシュリクエストを受けたバッファプールのページ数。"
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "空きページ数。"
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10361,7 +10421,7 @@ msgstr ""
"るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し"
"たりできなくなっているページの数です。"
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10373,11 +10433,11 @@ msgstr ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計"
"算できます。"
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "ページのバッファプールサイズの合計。"
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10385,7 +10445,7 @@ msgstr ""
"InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン"
"ダムな順番でスキャンするときに発生します。"
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10393,11 +10453,11 @@ msgstr ""
"InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル"
"なテーブル全スキャンを行うときに発生します。"
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB が実行した論理読み込みリクエストの数。"
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10405,7 +10465,7 @@ msgstr ""
"InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ"
"ばならなかった論理読み込みの回数。"
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10419,51 +10479,51 @@ msgstr ""
"そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され"
"ていれば、この値は小さいはずです。"
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB バッファプールへの書き込み回数。"
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "これまでに fsync() を実行した回数。"
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "現在保留されている fsync() の回数。"
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "現在保留されている読み込みの数。"
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "現在保留されている書き込みの数。"
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "これまでのデータ読み込み量 (単位:バイト)。"
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "データ読み込み回数の合計。"
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "データ書き込み回数の合計。"
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "これまでのデータの書き込み量 (単位:バイト)。"
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。"
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。"
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10471,35 +10531,35 @@ msgstr ""
"ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生"
"したウェイトの回数。"
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "ログ書き込みリクエストの数。"
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "ログファイルへの物理書き込みの回数。"
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "ログファイルへの fsync 書き込みの回数。"
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "保留中のログファイルへの fsync 回数。"
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "保留中のログファイルへの書き込み回数。"
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "ログファイルに書き込んだバイト数。"
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "作成されたページ数。"
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10507,51 +10567,51 @@ msgstr ""
"コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位"
"で計算されますが、この値を使えば簡単にバイト単位に変換できます。"
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "読み込んだページ数。"
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "書き込んだページ数。"
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "現在待機中の行ロックの数。"
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。"
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。"
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。"
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "行ロック取得時に待機した回数。"
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB テーブルから削除した行数。"
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB テーブルに挿入した行数。"
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB テーブルから読み込んだ行数。"
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB テーブルで更新された行数。"
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10559,7 +10619,7 @@ msgstr ""
"変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの"
"数。以前は Not_flushed_key_blocks でした。"
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10567,7 +10627,7 @@ msgstr ""
"キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え"
"ます。"
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10576,15 +10636,15 @@ msgstr ""
"キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ"
"クの最大数です。"
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "使われているキーキャッシュの比率 (計算値)"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "キャッシュからキーブロックを読み込んだリクエストの数。"
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10594,7 +10654,7 @@ msgstr ""
"く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/"
"Key_read_requests で計算できます。"
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10602,20 +10662,20 @@ msgstr ""
"キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算"
"値)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "キャッシュにキーブロックを書き込んだリクエストの数。"
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "ディスクにキーブロックを物理書き込みした回数。"
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10625,17 +10685,17 @@ msgstr ""
"クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ"
"フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。"
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "サーバが起動してからの同時接続の最大数。"
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。"
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10643,19 +10703,19 @@ msgstr ""
"開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ"
"シュの値が小さすぎます。"
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "開いているファイルの数。"
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開いているストリームの数 (主にログの記録用です)。"
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "開いているテーブルの数。"
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10665,19 +10725,19 @@ msgstr ""
"ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され"
"るかもしれません。"
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "クエリキャッシュの空きメモリ量。"
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "キャッシュのヒット数。"
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "キャッシュに追加されたクエリの数。"
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10689,7 +10749,7 @@ msgstr ""
"エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ"
"て削除するクエリを決めます。"
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10697,19 +10757,19 @@ msgstr ""
"キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ"
"シュしないことになっている) クエリの数。"
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "キャッシュに登録されているクエリの数。"
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "クエリキャッシュの総ブロック数。"
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "フェイルセーフレプリケーションの状態 (未実装)。"
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10717,11 +10777,11 @@ msgstr ""
"インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン"
"デックスをよく確認してください。"
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr "参照テーブルで範囲検索をした結合の数。"
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10729,7 +10789,7 @@ msgstr ""
"キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数"
"(0 でない場合はテーブルのインデックスをよく確認してください)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10737,15 +10797,15 @@ msgstr ""
"最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ"
"ん)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "最初のテーブルを全スキャンした結合の数。"
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。"
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10753,23 +10813,23 @@ msgstr ""
"レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起"
"動時からの合計)。"
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。"
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
"slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。"
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。"
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10778,23 +10838,23 @@ msgstr ""
"ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合"
"は sort_buffer_size システム変数の値を増やした方がよいでしょう。"
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "範囲指定付きでソートが行われた回数。"
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "ソート済の行数。"
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "テーブルをスキャンしたときに実行されたソートの回数。"
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "テーブルロックをすぐに取得できた回数。"
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10805,7 +10865,7 @@ msgstr ""
"フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで"
"もだめならテーブルを分割するか、レプリケーションを利用してください。"
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10815,11 +10875,11 @@ msgstr ""
"Connections で計算できます。この値が赤くなっている場合は thread_cache_size を"
"大きくしてください。"
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "現在開いている接続の数。"
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10830,47 +10890,47 @@ msgstr ""
"thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題"
"がない場合はふつうあまりパフォーマンスは向上しません)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "スレッドキャッシュのヒット割合 (計算値)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "スリープしていないスレッドの数。"
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "モニタ開始"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "使用方法/セットアップ"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "グラフの再配置/変更完了"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "グラフの追加"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "グラフの再配置/変更"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "再描画間隔"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "1 段のグラフ数"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "モニタ環境設定"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10878,15 +10938,15 @@ msgstr ""
"モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー"
"トできます。"
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "デフォルトに戻す"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "モニタの使用方法"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10900,7 +10960,7 @@ msgstr ""
"いずれかを有効にする必要があります。なお、general_log は大量のデータを生成"
"し、サーバの負荷を 15% 増加させますので、注意するようにしてください。"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10912,11 +10972,11 @@ msgstr ""
"グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ"
"タ機能は使用することができます。"
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "モニタの使い方:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10926,7 +10986,7 @@ msgstr ""
"のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに"
"ある歯車のアイコンを通じて削除が行えます。"
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10939,11 +10999,11 @@ msgstr ""
"れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分"
"をクリックすることで、更なるクエリ解析が可能です。"
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "注意事項:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10956,85 +11016,85 @@ msgstr ""
"うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ"
"テーブルを空にしておくのが望ましいです。"
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "プリセットグラフ"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "状態変数"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "系列の選択:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "一般的なモニタ対象"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "もしくは対象変数名:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "差分値として表示する"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "除数を適用する"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "データ値に単位を追加する"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "この系列を追加する"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "系列をクリアする"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "グラフの系列:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "ログの統計"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "選択期間:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "ログの統計元を選択することができます。"
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "結果はクエリ文でグループ化されます。"
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "クエリの解析"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11167,7 +11227,7 @@ msgstr "セッション値"
msgid "Global value"
msgstr "グローバル値"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "ダウンロード"
@@ -11242,39 +11302,39 @@ msgstr "設定するサーバがありません"
msgid "New server"
msgstr "新しいサーバ"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "デフォルト言語"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "ユーザに選択させる"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- 無し -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "デフォルトサーバ"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "改行コード"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "表示する"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "読み込む"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin オフィシャルサイト"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "寄付"
@@ -11441,11 +11501,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
-"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ"
-"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
-"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
-"せん。"
+"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
+"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し"
+"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
+"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
#: setup/lib/index.lib.php:312
#, php-format
@@ -11501,51 +11560,42 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要
msgid "Wrong data"
msgstr "データが正しくありません"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "参照されている値を表示する"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。"
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "以下のクエリを本当に実行しますか?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "id %1$d の行を挿入しました"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP コードとして表示"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL クエリを表示"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "検証した SQL 文"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL の結果"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "生成環境"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "ラベル"
@@ -11560,58 +11610,6 @@ msgstr "テーブル %1$s を変更しました"
msgid "The columns have been moved successfully."
msgstr "選択したユーザを正しく削除しました。"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "長さによってはこのカラムを 編集できなくなる場合もあります。"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "バイナリ - 編集不可"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "新しい行として挿入する"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "新しい行として挿入し、エラーは無視する"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "挿入クエリ文を表示する"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "続いて"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "前のページに戻る"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "新しいレコードを追加する"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "このページに戻る"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "次の行を編集する"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自"
-"由に移動できます"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "%s 行づつ挿入を行う"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12204,30 +12202,36 @@ msgstr "追跡するデータ操作コマンド:"
msgid "Create version"
msgstr "世代を作成する"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "異なる 2 つのカラムによる定型問い合わせ (ワイルドカード: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "更なる検索条件"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "各点のラベルとして使われるカラム"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "プロットする結果の最大数"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "結果表示/プロット点の編集"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "使い方"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "リセット"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "他のテーマを入手する!"
@@ -12617,8 +12621,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で"
"す。この値は、80%% 以上がいいと言われています。"
@@ -12771,8 +12775,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと"
"言われています。"
@@ -13306,8 +13310,8 @@ msgstr ""
msgid ""
"Max_used_connections is at %s%% of max_connections, it should be below 80%%"
msgstr ""
-"Max_used_connections は max_connections の %s%% になっています。この値は、"
-"80%% 未満がいいと言われています。"
+"Max_used_connections は max_connections の %s%% になっています。この値は、80%"
+"% 未満がいいと言われています。"
#: libraries/advisory_rules.txt:392
msgid "Percentage of aborted connections"
@@ -13527,10 +13531,10 @@ msgid ""
"perfectly adequate for your system if you don't have much InnoDB tables or "
"other services running on the same machine."
msgstr ""
-"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが "
-"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを"
-"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ"
-"ば、ご使用のシステムではこの設定で十分かもしれません。"
+"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%"
+"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使"
+"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、"
+"ご使用のシステムではこの設定で十分かもしれません。"
#: libraries/advisory_rules.txt:452
msgid "MyISAM concurrent inserts"
@@ -13554,6 +13558,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert は 0 に設定されています。"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "マウスホイールでズームの調整ができます。"
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "ドラッグすることでプロットのスクロールが行えます。"
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "文字列データは、数値に変換されてからプロットされます"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13953,9 +13966,6 @@ msgstr "concurrent_insert は 0 に設定されています。"
#~ msgid "No trigger with name %s found"
#~ msgstr "%s という名前のトリガが見つかりません"
-#~ msgid "rows"
-#~ msgstr "表示"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "開始レコード"
diff --git a/po/ka.po b/po/ka.po
index cb531c24eb..d01e93e76f 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: georgian \n"
-"Language: ka\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ka\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "ყველაფრის ჩვენება"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,28 +28,29 @@ msgstr "ყველაფრის ჩვენება"
msgid "Page number:"
msgstr "გვერდის ნომერი:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "ძებნა"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -65,28 +66,27 @@ msgstr "ძებნა"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "გადასვლა"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Keyname"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "აღწერილობა"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "გამოიყენეთ ეს ველი"
@@ -119,12 +119,12 @@ msgstr "ცხრილის კომენტარები"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "სვეტები"
@@ -133,6 +133,7 @@ msgstr "სვეტები"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "სვეტები"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "ტიპი"
@@ -150,12 +151,12 @@ msgstr "ტიპი"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -194,13 +195,13 @@ msgstr "კომენტარები"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "არა"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -355,7 +356,7 @@ msgstr "ცხრილი"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "სტრიქონები"
@@ -405,28 +406,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "დალაგება"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ზრდადობით"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "კლებადობით"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "ჩვენება"
@@ -447,8 +448,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ან"
@@ -520,8 +521,8 @@ msgstr[0] "%s match(es) inside table %s"
msgstr[1] "%s match(es) inside table %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "არჩევა"
@@ -530,14 +531,14 @@ msgstr "არჩევა"
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "წაშლა"
@@ -612,11 +613,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -626,7 +627,7 @@ msgstr "ხედო"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "რეპლიკაცია"
@@ -640,20 +641,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "ყველას შემოწმება"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -665,27 +666,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "ექსპორტი"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "ხედის ამობეჭდვა"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "ცარიელი"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -711,13 +712,13 @@ msgstr "Analyze table"
msgid "Add prefix to table"
msgstr "პრეფიქსის დამატება მაგიდისათვის"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Replace table data with file"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -738,8 +739,8 @@ msgstr "ნანახი ცხრილები"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "მონაცემთა ბაზა"
@@ -758,7 +759,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "სტატუსი"
@@ -859,47 +860,47 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "წერტილის დამატება"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Lines terminated by"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -907,15 +908,15 @@ msgstr ""
msgid "Add a linestring"
msgstr "ველის დამატება"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "შიდა ქსელის დამატება"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -936,8 +937,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -977,7 +978,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1000,7 +1001,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1015,7 +1016,7 @@ msgstr "უკან"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1025,7 +1026,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr "ნამდვილად გსურთ "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1126,21 +1127,21 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "რედაქტირება"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "გრაფიკული ტრაფიკის სქემა"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1151,23 +1152,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "სულ"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1189,7 +1190,7 @@ msgstr "სერვერის არჩევა"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "პროცესები"
@@ -1209,7 +1210,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
@@ -1260,14 +1261,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1329,32 +1330,32 @@ msgstr ""
msgid "Bytes received"
msgstr "მიღებულია"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "კავშირები"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1370,11 +1371,11 @@ msgstr "%s table(s)"
msgid "Questions"
msgstr "სპარსული"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "ტრაფიკი"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1401,10 +1402,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "არაა"
@@ -1504,7 +1505,7 @@ msgstr "Other core settings"
msgid "Current settings"
msgstr "Other core settings"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1593,9 +1594,9 @@ msgstr "Analyze"
msgid "Explain output"
msgstr "SQL-ის ახსნა"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "დრო"
@@ -1708,7 +1709,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "შემოტანა"
@@ -1858,19 +1859,19 @@ msgstr "ახალი ველის დამატება"
msgid "Show indexes"
msgstr "Show grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Disable foreign key checks"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "ჩართულია"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1954,7 +1955,7 @@ msgstr "SQL Query box"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "შეცვლა"
@@ -1965,17 +1966,18 @@ msgstr "შეცვლა"
msgid "Query execution time"
msgstr "Maximum execution time"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "შენახვა"
@@ -2006,179 +2008,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "ველის სვეტების დამატება/წაშლა"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Query results operations"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Data pointer size"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "იგნორირება"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "ასლი"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s ველის დამატება"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "აირჩიეთ საჩვენებელი ველი"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "მონაცემთა ბაზები არაა"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "სვეტების სახელები"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Start"
msgid "Show data row(s)"
msgstr "Startup"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "პაროლის დაგენერირება"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "დაგენერირება"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "პაროლის შეცვლა"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "ორშ"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2186,32 +2180,32 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "მონაცემთა ბაზები არაა"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "შემოწირულობა"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "წინა"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2219,96 +2213,96 @@ msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "მაი"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2316,78 +2310,78 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2395,115 +2389,115 @@ msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ვიკი"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "არაა"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2556,16 +2550,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "წამში"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "წუთში"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "საათში"
@@ -2690,15 +2684,15 @@ msgstr ""
msgid "Databases"
msgstr "მონაცემთა ბაზები"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "სერვერი"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2710,20 +2704,20 @@ msgid "Structure"
msgstr "სტრუქტურა"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "ჩასმა"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "მოქმედებები"
@@ -2783,12 +2777,12 @@ msgstr "მომხმარებელი"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "ბინარული ჟურნალი"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "ცვლადები"
@@ -2805,8 +2799,9 @@ msgid "Engines"
msgstr "ძრავები"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "შეცდომა"
@@ -2932,35 +2927,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "take it"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3001,14 +2996,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3264,8 +3259,8 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3365,7 +3360,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "ცხრილები"
@@ -3420,46 +3415,46 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Failed to read configuration file"
msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Could not load default configuration from: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Invalid server index: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3494,8 +3489,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL მოთხოვნა"
@@ -3535,7 +3530,7 @@ msgid "Create PHP Code"
msgstr "PHP კოდის შექმნა"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "განახლება"
@@ -3558,43 +3553,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ძრავები"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "კვი"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y, %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s დღე, %s საათი, %s წუთი და %s წამი"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Routines"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "დასაწყისი"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3602,8 +3597,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "წინა"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3611,53 +3606,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "შემდეგი"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "დასასრული"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "დაბეჭდვა"
@@ -3841,9 +3836,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "დაბრუნება"
@@ -4005,7 +4000,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "კონფიგურაციის ფაილი"
@@ -4067,7 +4062,7 @@ msgstr "ცხრილის სტრუქტურის შეთავა
msgid "Show binary contents as HEX by default"
msgstr "ორობითის ჩვენება HEX ფორმატში იყოს ნაგულისხმევი"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX"
@@ -5979,7 +5974,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "უკანასკნელ ვერსიაზე შემოწმება"
@@ -6127,7 +6122,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6135,21 +6130,21 @@ msgid ""
"configured)."
msgstr "(or the local MySQL server's socket is not correctly configured)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "სერვერი არ პასუხობს"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "დეტალები..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6336,16 +6331,16 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6554,58 +6549,63 @@ msgstr ""
msgid "Language"
msgstr "ენა"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "დირექტორიის შენახვა"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Restore column order"
msgstr "CHAR textarea columns"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Startup"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "ველების რაოდენობა"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "ორშ"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "ჰორიზონტალური"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "ვერტიკალური"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "ჩანიშნული მოთხოვნის გაშვება"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "არჩევა"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sort by key"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6623,100 +6623,100 @@ msgstr "Sort by key"
msgid "Options"
msgstr "პარამეტრები"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relational display field"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "ორობითი შიგთავსის ჩვენება"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "ინფორმაცია ბრაუზერის შესახებ"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "მოთხოვნაში"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "სულ"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF სქემის ჩვენება"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Create relation"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "ბმული ვერ მოიძებნა"
@@ -6760,7 +6760,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB-ის მდგომარეობა"
@@ -7011,8 +7011,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7165,12 +7165,12 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "ჰოსტი"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "დაგენერირების დრო"
@@ -7382,8 +7382,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7556,6 +7556,102 @@ msgstr "SQL compatibility mode"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "ფუნქცია"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "დამალვა"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "ბინარული"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Because of its length, this field might not be editable "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "ჩასმა"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Restart insertion with %s rows"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "და შემდეგ"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "ახალი სტრიქონის ჩამატება"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Showing SQL query"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "წინა გვერდზე დაბრუნება"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "სხვა ახალი სტრიქონის დამატება"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "ამ გვერდზე დაბრუნება"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "შემდეგი სტრიქონის რედაქტირება"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "მნიშვნელობა"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ჩამატებული სტრიქონის id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7568,38 +7664,38 @@ msgstr "არაა"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "პარ"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submit"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "ახალი ველის დამატება"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "ნამდვილად გსურთ "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "ცვლილების გარეშე"
@@ -7607,11 +7703,6 @@ msgstr "ცვლილების გარეშე"
msgid "Charset"
msgstr "სიმბოლოთა ნაკრები"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "ბინარული"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "ბულგარული"
@@ -7947,18 +8038,10 @@ msgid "Slave status"
msgstr "Show slave status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "ცვლადი"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "მნიშვნელობა"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "სერვერის ID"
@@ -8318,11 +8401,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Routines"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "ფუნქცია"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8700,7 +8778,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "გაწმენდა"
@@ -8710,11 +8788,11 @@ msgstr "გაწმენდა"
msgid "Columns"
msgstr "სვეტების სახელები"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8738,10 +8816,6 @@ msgstr ""
msgid "View only"
msgstr "View only"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8932,12 +9006,6 @@ msgstr "ოპერატორი"
msgid "Table Search"
msgstr "ძებნა"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "ჩასმა"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9199,7 +9267,7 @@ msgstr "ოქმის ვერსია"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "მომხმარებელი"
@@ -9433,10 +9501,6 @@ msgstr "ყველას დამალვა/ჩვენება"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "დამალვა"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "ცხრილების რაოდენობა"
@@ -9663,17 +9727,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!"
msgid "Select binary log to view"
msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "ფაილები"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -10114,8 +10178,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -10236,7 +10300,7 @@ msgstr "The privileges were reloaded successfully."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Show slave status"
@@ -10375,160 +10439,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Query cache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Threads"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "დროებითი მონაცემები"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Delayed inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Key cache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "დალაგება"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "განახლება"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "ფაილები"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "არ შეცვალო პაროლი"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Show open tables"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Show open tables"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relations"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "მოთხოვნის ტიპი"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "ინფორმაცია"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10536,120 +10600,120 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Customize startup page"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Statements"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "რეპლიკაცია"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "მიღებულია"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "გაიგზავნა"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "შეწყვეტილია"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "ბრძანება"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10657,78 +10721,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10736,7 +10800,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10744,42 +10808,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10787,33 +10851,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10822,244 +10886,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "შემოტანილი ფაილების ფორმატი"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11067,99 +11131,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11167,18 +11231,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11186,73 +11250,73 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Key cache"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Startup"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "ახალი ველის დამატება"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "განახლება"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR textarea columns"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restore default value"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "ინფორმაცია"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11261,7 +11325,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11269,18 +11333,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11288,11 +11352,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11300,95 +11364,95 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Rename database to"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "ცხრილების არჩევა"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "ცხრილის არასწორი სახელი"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "ახალი სერვერის დამატება"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL მოთხოვნები"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "სტატისტიკის ჩევნება"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "ყველას მონიშნვა"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "მოთხოვნის ტიპი"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11396,7 +11460,7 @@ msgid_plural "%d seconds"
msgstr[0] "წამში"
msgstr[1] "წამში"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11537,7 +11601,7 @@ msgstr "სესიის მნიშვნელობა"
msgid "Global value"
msgstr "გლობალური მნიშვნელობა"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "ჩამოტვირთვა"
@@ -11609,39 +11673,39 @@ msgstr ""
msgid "New server"
msgstr "ახალი სერვერი"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "ნაგულისხმები ენა"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- არაა -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "ნაგულისხმები სერვერი"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "სტრიქონის დასასრული"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "ჩვენება"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "ჩატვირთვა"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin-ის სათაო გვერდი"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "შემოწირულობა"
@@ -11910,55 +11974,46 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters"
msgid "Wrong data"
msgstr "მონაცემთა ბაზები არაა"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "ნამდვილად გსურთ "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ჩამატებული სტრიქონის id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP კოდის სახით ჩვენება"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validate SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-ის შედეგი"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Label"
@@ -11973,60 +12028,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "%s databases have been dropped successfully."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Because of its length, this field might not be editable "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "ახალი სტრიქონის ჩამატება"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Showing SQL query"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "და შემდეგ"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "წინა გვერდზე დაბრუნება"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "სხვა ახალი სტრიქონის დამატება"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "ამ გვერდზე დაბრუნება"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "შემდეგი სტრიქონის რედაქტირება"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Restart insertion with %s rows"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12675,38 +12676,44 @@ msgstr ""
msgid "Create version"
msgstr "Create relation"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL Query box"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maximum number of rows to display"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Control user"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "დაბრუნება"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13076,8 +13083,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13211,8 +13218,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14129,9 +14136,6 @@ msgstr "max. concurrent connections"
#~ msgid "No trigger with name %s found"
#~ msgstr "No valid image path for theme %s found!"
-#~ msgid "rows"
-#~ msgstr "არჩევა"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "row(s) starting from record #"
diff --git a/po/kk.po b/po/kk.po
index c3c22a1a44..33f38a0a3b 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -7,24 +7,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: none\n"
-"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: kk\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Бәрін көрсету"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,7 +32,7 @@ msgstr "Бәрін көрсету"
msgid "Page number:"
msgstr "Бет номері:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -42,21 +42,22 @@ msgstr ""
"немесе сіздің браузеріңіз екі бет арасындағы жаңартылуды өзінің баптауында, "
"қауіпсіздік үшін бұғаттап тастауда."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Іздеу"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -72,28 +73,27 @@ msgstr "Іздеу"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Өту"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Индекс атауы"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Сипаттама"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Осы мәнді қолданыңыз"
@@ -126,12 +126,12 @@ msgstr "Кестеге түсініктеме:"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Бағана"
@@ -140,6 +140,7 @@ msgstr "Бағана"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -147,9 +148,9 @@ msgstr "Бағана"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Типі"
@@ -157,12 +158,12 @@ msgstr "Типі"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Бос/Null"
@@ -201,13 +202,13 @@ msgstr "Түсініктеме"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,19 +219,19 @@ msgstr "Жоқ"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -362,7 +363,7 @@ msgstr "Кесте"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Қатарлар"
@@ -413,28 +414,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%sСұраныстарды көз мөлшерiмен құрастырушыға%s ауысып қосылу"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Сұрыптау"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Өсу бойынша"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Кему бойынша"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Көрсету"
@@ -455,8 +456,8 @@ msgid "Del"
msgstr "Өшіру"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Немесе"
@@ -525,8 +526,8 @@ msgstr[0] "%1$s кестедегi сәйкестiк %2$s"
msgstr[1] "%1$s кестедегi сәйкестiктер %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Шолу"
@@ -535,14 +536,14 @@ msgstr "Шолу"
msgid "Delete the matches for the %s table?"
msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Жою"
@@ -610,11 +611,11 @@ msgstr "Бақылау қосулы"
msgid "Tracking is not active."
msgstr "Бақылауды белсендендірілу"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -624,7 +625,7 @@ msgstr "Түр"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Репликация"
@@ -638,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Белгi соғылғандарды:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Барлығын белгілеу"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -663,27 +664,27 @@ msgstr "Ықшамдауды қажет ететіндерді белгілеу"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Баспаға шығару түрі"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Тазарту"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -709,11 +710,11 @@ msgstr "Кестенiң талдауы"
msgid "Add prefix to table"
msgstr "Кестеге префикс қосу"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Кестениң префиксін ауыстыру"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Кестені префикс пен бірге көшіру"
@@ -732,8 +733,8 @@ msgstr "Қадағаланатын кестелер"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Дерекқор"
@@ -751,7 +752,7 @@ msgstr "Жаңартылған"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Күй"
@@ -851,45 +852,45 @@ msgstr "OpenStreetMaps негізгі қабат ретінде қолданың
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Геометрия"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Нүкте"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Нүкте %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Нүкте қосу"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Сызық"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Сыртқы пішін"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Ішкі пішін"
@@ -897,15 +898,15 @@ msgstr "Ішкі пішін"
msgid "Add a linestring"
msgstr "Сызықты қосу"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Көпбұрыш"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Көпбұрышты қосу"
@@ -928,8 +929,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту "
"әдістері, %sқұжаттамада%s сипатталған."
@@ -971,7 +972,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -994,7 +995,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1010,7 +1011,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"PhpMyAdmin мен жұмыс істеу үшін, фреймдерді қолдайтын браузер керек."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі"
@@ -1019,7 +1020,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө
msgid "Do you really want to execute \"%s\"?"
msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
#, fuzzy
msgid "You are about to DESTROY a complete database!"
msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!"
@@ -1108,21 +1109,21 @@ msgstr "Жабу"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Өзгерту"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Трафиктің графикалық қорытындысы"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Қосылыстар мен процесстердің графикалық құрытындысы"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Сұраныстардың графикалық қорытындысы"
@@ -1133,23 +1134,23 @@ msgstr "Статикалық мәлiметтер"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Барлығы"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Басқа"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1170,7 +1171,7 @@ msgstr "Сервер трафигі (KiB)"
msgid "Connections since last refresh"
msgstr "Соңғы жаңартылған сәттен бастап қосылыстар."
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процесстер"
@@ -1188,7 +1189,7 @@ msgstr "Соңғы жаңартылған сәттен басталған сұр
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Сұраныстардың статистикасы"
@@ -1229,14 +1230,14 @@ msgid "System swap"
msgstr "Үстемелеу жүйесі"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1289,32 +1290,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Байт қабылданды"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЭБ"
@@ -1328,11 +1329,11 @@ msgstr "%d Кесте(лер)"
msgid "Questions"
msgstr "Сұрақтар"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Баптау"
@@ -1353,10 +1354,10 @@ msgid "Please add at least one variable to the series"
msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Жоқ"
@@ -1449,7 +1450,7 @@ msgstr "Баптауын өзгерту"
msgid "Current settings"
msgstr "Ағымдағы баптау"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "График тақырыбы"
@@ -1525,9 +1526,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Уақыт"
@@ -1618,7 +1619,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Импорт"
@@ -1738,15 +1739,15 @@ msgstr "Индекстерді жасыру"
msgid "Show indexes"
msgstr "Индекстерді көрсету"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Сыртқы кілттерді тексерілісі:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Қосулы)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Өшірулі)"
@@ -1813,7 +1814,7 @@ msgstr "Сұраныс өрісін көрсету"
msgid "No rows selected"
msgstr "Бірде-бір қатар таңдалынбады"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Өзгерту"
@@ -1822,17 +1823,18 @@ msgstr "Өзгерту"
msgid "Query execution time"
msgstr "Сұраныстың орындалу уақыты"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Сақтау"
@@ -1857,158 +1859,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Аумақты үлкейту мен кішірейтуге үшін тышқан доңғалағын қолданыңыз."
-
-#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-#: js/messages.php:308
+#: js/messages.php:306
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Сұраныс нәтижелері"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Елемеу"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Көшіру"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Бағаналар қосу"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Сыртқы кілтті таңдаңыз"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Сұрыптау үшін шертіңіз"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Белгіні алу/орнату үшін шертіңіз"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Сілтемеге өту"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Баған атын көшіру"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Мәліметтер қатарын(ларын) көрсету"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Шығару"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Тағы"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2016,266 +2010,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr "Соңғы тұрақты болжам:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Дайын"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Алдыңғы"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Келесі"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Бүгін"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Қаңтар"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Ақпан"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Наурыз"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Сәуір"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Мамыр"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Маусым"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Шілде"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Тамыз"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Қыркүйек"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Қазан"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Қараша"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Желтоқсан"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Қаң"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Ақп"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Нау"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Сәу"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Мам"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Мау"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Шіл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Там"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Қыр"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Қаз"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Қар"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Жел"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Жексенбі"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Дүйсенбі"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Сейсенбі"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Сәрсенбі"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Бейсенбі"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Жұма"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Сенбі"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Жек"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Дүй"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Сей"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Сәр"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Бей"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Жұм"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Сен"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Жк"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Дс"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Сс"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Бс"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Жм"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Сн"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Апт"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Сағат"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Минут"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Секунд"
@@ -2325,16 +2319,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "секундке"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "Минутқа"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "сағатқа"
@@ -2460,15 +2454,15 @@ msgstr ""
msgid "Databases"
msgstr "Дерекқоры"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2480,20 +2474,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2551,12 +2545,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2573,8 +2567,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Қате"
@@ -2686,35 +2681,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2755,14 +2750,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3014,8 +3009,8 @@ msgstr "%s-ге қош келдіңіз"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3113,7 +3108,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3164,42 +3159,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3234,8 +3229,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "kk"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3273,7 +3268,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3294,95 +3289,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3554,9 +3549,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3700,7 +3695,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3760,7 +3755,7 @@ msgstr "Мәлімет қорлары"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5496,7 +5491,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5634,25 +5629,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5810,8 +5805,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5987,48 +5982,53 @@ msgstr ""
msgid "Language"
msgstr "Тіл"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Browse"
+msgid "rows"
+msgstr "Шолу"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6046,89 +6046,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6172,7 +6172,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6423,8 +6423,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6545,12 +6545,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6748,8 +6748,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6911,6 +6911,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6921,32 +7011,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6954,11 +7044,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7283,18 +7368,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7612,11 +7689,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7936,7 +8008,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7944,11 +8016,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7972,10 +8044,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8147,10 +8215,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8322,7 +8386,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8515,10 +8579,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8709,17 +8769,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9144,8 +9204,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9260,7 +9320,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9393,146 +9453,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9540,115 +9600,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9656,78 +9716,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9735,7 +9795,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9743,42 +9803,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -9786,33 +9846,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
msgid ""
"Normally, writes to the InnoDB buffer pool happen in the background. "
"However, if it's necessary to read or create a page and no clean pages are "
@@ -9821,242 +9881,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10064,99 +10124,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10164,18 +10224,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10183,61 +10243,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10246,7 +10306,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10254,18 +10314,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10273,11 +10333,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10285,86 +10345,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10496,7 +10556,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10558,39 +10618,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10776,51 +10836,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10833,56 +10884,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr ""
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11466,30 +11467,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -11843,8 +11848,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -11962,8 +11967,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -12593,6 +12598,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "Паралельді_кірістірмелерді анықтау"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Аумақты үлкейту мен кішірейтуге үшін тышқан доңғалағын қолданыңыз."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
diff --git a/po/ko.po b/po/ko.po
index e50234d89a..7b39bf58ab 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-02-17 10:54+0200\n"
"Last-Translator: minsung kang \n"
"Language-Team: korean \n"
-"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.1.6\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "모두 보기"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "모두 보기"
msgid "Page number:"
msgstr "페이지 번호:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보"
"안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "검색"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "검색"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "실행"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "키 이름"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "설명"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "이 값을 사용합니다"
@@ -121,12 +121,12 @@ msgstr "테이블 설명"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "컬럼명"
@@ -135,6 +135,7 @@ msgstr "컬럼명"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "컬럼명"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "종류"
@@ -152,12 +153,12 @@ msgstr "종류"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "설명"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "아니오 "
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "테이블 "
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "행"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%s비주얼 쿼리 빌더%s로 전환"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "정렬"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "오름차순"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "내림차순"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "보기"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "삭제"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "또는"
@@ -521,8 +522,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "테이블 %s에서 %s 건 일치"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "보기"
@@ -531,14 +532,14 @@ msgstr "보기"
msgid "Delete the matches for the %s table?"
msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "삭제"
@@ -605,11 +606,11 @@ msgstr "트래킹이 활성화되었습니다."
msgid "Tracking is not active."
msgstr "트래킹이 활성화되어 있지 않습니다."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오."
@@ -620,7 +621,7 @@ msgstr "뷰"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "복제"
@@ -634,20 +635,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "선택한 것을:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "모두 체크"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -659,27 +660,27 @@ msgstr "오버헤드를 가진 테이블들을 체크"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "내보내기"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "인쇄용 보기"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "비우기"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -705,11 +706,11 @@ msgstr "테이블 분석"
msgid "Add prefix to table"
msgstr "테이블에 접두사 추가"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "테이블의 접두사를 교체"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "테이블에 접두사를 추가하여 복제"
@@ -728,8 +729,8 @@ msgstr "추적된 테이블"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "데이터베이스"
@@ -747,7 +748,7 @@ msgstr "수정됨"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "상태"
@@ -847,45 +848,45 @@ msgstr "기본 레이어로 OpenStreetMaps를 사용"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometry"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "포인트"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "포인트 %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "포인트 추가하기"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "줄(열) 구분자"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "외륜"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "내륜"
@@ -893,17 +894,17 @@ msgstr "내륜"
msgid "Add a linestring"
msgstr "선 추가"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "내부 링 추가"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "폴리곤"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "폴리곤 추가"
@@ -924,8 +925,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s"
"를 참조하여 주십시오."
@@ -973,7 +974,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "북마크 %s가 생성되었습니다."
@@ -1000,7 +1001,7 @@ msgstr ""
"는 이 가져오기를 마칠 수 없음을 뜻합니다."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1015,7 +1016,7 @@ msgstr "뒤로"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
@@ -1025,7 +1026,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
msgid "Do you really want to execute \"%s\"?"
msgstr "정말로 다음을 실행하시겠습니까? "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "이 데이터베이스 전체를 제거하려고 합니다!"
@@ -1111,21 +1112,21 @@ msgstr "닫기"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "수정"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "실시간 전송량 도표"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "실시간 연결/프로세스 도표"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "실시간 쿼리 도표"
@@ -1136,23 +1137,23 @@ msgstr "정적 데이터"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "전체 쿼리수"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "기타"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1172,7 +1173,7 @@ msgstr "서버 전송량(KiB)"
msgid "Connections since last refresh"
msgstr "마지막 새로고침 이후 연결 수"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "프로세스"
@@ -1191,7 +1192,7 @@ msgstr "마지막 새로고침 이후 Questions"
msgid "Questions (executed statements by the server)"
msgstr "Questions(서버에 의해 실행된 문장)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "질의 통계"
@@ -1235,14 +1236,14 @@ msgid "System swap"
msgstr "시스템 스왑"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1294,32 +1295,32 @@ msgstr "바이트 보냄"
msgid "Bytes received"
msgstr "바이트 받음"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "연결 수"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1334,11 +1335,11 @@ msgstr "%d개 테이블 "
msgid "Questions"
msgstr "테이블 작업"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "소통량"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "설정"
@@ -1359,10 +1360,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "없음"
@@ -1458,7 +1459,7 @@ msgstr "설정 변경"
msgid "Current settings"
msgstr "현재 설정"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "차트 제목"
@@ -1541,9 +1542,9 @@ msgstr "분석중..."
msgid "Explain output"
msgstr "SQL 해석"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "시간"
@@ -1641,7 +1642,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "가져오기"
@@ -1765,19 +1766,19 @@ msgstr "인덱스 숨기기"
msgid "Show indexes"
msgstr "인덱스 보이기"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "외래 키(foreign key) 체크 사용 안함"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "사용가능"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1848,7 +1849,7 @@ msgstr "질의 상자 보이기"
msgid "No rows selected"
msgstr "선택된 행이 없습니다."
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "변경"
@@ -1857,17 +1858,18 @@ msgstr "변경"
msgid "Query execution time"
msgstr "질의 실행 시간"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "저장"
@@ -1895,173 +1897,164 @@ msgid "Hovering over a point will show its label."
msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다."
#: js/messages.php:304
-#, fuzzy
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "마우스 휠로 확대/축소할 수 있습니다."
-
-#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-#: js/messages.php:308
+#: js/messages.php:306
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "두 개의 열 선택"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "두 개의다른 열 선택"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "질의 결과"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
msgid "Data point content"
msgstr "테이블 설명"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "무시"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "복사"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "필드 추가하기"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "출력할 필드 선택"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "열(칼럼) 이름"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "행 업데이트"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "암호 변경"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "암호 변경"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "월"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2069,28 +2062,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "데이터베이스가 없습니다"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "완료"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "이전"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2098,149 +2091,149 @@ msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "오늘"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "1월"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "2월"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "3월"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "4월"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "5월"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "6월"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "7월"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "8월"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "9월"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "10월"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "11월"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "12월"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "12월"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "일요일"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "월요일"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "화요일"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "수요일"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "목요일"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "금요일"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2248,97 +2241,97 @@ msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "주"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "없음"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "시"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "분"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "초"
@@ -2389,16 +2382,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2527,15 +2520,15 @@ msgstr ""
msgid "Databases"
msgstr "데이터베이스 "
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "서버"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2547,20 +2540,20 @@ msgid "Structure"
msgstr "구조"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "삽입"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "테이블 작업"
@@ -2620,13 +2613,13 @@ msgstr "사용자"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "바이너리"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "환경설정값"
@@ -2643,8 +2636,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "오류"
@@ -2755,35 +2749,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2824,14 +2818,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3089,8 +3083,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -3195,7 +3189,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "테이블 수"
@@ -3247,11 +3241,11 @@ msgstr "어떤 공격을 받고있을 가능성이 있습니다."
msgid "numeric key detected"
msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다."
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "설정 파일을 읽는데 실패했습니다."
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3259,12 +3253,12 @@ msgstr ""
"일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십"
"시오."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "기본 설정을 가져올 수 없습니다: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3275,21 +3269,21 @@ msgid ""
msgstr ""
"환경설정 파일에 $cfg['PmaAbsoluteUri'] 변수가 정의되어야 합니다!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "잘못된 서버 인덱스: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오"
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "설정 파일에 인증 방식이 제대로 설정이 되어 있지 않습니다."
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s를 %s 이상으로 업그레이드 하십시오"
@@ -3324,8 +3318,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL 질의"
@@ -3363,7 +3357,7 @@ msgid "Create PHP Code"
msgstr "PHP 코드 보기"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "다시 보기"
@@ -3384,96 +3378,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "인라인"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "프로파일링"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "일"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%y-%m-%d %H:%M "
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s일 %s시간 %s분 %s초"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "매개 변수 누락:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "처음"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "이전"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "다음"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "마지막"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "데이터베이스 "%s" 로 이동."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "업로드 파일:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "웹서버 업로드 디렉토리"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "업로드 디렉토리에 접근할 수 없습니다"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "업로드할 파일이 없습니다."
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "실행하기"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "인쇄"
@@ -3656,9 +3650,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "리세트"
@@ -3805,7 +3799,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3866,7 +3860,7 @@ msgstr "제안하는 테이블 구조"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5676,7 +5670,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5825,27 +5819,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "서버 응답이 없습니다"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6018,8 +6012,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6211,52 +6205,55 @@ msgstr ""
msgid "Language"
msgstr "언어"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Restore column order"
msgstr "컬럼 추가/삭제"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "시작 행"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "행 갯수"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mo"
msgid "Mode"
msgstr "월"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "수평(가로)"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "수평 (rotated headers)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "수직(세로)"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "보기"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6274,98 +6271,98 @@ msgstr ""
msgid "Options"
msgstr "옵션"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Full Texts"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Version information"
msgid "Hide browser transformation"
msgstr "버전 정보"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "질의(in query)"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "행(레코드) 보기"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "합계"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "질의 실행시간 %01.4f 초"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Displaying Column Comments"
msgid "Display chart"
msgstr "열(칼럼) 설명(코멘트) 출력하기"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "서버 버전"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6410,7 +6407,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6662,8 +6659,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6801,12 +6798,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "호스트"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "처리한 시간"
@@ -7017,8 +7014,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
@@ -7183,6 +7180,101 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "함수"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "바이너리"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "필드의 길이 때문에, 이 필드를 편집할 수 없습니다 "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "바이너리 - 편집 금지 "
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "웹서버 업로드 디렉토리"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "삽입"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "이어서"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "새 열을 삽입합니다"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "삽입 쿼리 보기"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "되돌아가기"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "새 행(레코드) 삽입하기"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "되돌아가기"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "다음 행 수정"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다."
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "값"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL 쿼리 보기"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7195,36 +7287,36 @@ msgstr "없음"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "금"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "확인"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "정말로 다음을 실행하시겠습니까? "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "변화 없음"
@@ -7232,11 +7324,6 @@ msgstr "변화 없음"
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "바이너리"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7566,18 +7653,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "변수"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "값"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -7920,11 +7999,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "함수"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8279,7 +8353,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "데이터베이스 %s에 SQL 질의를 실행"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8289,11 +8363,11 @@ msgstr ""
msgid "Columns"
msgstr "열(칼럼) 이름"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "이 SQL 질의를 북마크함"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8317,10 +8391,6 @@ msgstr "이 질의를 다시 보여줌 "
msgid "View only"
msgstr "View only"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "웹서버 업로드 디렉토리"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8512,12 +8582,6 @@ msgstr "테이블 작업"
msgid "Table Search"
msgstr "검색"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "삽입"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8695,7 +8759,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "사용자"
@@ -8802,8 +8866,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
-"%s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
+"s여기를 클릭%s하십시오."
#: main.php:357
#, php-format
@@ -8912,10 +8976,6 @@ msgstr "모두 보기"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9130,18 +9190,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "필드"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9589,8 +9649,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9711,7 +9771,7 @@ msgstr "권한을 다시 로딩했습니다."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9850,157 +9910,157 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "쓰레드 %s 를 죽였습니다."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "질의 종류"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "확장된 inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "테이블 보기"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "런타임 정보"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "암호를 변경하지 않음"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "테이블 보기"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "테이블 보기"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
msgid "Related links:"
msgstr "테이블 작업"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "질의 종류"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "함수"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10008,118 +10068,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "명세"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
"이 MySQL 서버는 %s 동안 구동되었습니다. 구동 시작날짜는 %s 입니다."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "받음"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "보냄"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "실패한 시도"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "커맨드"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10127,78 +10187,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10206,7 +10266,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10214,42 +10274,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10257,33 +10317,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10292,243 +10352,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "파일 문자셋:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10536,99 +10596,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10636,18 +10696,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10655,68 +10715,68 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "트래킹이 활성화되어 있지 않습니다."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "토"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "필드 추가하기"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "컬럼 추가/삭제"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10725,7 +10785,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10733,18 +10793,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10752,11 +10812,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10764,94 +10824,94 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "데이터베이스 이름 변경"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
msgid "Select series:"
msgstr "모두 선택"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "새 사용자 추가"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL 질의"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "행(레코드) 통계"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
msgid "Selected time range:"
msgstr "모두 선택"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "질의 종류"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 초"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10985,7 +11045,7 @@ msgstr "세션 값"
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "다운로드"
@@ -11049,39 +11109,39 @@ msgstr ""
msgid "New server"
msgstr "새 서버"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "기본 언어"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "사용자 선택"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "-없음-"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "기본 서버"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "줄 끝"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "보기"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "로드"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 홈페이지"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "기부"
@@ -11272,55 +11332,46 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함"
msgid "Wrong data"
msgstr "데이터베이스가 없습니다"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "정말로 다음을 실행하시겠습니까? "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP 코드 보기"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL 쿼리 보기"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL 검사"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL 결과"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Label"
@@ -11335,59 +11386,6 @@ msgstr "선택한 사용자들을 삭제했습니다."
msgid "The columns have been moved successfully."
msgstr "선택한 사용자들을 삭제했습니다."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "필드의 길이 때문에, 이 필드를 편집할 수 없습니다 "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "바이너리 - 편집 금지 "
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "새 열을 삽입합니다"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "삽입 쿼리 보기"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "이어서"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "되돌아가기"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "새 행(레코드) 삽입하기"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "되돌아가기"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "다음 행 수정"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다."
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12029,33 +12027,39 @@ msgstr ""
msgid "Create version"
msgstr "서버 버전"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL 질의"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "리세트"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "더 많은 테마들!"
@@ -12417,8 +12421,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12548,8 +12552,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13203,6 +13207,10 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr ""
+#, fuzzy
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "마우스 휠로 확대/축소할 수 있습니다."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13330,9 +13338,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Missing value in the form !"
-#~ msgid "rows"
-#~ msgstr "보기"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "행. 시작(행)위치"
diff --git a/po/lt.po b/po/lt.po
index 96f956ca41..a041001e0f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-03 12:52+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: lithuanian \n"
-"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: lt\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 0.10\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Rodyti viską"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Rodyti viską"
msgid "Page number:"
msgstr "Puslapis:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Paieška"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Paieška"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Vykdyti"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Indekso pavadinimas"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Paaiškinimas"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Naudokite šią reikšmę"
@@ -122,12 +122,12 @@ msgstr "Lentelės komentarai"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Stulpelis"
@@ -136,6 +136,7 @@ msgstr "Stulpelis"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Stulpelis"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipas"
@@ -153,12 +154,12 @@ msgstr "Tipas"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Komentarai"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Lentelė"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Eilutės"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Pereiti į %svizualią daryklę%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Rūšiuoti"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Didėjimo tvarka"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Mažėjimo tvarka"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Rodyti"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Pakeičiant"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Arba"
@@ -525,8 +526,8 @@ msgstr[1] "%s atitikmenys lentelėse %s"
msgstr[2] "%s atitikmenų lentelėse %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Peržiūrėti"
@@ -535,14 +536,14 @@ msgstr "Peržiūrėti"
msgid "Delete the matches for the %s table?"
msgstr "Ištrinti sutapimus %s lentelėje(ei)?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Trinti"
@@ -611,14 +612,14 @@ msgstr "Sekimas yra aktyvus."
msgid "Tracking is not active."
msgstr "Sekimas yra neaktyvus."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
-"%sdokumentacijoje%s."
+"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
+"sdokumentacijoje%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -627,7 +628,7 @@ msgstr "Rodinys"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikavimas"
@@ -641,20 +642,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Pasirinktus:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Pažymėti visas"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -666,27 +667,27 @@ msgstr "Pažymėti turinčias perteklių"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksportuoti"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Spausdinti struktūrą"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Išvalyti"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -712,11 +713,11 @@ msgstr "Analizuoti lentelę"
msgid "Add prefix to table"
msgstr "Pridėti priešdėlį lentelės pavadinimui"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Pakeisti lentelės pavadinimo priešdėlį"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopijuoti lentelę su pavadinimo priešdėliu"
@@ -735,8 +736,8 @@ msgstr "Sekamos lentelės"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Duomenų bazė"
@@ -754,7 +755,7 @@ msgstr "Atnaujinta"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Būsena"
@@ -854,47 +855,47 @@ msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrija"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Taškas"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Taškas %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Pridėti tašką"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Eilutės baigiasi"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -904,17 +905,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Sukurti naują vartotoją"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Sukurti naują vartotoją"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Daugiakampis"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Pridėti daugiakampį"
@@ -937,11 +938,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
-"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
+"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
+"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -987,7 +988,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Žymė %s sukurta"
@@ -1015,7 +1016,7 @@ msgstr ""
"padidintumėte PHP laiko limitą."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1031,7 +1032,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin draugiškesnis su rėmelius palaikančiomis naršyklėmis."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
@@ -1041,7 +1042,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
msgid "Do you really want to execute \"%s\"?"
msgstr "Ar tikrai norite "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
@@ -1127,21 +1128,21 @@ msgstr "Uždaryti"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redaguoti"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Tiesioginių duomenų srauto diagrama"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Tiesioginių prisijungimų/procesų diagrama"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Tiesioginė užklausos diagrama"
@@ -1152,23 +1153,23 @@ msgstr "Statiniai duomenys"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Iš viso"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Kita"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1188,7 +1189,7 @@ msgstr "Serverio duomenų srautas (KiB)"
msgid "Connections since last refresh"
msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesai"
@@ -1206,7 +1207,7 @@ msgstr "Questions nuo paskutinio atnaujinimo"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Užklausų statistika"
@@ -1249,14 +1250,14 @@ msgid "System swap"
msgstr "Sistemos swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1308,32 +1309,32 @@ msgstr "Išsiųsta baitų"
msgid "Bytes received"
msgstr "Gauta baitų"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Prisijungimai"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1347,11 +1348,11 @@ msgstr "%d lentelė(-ės)"
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Apkrovimas"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Nustatymai"
@@ -1374,10 +1375,10 @@ msgid "Please add at least one variable to the series"
msgstr "Prašome pridėti bent vieną kintamąjį į eilę"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ne"
@@ -1474,7 +1475,7 @@ msgstr "Keisti nustatymus"
msgid "Current settings"
msgstr "Dabartiniai nustatymai"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Diagramos antraštė"
@@ -1559,9 +1560,9 @@ msgstr "Analizuoti"
msgid "Explain output"
msgstr "Paaiškinti SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Laikas"
@@ -1672,7 +1673,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importuoti"
@@ -1800,19 +1801,19 @@ msgstr "Nerodyti indeksų"
msgid "Show indexes"
msgstr "Rodyti indeksus"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Atsisakyti išorinių raktų tikrinimo"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Įjungta"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1884,7 +1885,7 @@ msgstr "Rodyti užklausos laukelį"
msgid "No rows selected"
msgstr "Nepasirinkti įrašai"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Redaguoti"
@@ -1893,17 +1894,18 @@ msgstr "Redaguoti"
msgid "Query execution time"
msgstr "Užklausos vykdymo laikas"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nėra galimas eilutės numeris."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Išsaugoti"
@@ -1930,164 +1932,156 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Simboliai yra perkonvertuojami į skaičių diagramai"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Pasirinkite du stulpelius"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Pasirinkite du skirtingus stulpelius"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Užklausos rezultatai"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Duomenų rodyklės dydis"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoruoti"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopijuoti"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Pridėti stulpelį(-ius)"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Pasirinkite siejamą raktą"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Pasirinkti Foreign Key"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Pasirinkite laukus peržiūrai"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Pridėti parinktį stulpeliui/skilčiai"
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Paspausti escape (klavišas Esc), kad išeiti iš redagavimo"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Vilkite, kad pertvarkytumėte"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Spustelėkite, kad surūšiuoti"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Paspauskite, kad (at)pažymėti"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Eiti pagal nuorodą"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Stulpelių vardai"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Atnaujinti eilutę(es)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Generuoti slaptažodį"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generuoti"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Daugiau"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2097,27 +2091,27 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "naujausias"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Atlikta"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Ankstesnis"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2125,149 +2119,149 @@ msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Šiandien"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "sausio"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "vasario"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "kovo"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "balandžio"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Geg"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "birželio"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "liepos"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "rugsėjo"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "spalio"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "lapkričio"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Grd"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Trečiadienis"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Ketvirtadienis"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2275,97 +2269,97 @@ msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sav."
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Ne"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Valanda"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minutė"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekundės"
@@ -2395,8 +2389,8 @@ msgstr ""
#| "Failed formatting string for rule '%s'. PHP threw following error: %s"
msgid "Failed formatting string for rule '%s'."
msgstr ""
-"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: "
-"%s"
+"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %"
+"s"
#: libraries/Advisor.class.php:361
#, php-format
@@ -2420,16 +2414,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per sekundę"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minutę"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per valandą"
@@ -2560,15 +2554,15 @@ msgstr ""
msgid "Databases"
msgstr "Duomenų bazės"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveris"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2580,20 +2574,20 @@ msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Įterpti"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Veiksmai"
@@ -2653,12 +2647,12 @@ msgstr "Naudotojas"
msgid "Synchronize"
msgstr "Sinchronizuoti"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Dvejetainis log'as"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Kintamieji"
@@ -2675,8 +2669,9 @@ msgid "Engines"
msgstr "Varikliai"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Klaida"
@@ -2794,35 +2789,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Peržiūra negalima."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "pasirinkti"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standartinė tema %s nerasta!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s nerasta!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Kelias iki temos nerastas temai %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Išvaizda"
@@ -2863,14 +2858,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3128,8 +3123,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@@ -3239,7 +3234,7 @@ msgstr "padalintas"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Lentelės"
@@ -3290,11 +3285,11 @@ msgstr "galimas pažeidžiamumas"
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Nepavyko perskaityti konfigūracijos failo"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3302,12 +3297,12 @@ msgstr ""
"Tai dažniausiai reiškia, kad yra įvelta sintaksės klaida, prašome patikrinti "
"žemiau esančias klaidas."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3318,21 +3313,21 @@ msgid ""
msgstr ""
"BŪTINA nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Blogas serverio indeksas: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
@@ -3367,8 +3362,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL užklausa"
@@ -3406,7 +3401,7 @@ msgid "Create PHP Code"
msgstr "PHP kodas"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Atnaujinti"
@@ -3427,41 +3422,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Redaguoti čia"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiliavimas"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sek"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y m. %B %d d. %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Trūkstamas parametras:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Pradžia"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3469,8 +3464,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Ankstesnis"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3478,52 +3473,52 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kitas"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Pabaiga"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Pereiti į „%s“ duomenų bazę."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Spustelėkite suskleidimui/atskleidimui"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Naršyti savo kompiuteryje:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams."
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nėra failų išsiuntimui"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Vykdyti"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Spausdinti"
@@ -3696,9 +3691,9 @@ msgstr "Atstatyti numatytąsias reikšmes"
msgid "Allow users to customize this value"
msgstr "Leisti naudotojams adaptuoti šią reikšmę"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Atstatyti į pradinę būseną"
@@ -3856,7 +3851,7 @@ msgid "Compress on the fly"
msgstr "Glaudinti"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Nustatymų failas"
@@ -3918,7 +3913,7 @@ msgstr "Analizuoti lentelės struktūrą"
msgid "Show binary contents as HEX by default"
msgstr "Rodyti dvejetainį turinį kaip šešioliktainį pagal nutylėjimą"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Rodyti dvejetainį turinį kaip šešioliktainį"
@@ -5779,7 +5774,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Patikrinti ar naujausia versija"
@@ -5922,7 +5917,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5930,21 +5925,21 @@ msgid ""
"configured)."
msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatsako"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalės..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6104,8 +6099,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@@ -6298,50 +6293,55 @@ msgstr "Formato specifiniai nustatymai:"
msgid "Language"
msgstr "Kalba"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Išsaugoti katalogą"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Atstatyti stulpelių rikiavimą"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Pradėti eilute"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Eilučių skaičius:"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Režimas"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontaliai"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontalūs (pasukti pavadinimai)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikaliai"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute every"
+msgid "Headers every"
+msgstr "Vykdyti kas"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Peržiūrėti"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Rūšiuoti pagal raktą"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6359,91 +6359,91 @@ msgstr "Rūšiuoti pagal raktą"
msgid "Options"
msgstr "Nustatymai"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Tekstus rodyti dalinai"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Tekstus rodyti pilnai"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Sąryšių raktas"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Ryšių rodymo stulpelis"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Rodyti dvejetainį turinį"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Rodyti BLOB turinį"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Naršyklės transformacija"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Eilutė buvo ištrinta"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Stabdyti procesą"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "užklausa vykdoma"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Rodomi įrašai"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "iš viso "
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Užklausa užtruko %01.4f sek."
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Veiksmai su užklausos rezultatais"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Spausdinti rezultatus (su pilnais tekstais)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Rodyti diagramą"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Sukurti rodinį"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Sąryšis nerastas"
@@ -6487,7 +6487,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buferio Pool'as"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB būsena"
@@ -6752,8 +6752,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6876,12 +6876,12 @@ msgstr "Rodyti MIME-tipus"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Darbinė stotis"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Atlikimo laikas"
@@ -7103,8 +7103,8 @@ msgstr "Nerasta duomenų GIS vizualizavimui."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)."
@@ -7284,6 +7284,99 @@ msgstr "SQL suderinamumo režimas:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nenaudokite AUTO_INCREMENT nulinėms reikšmėms"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Paslėpti"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Dvejetainis"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Dėl jo ilgio, šis laukelis gali būti neredaguojamas (tinas)"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Dvejetainis - nekeisti"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web serverio katalogas atsiuntimams"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Įterpti"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Tęstį įterpimą su %s eilučių"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ir tada"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Įterpti kaip naują įrašą"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Rodyti įterptą užklausą"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Sugrįžti į buvusį puslapį"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Įterpti kitą naują eilutę"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Grįžti atgal į šį puslapį"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Redaguoti kitą įrašą"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Reikšmė"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Rodoma SQL užklausa"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Įterpto įrašo id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7294,34 +7387,34 @@ msgstr "Nėra"
msgid "Convert to Kana"
msgstr "Konvertuoti į Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Iš"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Kam"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Siųsti"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Pridėti lentelės priešdėlį"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Pridėti priešdėlį"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ar tikrai norite "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nėra pakeitimų"
@@ -7329,11 +7422,6 @@ msgstr "Nėra pakeitimų"
msgid "Charset"
msgstr "Koduotė"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Dvejetainis"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarų"
@@ -7672,18 +7760,10 @@ msgid "Slave status"
msgstr "Pavaldžiojo serverio būklė (Slave status)"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Kintamasis"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Reikšmė"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Serverio ID"
@@ -8015,11 +8095,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8343,7 +8418,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Išvalyti"
@@ -8351,11 +8426,11 @@ msgstr "Išvalyti"
msgid "Columns"
msgstr "Stulpeliai"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Šios SQL užklausą pasižymėti kaip"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
@@ -8379,10 +8454,6 @@ msgstr "Rodyti šią užklausą vėl "
msgid "View only"
msgstr "Peržiūra"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web serverio katalogas atsiuntimams"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8586,12 +8657,6 @@ msgstr "Operatorius"
msgid "Table Search"
msgstr "Paieška"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Įterpti"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8815,7 +8880,7 @@ msgstr "Protokolo versija"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Naudotojas"
@@ -9037,10 +9102,6 @@ msgstr "Paslėpti/rodyti visus"
msgid "Hide/Show Tables with no relation"
msgstr "Slėpti/rodyti lenteles be sąryšių"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Paslėpti"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Lentelių skaičius"
@@ -9235,17 +9296,17 @@ msgstr "Failo nėra"
msgid "Select binary log to view"
msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Failai"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Trumpinti rodomas užklausas"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Rodyti pilnas užklausas"
@@ -9696,8 +9757,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@@ -9823,7 +9884,7 @@ msgstr ""
"Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo "
"(replication) procese."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Rodyti pagrindinio serverio būklę"
@@ -9974,152 +10035,152 @@ msgstr ""
"Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis "
"(slave). Konfigūruoti!"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Gija %s buvo sėkmingai išjungta."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Užklausų saugykla"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Gijos"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Laikini duomenys"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Užlaikyti įterpimai"
-#: server_status.php:608
+#: server_status.php:611
#, fuzzy
msgid "Key cache"
msgstr "Užklausų saugykla"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Rikiavimas"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Rodyti atidarytas lenteles"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Rodyti pavaldinio būklę"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Veikimo informacija"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Visi būsenos kintamieji"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Atnaujinimo dažnis:"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtrai"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Turintys žodį:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtruoti pagal kategoriją..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Rodyti nesuformatuotas reikšmes"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Susijusios nuorodos:"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query analyzer"
msgid "Run analyzer"
msgstr "Užklausos analizatorius"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Įvadas"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10127,33 +10188,33 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Adaptuoti paleidimo (pagrindinį) puslapį"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Parametrai"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10161,19 +10222,19 @@ msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis "
"serveris dauginimo procese."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo "
"procese."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo "
"procese."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10181,71 +10242,71 @@ msgstr ""
"Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Dauginimo būsena"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Gauta"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Siųsta"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Daugiausia lygiagrečių prisijungimų"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Nepavykę bandymai"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Nutraukta"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio."
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10253,78 +10314,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Kiek laikinųjų failų mysqld sukūrė."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Įvykdytų FLUSH užklausų skaičius."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Vidinių COMMIT užklausų skaičius."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10332,7 +10393,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10340,42 +10401,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Vidinių ROLLBACK užklausų skaičius."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Tuščių puslapių skaičius."
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10383,33 +10444,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10418,244 +10479,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Esamu momentu laukiančių fsync() operacijų skaičius."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Esamu momentu laukiančių skaitymų skaičius."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Esamu momentu laukiančių rašymų skaičius."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Duomenų nuskaitymų skaičius."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Duomenų įrašymų skaičius."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Sukurtų puslapių skaičius."
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Puslapių skaitymų skaičius."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Įrašytų puslapių skaičius."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Įkelto failo formatas"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Failų kurie yra atidaryti skaičius."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Lentelių kurios yra atidarytos skaičius."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Podėlio kreipimųsi skaičius."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10663,99 +10724,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Surikiuotų eilučių skaičius."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10763,18 +10824,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10782,63 +10843,63 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Sekimas yra neaktyvus."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Paleisti Monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instrukcijos/Diegimas"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Pridėti diagramą"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Naujinimo dažnis"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Diagramos stulpeliai"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Diagramos išdėstymas"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Atstatyti numatytąsias reikšmes"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Monitor instrukcijos"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10847,7 +10908,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10855,18 +10916,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10874,11 +10935,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10886,81 +10947,81 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove chart"
msgid "Preset chart"
msgstr "Pašalinti diagramą"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Būsenos kintamasis(ieji)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Pasirinkite eiles:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "arba įveskite kintamojo vardą:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Pridėti šią eilę"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Eilės diagramoje:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Registruoti statistiką"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Pasirinktas laiko tarpas:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Užklausos analizatorius"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10969,7 +11030,7 @@ msgstr[0] "Sekundė"
msgstr[1] "Sekundės"
msgstr[2] "Sekundžių"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11105,7 +11166,7 @@ msgstr "Sesijos reikšmė"
msgid "Global value"
msgstr "Globali reikšmė"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Parsisiųsti"
@@ -11176,39 +11237,39 @@ msgstr "Nėra jokių sukonfigūruotų serverių"
msgid "New server"
msgstr "Naujas serveris"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Įprastinė kalba"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "leisti vartotojui pasirinkti"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- tuščia -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Įprastinis serveris"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Eilutės galas"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Rodymas"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Įkelti"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin tinklalapis"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Paremti"
@@ -11443,53 +11504,44 @@ msgstr ""
msgid "Wrong data"
msgstr "Nėra duomenų"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Naršyti išorines reikšmes"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ar tikrai norite "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Įterpto įrašo id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Rodomas PHP kodas"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Rodoma SQL užklausa"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Patikrintas SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL rezultatas"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Sugeneravo"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nuorodos Antraštė"
@@ -11504,57 +11556,6 @@ msgstr "Lentelė %1$s sėkmingai pakeista"
msgid "The columns have been moved successfully."
msgstr "Pažymėti vartotojai sėkmingai pašalinti."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Dėl jo ilgio, šis laukelis gali būti neredaguojamas (tinas)"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Dvejetainis - nekeisti"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Įterpti kaip naują įrašą"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Rodyti įterptą užklausą"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ir tada"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Sugrįžti į buvusį puslapį"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Įterpti kitą naują eilutę"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Grįžti atgal į šį puslapį"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Redaguoti kitą įrašą"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Tęstį įterpimą su %s eilučių"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12163,38 +12164,44 @@ msgstr ""
msgid "Create version"
msgstr "Sukurti versiją"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Slėpti paieškos kriterijų"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maksimalus skaičius eilučių rodymui"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Kontroliuoti naudotoją"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Atstatyti į pradinę būseną"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Gauti daugiau išvaizdų!"
@@ -12569,8 +12576,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12703,8 +12710,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13402,6 +13409,9 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "MyISAM concurrent įterpimai"
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Simboliai yra perkonvertuojami į skaičių diagramai"
+
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
@@ -13675,9 +13685,6 @@ msgstr "MyISAM concurrent įterpimai"
#~ msgid "No trigger with name %s found"
#~ msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
-#~ msgid "rows"
-#~ msgstr "Peržiūrėti"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "eilučių(tės) pradedant nuo #"
diff --git a/po/lv.po b/po/lv.po
index 20387c3620..c67097a05d 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:18+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: latvian \n"
-"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Rādīt visu"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Rādīt visu"
msgid "Page number:"
msgstr "Lapas numurs:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības "
"iestādījumu dēļ."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Meklēt"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Meklēt"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Aiziet!"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Atslēgas nosaukums"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Apraksts"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Lietot šo vērtību"
@@ -121,12 +121,12 @@ msgstr "Komentārs tabulai"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -137,6 +137,7 @@ msgstr "Kolonnu nosaukumi"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Kolonnu nosaukumi"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tips"
@@ -154,12 +155,12 @@ msgstr "Tips"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulle"
@@ -198,13 +199,13 @@ msgstr "Komentāri"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Nē"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -368,7 +369,7 @@ msgstr "Tabula"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rindas"
@@ -421,28 +422,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Pārslēgties uz nokopēto tabulu"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Kārtošana"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Augošā secībā"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Dilstošā secībā"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Rādīt"
@@ -463,8 +464,8 @@ msgid "Del"
msgstr "Dzēst"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Vai"
@@ -538,8 +539,8 @@ msgstr[0] "%s rezultāti tabulā %s"
msgstr[1] "%s rezultāti tabulā %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Apskatīt"
@@ -549,14 +550,14 @@ msgstr "Apskatīt"
msgid "Delete the matches for the %s table?"
msgstr "Dati tabulai"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Dzēst"
@@ -633,11 +634,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -647,7 +648,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
#, fuzzy
msgid "Replication"
msgstr "Relācijas"
@@ -662,20 +663,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Ar iezīmēto:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Iezīmēt visu"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -687,27 +688,27 @@ msgstr "Iezīmēt tabulas ar pārtēriņu"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksports"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Izdrukas versija"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Iztukšot"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -733,13 +734,13 @@ msgstr "Analizēt tabulu"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Aizvietot tabulas datus ar datiem no faila"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -760,8 +761,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Datubāze"
@@ -780,7 +781,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Statuss"
@@ -888,49 +889,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Pievienot jaunu lauku"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Rindas atdalītas ar"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -940,17 +941,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Pievienot jaunu lietotāju"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Pievienot jaunu lietotāju"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -974,8 +975,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1015,7 +1016,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1038,7 +1039,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1054,7 +1055,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin ir vairāk draudzīgs freimu atbalstošām pārlūkprogrammām."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda ir aizliegta."
@@ -1064,7 +1065,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta."
msgid "Do you really want to execute \"%s\"?"
msgstr "Vai Jūs tiešām gribat "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
@@ -1168,23 +1169,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Labot"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Servera izvēle"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL vaicājums"
@@ -1196,23 +1197,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Kopā"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr " "
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1234,7 +1235,7 @@ msgstr "Servera izvēle"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesi"
@@ -1254,7 +1255,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Rindas statistika"
@@ -1299,14 +1300,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1364,32 +1365,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Saņemts"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Konekcijas"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "baiti"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1405,11 +1406,11 @@ msgstr "%s tabula(s)"
msgid "Questions"
msgstr "Persiešu"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Datu apmaiņa"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1434,10 +1435,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nav"
@@ -1537,7 +1538,7 @@ msgstr "Galvenās relāciju īpašības"
msgid "Current settings"
msgstr "Galvenās relāciju īpašības"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1621,9 +1622,9 @@ msgstr ""
msgid "Explain output"
msgstr "Izskaidrot SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Laiks"
@@ -1734,7 +1735,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Eksports"
@@ -1880,19 +1881,19 @@ msgstr "Pievienot jaunu lauku"
msgid "Show indexes"
msgstr "Rādīt režģi"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Nepārbaudīt ārējās atslēgas"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Ieslēgts"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1972,7 +1973,7 @@ msgstr "SQL vaicājums"
msgid "No rows selected"
msgstr "Rindas nav iezīmētas"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Labot"
@@ -1981,17 +1982,18 @@ msgstr "Labot"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Saglabāt"
@@ -2020,179 +2022,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL rezultāts"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Satura rādītājs"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorēt"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Pievienot %s lauku(s)"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izvēlieties, kuru lauku rādīt"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Kolonnu nosaukumi"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Parādu rindas"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Mainīt paroli"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Uzģenerēja"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Mainīt paroli"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "P"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2200,30 +2194,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Nav datubāzu"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nav"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Iepriekšējie"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2231,96 +2225,96 @@ msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2328,78 +2322,78 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2407,113 +2401,113 @@ msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nav"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2565,16 +2559,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "sekundē"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minūtē"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "stundā"
@@ -2701,15 +2695,15 @@ msgstr ""
msgid "Databases"
msgstr "Datubāzes"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveris"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2721,20 +2715,20 @@ msgid "Structure"
msgstr "Struktūra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Pievienot"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Darbības"
@@ -2794,12 +2788,12 @@ msgstr "Lietotājs"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binārais log-fails"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Mainīgie"
@@ -2816,8 +2810,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Kļūda"
@@ -2935,35 +2930,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "izmantot šo stilu"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3004,14 +2999,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3269,8 +3264,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3375,7 +3370,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabulas"
@@ -3428,22 +3423,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3455,21 +3450,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu "
"konfigurācijas failā!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
@@ -3504,8 +3499,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL vaicājums"
@@ -3543,7 +3538,7 @@ msgid "Create PHP Code"
msgstr "Izveidot PHP kodu"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Atjaunot"
@@ -3564,43 +3559,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sv"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d.%m.%Y %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Pievienot jaunu lauku"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Sākums"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3608,8 +3603,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Iepriekšējie"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3617,53 +3612,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Nākamie"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Beigas"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "pāriet pie datubāzes "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Drukāt"
@@ -3848,9 +3843,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Atcelt"
@@ -3998,7 +3993,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4060,7 +4055,7 @@ msgstr "Ieteikt tabulas sruktūru"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5897,7 +5892,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6035,27 +6030,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveris neatbild"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6239,8 +6234,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6434,56 +6429,61 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "S"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Rindu skaits vienā lapā"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "P"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontālā"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontālā (pagriezti virsraksti)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikālā"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Izpildīt iegrāmatoto vaicājumu"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Apskatīt"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Kārtot pēc atslēgas"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6502,101 +6502,101 @@ msgstr "Kārtot pēc atslēgas"
msgid "Options"
msgstr "Darbības"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Daļēji teksti"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pilni teksti"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relāciju shēma"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relāciju shēma"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Pārlūkprogrammas transformācija"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Nogalināt"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "vaicājumā"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Parādu rindas"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "kopā"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Vaicājums ilga %01.4f s"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Drukas skats (ar pilniem tekstiem)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Rādīt PDF shēmu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Servera versija"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Links nav atrasts"
@@ -6642,7 +6642,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB statuss"
@@ -6894,8 +6894,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7049,12 +7049,12 @@ msgstr "Pieejamie MIME tipi"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Hosts"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Izveidošanas laiks"
@@ -7267,8 +7267,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
@@ -7435,6 +7435,102 @@ msgstr "MySQL 4.0 savietojams"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binārais"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Sava garuma dēļ, šis lauks var būt nerediģējams "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binārais - netiek labots"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web servera augšupielādes direktorija"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Pievienot"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Ievietot kā jaunu rindu"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Atgriezties atpakaļ iepriekšējā lapā"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Ievietot vēl vienu rindu"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Atgriezties šajā lapā"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL"
+"+bultiņas, lai pārvietotos jebkurā vietā"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vērtība"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7447,38 +7543,38 @@ msgstr "Nav"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Pk"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Nosūtīt"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Pievienot jaunu lauku"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Vai Jūs tiešām gribat "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Netika labots"
@@ -7486,11 +7582,6 @@ msgstr "Netika labots"
msgid "Charset"
msgstr "Kodējums"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binārais"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgāru"
@@ -7821,18 +7912,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Mainīgais"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vērtība"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Servera ID"
@@ -8181,11 +8264,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8547,7 +8625,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Kalendārs"
@@ -8558,11 +8636,11 @@ msgstr "Kalendārs"
msgid "Columns"
msgstr "Kolonnu nosaukumi"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Saglabāt šo SQL vaicājumu"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
@@ -8586,10 +8664,6 @@ msgstr "Rādīt šo vaicājumu šeit atkal"
msgid "View only"
msgstr "Tikai apskatīt"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web servera augšupielādes direktorija"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8802,12 +8876,6 @@ msgstr "Operators"
msgid "Table Search"
msgstr "Meklēt"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Pievienot"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9050,7 +9118,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Lietotājs"
@@ -9270,10 +9338,6 @@ msgstr "Rādīt visu"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9493,18 +9557,18 @@ msgstr "Tabula \"%s\" neeksistē!"
msgid "Select binary log to view"
msgstr "Izvēlieties bināro log-failu apskatei"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Lauki"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Ierobežot parādīto vaicājumu garumu"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Rādīt pilnos vaicājumus"
@@ -9962,13 +10026,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
-"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
-"%spārlādēt privilēģijas%s pirms Jūs turpināt."
+"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
+"spārlādēt privilēģijas%s pirms Jūs turpināt."
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -10089,7 +10153,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10228,12 +10292,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Process %s tika veiksmīgi nogalināts."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10241,149 +10305,149 @@ msgstr ""
"phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika "
"izbeigts."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Vaicājuma tips"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Lietot aizturētos INSERT"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Rādīt tabulas"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Izpildes laika informācija"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Atjaunot"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemainīt paroli"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Rādīt tabulas"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Rādīt tabulas"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relācijas"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vaicājuma tips"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funkcija"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10391,118 +10455,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Parametrs"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Saņemts"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Nosūtīts"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Neveiksmīgi mēģinājumi"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Pārtraukts"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10510,78 +10574,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10589,7 +10653,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10597,42 +10661,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10640,33 +10704,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10675,243 +10739,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Tabulas kodējums:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10919,99 +10983,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11019,18 +11083,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11038,69 +11102,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Vaicājuma tips"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "S"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Pievienot jaunu lauku"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Atjaunot"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Pievienot/Dzēst laukus (kolonnas)"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11109,7 +11173,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11117,18 +11181,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11136,11 +11200,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11148,90 +11212,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Pārsaukt datubāzi par"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Izvēlieties tabulas"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Pievienot jaunu lietotāju"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL vaicājums"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Rindas statistika"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Iezīmēt visu"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vaicājuma tips"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11239,7 +11303,7 @@ msgid_plural "%d seconds"
msgstr[0] "sekundē"
msgstr[1] "sekundē"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11375,7 +11439,7 @@ msgstr "Sesijas vērtība"
msgid "Global value"
msgstr "Globālā vērtība"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11439,41 +11503,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokāls"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentācija"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11663,55 +11727,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Nav datubāzu"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Pārlūkot ārējās vērtības"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Vai Jūs tiešām gribat "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Pārbaudīt SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL rezultāts"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Uzģenerēja"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nosaukums"
@@ -11726,60 +11781,6 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
msgid "The columns have been moved successfully."
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Sava garuma dēļ, šis lauks var būt nerediģējams "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binārais - netiek labots"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Ievietot kā jaunu rindu"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Atgriezties atpakaļ iepriekšējā lapā"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Ievietot vēl vienu rindu"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Atgriezties šajā lapā"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL"
-"+bultiņas, lai pārvietotos jebkurā vietā"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12424,33 +12425,39 @@ msgstr ""
msgid "Create version"
msgstr "Servera versija"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL vaicājums"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Atcelt"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12814,8 +12821,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12943,8 +12950,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13712,9 +13719,6 @@ msgstr ""
#~ msgid "Export of event \"%s\""
#~ msgstr "Rindas nav iezīmētas"
-#~ msgid "rows"
-#~ msgstr "Apskatīt"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rindas sākot no"
diff --git a/po/mk.po b/po/mk.po
index 3168301c0c..3f0950becd 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: macedonian_cyrillic \n"
-"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mk\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "прикажи ги сите"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "прикажи ги сите"
msgid "Page number:"
msgstr "Број на страници:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"затворили матични прозор, или ваш претраживач онемогућава ажурирање међу "
"прозорима због сигурносних подешавања"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Пребарување"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Пребарување"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Име на клуч"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Опис"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Користи ја оваа вредност"
@@ -120,12 +120,12 @@ msgstr "Коментар на табелата"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -136,6 +136,7 @@ msgstr "Имиња на колони"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Имиња на колони"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -153,12 +154,12 @@ msgstr "Тип"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Коментари"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Не"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -365,7 +366,7 @@ msgstr "Табела"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Записи"
@@ -418,28 +419,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Премини на копираната табела"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Подредуваање"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Растечки редослед"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Опаѓачки редослед"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Прикажи"
@@ -460,8 +461,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "или"
@@ -535,8 +536,8 @@ msgstr[0] "%s погодоци во табелата %s"
msgstr[1] "%s погодоци во табелата %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Преглед"
@@ -546,14 +547,14 @@ msgstr "Преглед"
msgid "Delete the matches for the %s table?"
msgstr "Приказ на податоци од табелата"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "избриши"
@@ -630,11 +631,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -644,7 +645,7 @@ msgstr "Поглед"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
#, fuzzy
msgid "Replication"
msgstr "Релации"
@@ -659,20 +660,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е основно складиште на овој MySQL сервер."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Обележаното:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "обележи ги сите"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -684,27 +685,27 @@ msgstr "табели кои имаат пречекорувања"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Извоз"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Преглед за печатење"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Испразни"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -730,11 +731,11 @@ msgstr "Анализа на табелата"
msgid "Add prefix to table"
msgstr "Додај префикс кон табелата"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Замени го префиксот на табелата"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Копирај табела со префикс"
@@ -753,8 +754,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "База на податоци"
@@ -772,7 +773,7 @@ msgstr "Ажурирано"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -881,49 +882,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Додади ново поле"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Линиите се завршуваат со"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -933,17 +934,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Додади нов корисник"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Додади нов корисник"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -967,8 +968,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1008,7 +1009,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1031,7 +1032,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1046,7 +1047,7 @@ msgstr "Назад"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" командата е оневозможена."
@@ -1056,7 +1057,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена."
msgid "Do you really want to execute \"%s\"?"
msgstr "Дали навистина сакате да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
@@ -1160,23 +1161,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Избор на сервер"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL упит"
@@ -1188,23 +1189,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Вкупно"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1226,7 +1227,7 @@ msgstr "Избор на сервер"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
#, fuzzy
msgid "Processes"
msgstr "Листа на процеси"
@@ -1247,7 +1248,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Статистики за записите"
@@ -1292,14 +1293,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1361,32 +1362,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Примено"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Конекции"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "бајти"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1402,11 +1403,11 @@ msgstr "%s табела"
msgid "Questions"
msgstr "Персиски"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Сообраќај"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1431,10 +1432,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "нема"
@@ -1534,7 +1535,7 @@ msgstr "Општи особини на релациите"
msgid "Current settings"
msgstr "Општи особини на релациите"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1620,9 +1621,9 @@ msgstr ""
msgid "Explain output"
msgstr "Објасни SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Време"
@@ -1733,7 +1734,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Извоз"
@@ -1878,19 +1879,19 @@ msgstr "Додади ново поле"
msgid "Show indexes"
msgstr "Прикажи мрежа"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Исклучи проверка на надворешни клучеви"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Овозможено"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1970,7 +1971,7 @@ msgstr "SQL упит"
msgid "No rows selected"
msgstr "Нема селектирани записи"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Промени"
@@ -1979,17 +1980,18 @@ msgstr "Промени"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Сочувај"
@@ -2018,178 +2020,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Додади/избриши колона"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "SQL резултат"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Големина на покажувачите на податоци"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Игнорирај"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Копирај"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Додади %s полиња"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Избери полиња за прикажување"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Имиња на колони"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Приказ на записи од "
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Генерирање на лозинка"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерирај"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промена на лозинка"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2197,30 +2191,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Базата на податоци не постои"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "нема"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Претходна"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2228,96 +2222,96 @@ msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "мај"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2325,78 +2319,78 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "дек"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2404,113 +2398,113 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "нема"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2562,16 +2556,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "во секунда"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "во минута"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "на час"
@@ -2700,15 +2694,15 @@ msgstr ""
msgid "Databases"
msgstr "База на податоци"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2720,20 +2714,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Нов запис"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2793,12 +2787,12 @@ msgstr "Корисник"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Бинарен дневник"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Променливи"
@@ -2815,8 +2809,9 @@ msgid "Engines"
msgstr "Складишта"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
@@ -2934,35 +2929,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "превземи"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3003,14 +2998,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3268,8 +3263,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3375,7 +3370,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Табели"
@@ -3428,22 +3423,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3455,21 +3450,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во "
"конфигурациската податотека!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3505,8 +3500,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL упит"
@@ -3544,7 +3539,7 @@ msgid "Create PHP Code"
msgstr "Направи PHP код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Освежи"
@@ -3567,43 +3562,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складишта"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. во %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s денови, %s часови, %s минути и %s секунди"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутини"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Почеток"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3611,8 +3606,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3620,53 +3615,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следен"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Премин на базата "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "директориум за праќање на веб серверот "
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Директориумот кој го избравте за праќање не е достапен"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Печати"
@@ -3851,9 +3846,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Поништи"
@@ -4002,7 +3997,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4064,7 +4059,7 @@ msgstr "Предложи структура на табелата"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5910,7 +5905,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6056,21 +6051,21 @@ msgid ""
"configured)."
msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Серверот не одговара"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6256,8 +6251,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6451,57 +6446,62 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Основен директориум на податоците"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Додади/избриши колона"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Саб"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Број на записи на страница"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Пон"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "хоризонтален"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "хоризонтален (ротирани заглавија)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикален"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Изврши запамтен упит"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Преглед"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Подредување по клуч"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6520,101 +6520,101 @@ msgstr "Подредување по клуч"
msgid "Options"
msgstr "Операции"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Дел на текстот"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Полн текст"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Релациона шема"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Релациона шема"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Транформации на веб прелистувачот"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Записот е избришан"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Прекини"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "во упитот"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Приказ на записи од"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "вкупно"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "време на извршување на упитот %01.4f секунди"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Преглед за печатење (целосен текст)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF шема"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Верзија на серверот"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Врската не е пронајдена"
@@ -6664,7 +6664,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Бафер"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -6932,8 +6932,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7087,12 +7087,12 @@ msgstr "Достапни MIME-типови"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Време на креирање"
@@ -7306,8 +7306,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
@@ -7474,6 +7474,104 @@ msgstr "MySQL 4.0 компатибилно"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функција"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Бинарен"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+"Поради големина на полето можеби нема да може да ја менувате неговата "
+"содржина"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Бинарен - не менувај"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "директориум за праќање на веб серверот"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Нов запис"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Внеси како нов запис"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Назад на претходната страница"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Додади уште еден нов запис"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Врати се на оваа страница"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Ажурирање на следниот запис"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за "
+"слободно движење"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Вредност"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7486,38 +7584,38 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Пет"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Испрати"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Додади ново поле"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Дали навистина сакате да "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Нема измени"
@@ -7525,11 +7623,6 @@ msgstr "Нема измени"
msgid "Charset"
msgstr "Кодна страна"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Бинарен"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Бугарски"
@@ -7861,18 +7954,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Променлива"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Вредност"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID на серверот"
@@ -8225,11 +8310,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Рутини"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функција"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8591,7 +8671,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(и) на базата %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Календар"
@@ -8602,11 +8682,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имиња на колони"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Запамти SQL упит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
@@ -8630,10 +8710,6 @@ msgstr "Прикажи го повторно овој упит"
msgid "View only"
msgstr "Види само"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "директориум за праќање на веб серверот"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8844,12 +8920,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Пребарување"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Нов запис"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9110,7 +9180,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Корисник"
@@ -9336,10 +9406,6 @@ msgstr "прикажи ги сите"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9559,18 +9625,18 @@ msgstr "Табелата \"%s\" не постои!"
msgid "Select binary log to view"
msgstr "Изберете бинарен дневник за преглед"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Полиња"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Прикажи скратени упити"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Прикажи комплетни упити"
@@ -9888,7 +9954,8 @@ msgstr "Привилегии поврзани со табелата"
#: server_privileges.php:634 server_privileges.php:786
#: server_privileges.php:1855
msgid "Note: MySQL privilege names are expressed in English"
-msgstr "Напомена: MySQL имињата на привилегите мора да бидат со латинични букви"
+msgstr ""
+"Напомена: MySQL имињата на привилегите мора да бидат со латинични букви"
#: server_privileges.php:711
msgid "Administration"
@@ -10032,8 +10099,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
@@ -10159,7 +10226,7 @@ msgstr "Привилегиите се успешно вчитани."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10298,161 +10365,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесот %s е успешно прекинат."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Вид на упит"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Користи одложен внес"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Прикажи табели"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Информации за работата"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Освежи"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да ја менуваш лозинката"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Прикажи табели"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Прикажи табели"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релации"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Вид на упит"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Функција"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10460,119 +10527,119 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Име"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Овој MySQL сервер работи %s. Стартуван е на %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Примено"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Пратено"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Неуспешни обиди"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Прекинато"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Наредба"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
"Го ограничува бројот на нови конекции кои корисникот може да ги отвори за "
"еден час."
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10580,78 +10647,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10659,7 +10726,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10667,42 +10734,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10710,33 +10777,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10745,243 +10812,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Кодна страна на податотеката:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10989,99 +11056,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11089,18 +11156,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11108,69 +11175,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Вид на упит"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Саб"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Додади ново поле"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Освежи"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Додади/избриши колона"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11179,7 +11246,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11187,18 +11254,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11206,11 +11273,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11218,90 +11285,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Избриши ја базата на податоци."
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Избери табели"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Додади нов корисник"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL упит"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Статистики за записите"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "избери се"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Вид на упит"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11309,7 +11376,7 @@ msgid_plural "%d seconds"
msgstr[0] "во секунда"
msgstr[1] "во секунда"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11445,7 +11512,7 @@ msgstr "Вредност на сесијата"
msgid "Global value"
msgstr "Глобална вредност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11509,41 +11576,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Локален"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin документација"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11733,55 +11800,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Базата на податоци не постои"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Прегледни ги надворешните вредности"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Дали навистина сакате да "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL резултат"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Генерирал"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Назив"
@@ -11796,62 +11854,6 @@ msgstr "Изабраните корисници успешно се избриш
msgid "The columns have been moved successfully."
msgstr "Изабраните корисници успешно се избришани."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-"Поради големина на полето можеби нема да може да ја менувате неговата "
-"содржина"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Бинарен - не менувај"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Внеси како нов запис"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Назад на претходната страница"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Додади уште еден нов запис"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Врати се на оваа страница"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Ажурирање на следниот запис"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за "
-"слободно движење"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12497,33 +12499,39 @@ msgstr ""
msgid "Create version"
msgstr "Верзија на серверот"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Направи \"упит по пример\" (џокер знак: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL упит"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Поништи"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12887,8 +12895,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13017,8 +13025,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13818,9 +13826,6 @@ msgstr ""
#~ msgid "Export of event \"%s\""
#~ msgstr "Нема селектирани записи"
-#~ msgid "rows"
-#~ msgstr "Преглед"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "записи почнувајќи од записот"
diff --git a/po/ml.po b/po/ml.po
index 002cf04887..86e067cd97 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,24 +5,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: \n"
"Language-Team: Malayalam \n"
-"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ml\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "എല്ലാം കാണിക്കൂ"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -30,28 +30,29 @@ msgstr "എല്ലാം കാണിക്കൂ"
msgid "Page number:"
msgstr "താൾ:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "തിരയൂ"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "തിരയൂ"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "പോകൂ"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "കീനാമം"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "വിവരണം"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "ഈ വില ഉപയോഗിക്കൂ"
@@ -119,12 +119,12 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "നിര"
@@ -133,6 +133,7 @@ msgstr "നിര"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "നിര"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "തരം"
@@ -150,12 +151,12 @@ msgstr "തരം"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "ശൂന്യം"
@@ -194,13 +195,13 @@ msgstr "അഭിപ്രായങ്ങൾ"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "ഇല്ല"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +355,7 @@ msgstr "പട്ടിക"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "വരികൾ"
@@ -405,28 +406,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "തരംതിരിക്കുക"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ആരോഹണം"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "അവരോഹണം"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "പ്രദർശിപ്പിക്കുക"
@@ -447,8 +448,8 @@ msgid "Del"
msgstr "മായ്ക്കുക"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "അല്ലെനങ്കിൽ"
@@ -517,8 +518,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -527,14 +528,14 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr ""
@@ -602,11 +603,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -616,7 +617,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -630,20 +631,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr ""
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -655,27 +656,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -701,11 +702,11 @@ msgstr ""
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -724,8 +725,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -743,7 +744,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -841,45 +842,45 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr ""
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -887,15 +888,15 @@ msgstr ""
msgid "Add a linestring"
msgstr ""
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -916,8 +917,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -957,7 +958,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,7 +981,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -995,7 +996,7 @@ msgstr ""
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1004,7 +1005,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1090,21 +1091,21 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1115,23 +1116,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ""
@@ -1151,7 +1152,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1169,7 +1170,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1210,14 +1211,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr ""
@@ -1269,32 +1270,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr ""
@@ -1310,11 +1311,11 @@ msgstr "%s പട്ടിക"
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr ""
@@ -1335,10 +1336,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr ""
@@ -1431,7 +1432,7 @@ msgstr ""
msgid "Current settings"
msgstr ""
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr ""
@@ -1507,9 +1508,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1602,7 +1603,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr ""
@@ -1722,15 +1723,15 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr ""
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr ""
@@ -1797,7 +1798,7 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
@@ -1806,17 +1807,18 @@ msgstr ""
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -1841,158 +1843,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr ""
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr ""
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2000,266 +1994,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr ""
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr ""
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr ""
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr ""
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr ""
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr ""
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr ""
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr ""
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr ""
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr ""
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr ""
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr ""
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr ""
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr ""
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr ""
@@ -2309,16 +2303,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2443,15 +2437,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2463,20 +2457,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2534,12 +2528,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2556,8 +2550,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
@@ -2670,35 +2665,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2739,14 +2734,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -2996,8 +2991,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3095,7 +3090,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3146,42 +3141,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3216,8 +3211,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr ""
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3255,7 +3250,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3276,95 +3271,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "അച്ചടിക്കുക"
@@ -3536,9 +3531,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3682,7 +3677,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3742,7 +3737,7 @@ msgstr "വിവരശേഖര അഭിപ്രായം: "
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5478,7 +5473,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5616,25 +5611,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5792,8 +5787,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5969,48 +5964,53 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Rows"
+msgid "rows"
+msgstr "വരികൾ"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6028,89 +6028,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6154,7 +6154,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6405,8 +6405,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6527,12 +6527,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6730,8 +6730,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6894,6 +6894,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6904,32 +6994,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6937,11 +7027,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7266,18 +7351,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7595,11 +7672,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7919,7 +7991,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7927,11 +7999,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7955,10 +8027,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8129,10 +8197,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8304,7 +8368,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8497,10 +8561,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8691,17 +8751,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9127,8 +9187,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9243,7 +9303,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9376,146 +9436,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9523,115 +9583,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9639,78 +9699,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9718,7 +9778,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9726,42 +9786,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
msgid ""
"The number of pages busy because they have been allocated for administrative "
"overhead such as row locks or the adaptive hash index. This value can also "
@@ -9769,33 +9829,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
msgid ""
"Normally, writes to the InnoDB buffer pool happen in the background. "
"However, if it's necessary to read or create a page and no clean pages are "
@@ -9804,242 +9864,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10047,99 +10107,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10147,18 +10207,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10166,61 +10226,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10229,7 +10289,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10237,18 +10297,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10256,11 +10316,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10268,86 +10328,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10479,7 +10539,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10541,39 +10601,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10759,51 +10819,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10818,56 +10869,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11456,30 +11457,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -11817,8 +11822,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -11936,8 +11941,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/mn.po b/po/mn.po
index 55b26b1b6b..6f8c1fa6a5 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,23 +3,23 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
-"Language: mn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: mn\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Бүгдийг харах"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -27,7 +27,7 @@ msgstr "Бүгдийг харах"
msgid "Page number:"
msgstr "Хуудасны дугаар:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -36,21 +36,22 @@ msgstr ""
"Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл "
"таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Хайх"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -66,28 +67,27 @@ msgstr "Хайх"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Яв"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Түлхүүрийн нэр"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Тайлбар"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Уг утгыг хэрэглэх"
@@ -118,12 +118,12 @@ msgstr "Хүснэгтийн тайлбар"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -134,6 +134,7 @@ msgstr "Баганын нэрс"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -141,9 +142,9 @@ msgstr "Баганын нэрс"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Төрөл"
@@ -151,12 +152,12 @@ msgstr "Төрөл"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Хоосон"
@@ -195,13 +196,13 @@ msgstr "Тайлбар"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -212,19 +213,19 @@ msgstr "Үгүй"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -366,7 +367,7 @@ msgstr "Хүснэгт "
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Мөрүүд"
@@ -419,28 +420,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Хуулагдсан хүснэгт рүү шилжих"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Эрэмбэлэх"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Өсөхөөр"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Буурахаар"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Харах"
@@ -461,8 +462,8 @@ msgid "Del"
msgstr "Устгах"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Эсвэл"
@@ -536,8 +537,8 @@ msgstr[0] "%s олдоц(ууд) хүснэгт %s-д"
msgstr[1] "%s олдоц(ууд) хүснэгт %s-д"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Хөтлөх"
@@ -547,14 +548,14 @@ msgstr "Хөтлөх"
msgid "Delete the matches for the %s table?"
msgstr "Хүснэгтийн өгөгдлийг устгах"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Устгах"
@@ -631,11 +632,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -645,7 +646,7 @@ msgstr "Харц"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Олшруулалт"
@@ -659,20 +660,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Сонгогдсонтой:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Бүгдийг чагтлах"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -684,27 +685,27 @@ msgstr "Дээдхийг шалгах"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Гаргах"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Хэвлэхээр харах"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Хоосон"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -730,13 +731,13 @@ msgstr "Хүснэгтийг задлах"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Хүснэгтийн өгөгдлийг орлуулах файл"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -757,8 +758,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "ӨС"
@@ -776,7 +777,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -880,49 +881,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Шинэ талбар нэмэх"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Шугамыг төгсгөгч"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -932,15 +933,15 @@ msgstr ""
msgid "Add a linestring"
msgstr "Тогтмол нэмэх"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -965,8 +966,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1006,7 +1007,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
@@ -1029,7 +1030,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1044,7 +1045,7 @@ msgstr "Өмнөх"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"ӨС устгах\" нь хаалттай."
@@ -1054,7 +1055,7 @@ msgstr "\"ӨС устгах\" нь хаалттай."
msgid "Do you really want to execute \"%s\"?"
msgstr "Та үнэхээр "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
@@ -1159,23 +1160,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Засах"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Сервэр сонго"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "Showing SQL query"
msgid "Live query chart"
@@ -1188,23 +1189,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Нийт"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1226,7 +1227,7 @@ msgstr "Сервэр сонго"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процессууд"
@@ -1246,7 +1247,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Databases statistics"
msgid "Query statistics"
@@ -1297,14 +1298,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "кБ"
@@ -1366,32 +1367,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Ирсэн"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Холболт"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1408,11 +1409,11 @@ msgstr "%s хүснэгт(үүд)"
msgid "Questions"
msgstr "Хамаарал"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Гуйвуулга"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1437,10 +1438,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Байхгүй"
@@ -1540,7 +1541,7 @@ msgstr "Ерөнхий хамаатай онцлог"
msgid "Current settings"
msgstr "Ерөнхий хамаатай онцлог"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1628,9 +1629,9 @@ msgstr ""
msgid "Explain output"
msgstr "SQL тайлбар"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Цаг"
@@ -1742,7 +1743,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Оруулах"
@@ -1890,19 +1891,19 @@ msgstr "Шинэ талбар нэмэх"
msgid "Show indexes"
msgstr "Тор харуулах"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Гадаад түлхүүр шалгалтыг хаах"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Нээлттэй"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1987,7 +1988,7 @@ msgstr "SQL асуудал харуулах"
msgid "No rows selected"
msgstr "Сонгогдсон мөргүй"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Солих"
@@ -1996,17 +1997,18 @@ msgstr "Солих"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d нь мөрийн буруу дугаар байна."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Хадгалах"
@@ -2037,178 +2039,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Багана нэмэх/устгах"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Өгөгдөл заагчийн хэмжээ"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Үл тоох"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Хуулах"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s талбар(ууд) нэмэх"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Хамаарагдсан түлхүүр сонгох"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Гадаад түлхүүр сонгох"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Харуулах талбарыг соль"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Баганын нэрс"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Мөрүүдийг харуулж байна "
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Нууц үг бий болгох"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Бий болгох"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Нууц үг солих"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Да"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2216,31 +2210,31 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "No databases"
msgid "up to date"
msgstr "ӨС байхгүй"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Байхгүй"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Өмнөх"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2248,96 +2242,96 @@ msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Хоёртын "
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "5-р"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2345,78 +2339,78 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "12р"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2424,113 +2418,113 @@ msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Байхгүй"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2583,16 +2577,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "секундэд"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "минутад"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "цагт"
@@ -2717,15 +2711,15 @@ msgstr ""
msgid "Databases"
msgstr "Өгөгдлийн сангууд"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервэр"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2737,20 +2731,20 @@ msgid "Structure"
msgstr "Бүтэц"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Оруулах"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Үйлдлүүд"
@@ -2810,12 +2804,12 @@ msgstr "Хэрэглэгч"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Хоёртын log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Утгууд"
@@ -2832,8 +2826,9 @@ msgid "Engines"
msgstr "Хөдөлгүүрүүд"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Алдаа"
@@ -2957,35 +2952,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Боломжит харагдац байхгүй байна."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "авах"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Анхдагч сэдэв %s байхгүй байна!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Сэдэв %s олдсонгүй!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3026,14 +3021,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3293,11 +3288,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
-"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
+"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
+"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3398,7 +3393,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Хүснэгт"
@@ -3453,25 +3448,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3482,22 +3477,22 @@ msgid ""
msgstr ""
"$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Сервэрийн буруу индекс нь: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
@@ -3532,8 +3527,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-асуулт"
@@ -3571,7 +3566,7 @@ msgid "Create PHP Code"
msgstr "PHP-код үүсгэх"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Да.дуудах"
@@ -3594,43 +3589,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Хөдөлгүүрүүд"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ня"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y оны %B сарын %d., %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s өдөр, %s цаг, %s минут, %s секунд"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "Шинэ талбар нэмэх"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Эхлэл"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3638,8 +3633,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Өмнөх"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3647,53 +3642,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Цааш"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Төгс"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" өгөгдлийн сан руу үсрэх."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "web-сервэр түлхэх хавтас"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Хэвлэх"
@@ -3877,9 +3872,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Да.эхлэх"
@@ -4029,7 +4024,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4091,7 +4086,7 @@ msgstr "Хүснэгтийн бүтцийг таниулах"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5917,7 +5912,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6057,7 +6052,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6065,21 +6060,21 @@ msgid ""
"configured)."
msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервэрээс хариу алга"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6266,12 +6261,12 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
-"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
-"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
+"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
+"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6480,54 +6475,59 @@ msgstr ""
msgid "Language"
msgstr "Хэл"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Багана нэмэх/устгах"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Талбаруудын тоо"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Да"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "хөндлөн"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "босоо"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Хөтлөх"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Түлхүүрээр эрэмбэлэх"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6545,101 +6545,101 @@ msgstr "Түлхүүрээр эрэмбэлэх"
msgid "Options"
msgstr "Сонголтууд"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Бичвэрийн зарим хэсэг"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Бүтэн бичвэр"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Хамааралтай схем"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Хөтчийн өөрчлөл"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Алах"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "асуултад"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Мөрүүдийг харуулж байна "
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "Нийт"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Асуулт нь %01.4f сек авлаа"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схем харуулах"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "Үүсгэх"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Холбоос олдсонгүй"
@@ -6685,7 +6685,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буффер Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB байдал"
@@ -6949,8 +6949,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7103,12 +7103,12 @@ msgstr "Идэвхтэй MIME-төрлүүд"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Үүссэн цаг"
@@ -7321,8 +7321,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
@@ -7493,6 +7493,102 @@ msgstr "SQL нийцтэй горим"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функц"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Нуух"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Хоёртын "
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Яагаад гэвэл урт нь их, энэ талбар засагдахгүй "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Хоёртын өгөгдөл - засагдахгүй "
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web-сервэр түлхэх хавтас"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Оруулах"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ба тэгээд"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Шинэ мөр оруулаад"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Буцах"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Өөр шинэ мөр оруулах"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Энэ хуудас руу буцах"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Дараагийн мөрийг засах"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар "
+"зөөгдөнө"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Утга"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL асуудал харуулах"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7505,38 +7601,38 @@ msgstr "Байхгүй"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Ба"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Илгээ"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Шинэ талбар нэмэх"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Та үнэхээр "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Солигдохгүй"
@@ -7544,11 +7640,6 @@ msgstr "Солигдохгүй"
msgid "Charset"
msgstr "Кодлол"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Хоёртын "
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Болгар"
@@ -7878,18 +7969,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Хувьсагч"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Утга"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID"
@@ -8242,11 +8325,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функц"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8614,7 +8692,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8624,11 +8702,11 @@ msgstr ""
msgid "Columns"
msgstr "Баганын нэрс"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
@@ -8652,10 +8730,6 @@ msgstr "Уг асуултыг энд дахин харуулах "
msgid "View only"
msgstr "Зөвхөн харах"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web-сервэр түлхэх хавтас"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8855,12 +8929,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Хайх"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Оруулах"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9107,7 +9175,7 @@ msgstr "Протоколын хувилбар"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Хэрэглэгч"
@@ -9332,10 +9400,6 @@ msgstr "Нуух/Харуулах бүгдийг"
msgid "Hide/Show Tables with no relation"
msgstr "Нуух/Харуулах Холбоо байхгүй Хүснэгтүүд"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Нуух"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Хүснэгтийн тоо"
@@ -9556,17 +9620,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!"
msgid "Select binary log to view"
msgstr "Харах хоёртын log сонго"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файлууд"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Бүтэн асуулт харуулах"
@@ -10014,8 +10078,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@@ -10139,7 +10203,7 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10276,160 +10340,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s нь устгагдав."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Баригч"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Асуудлын нөөцлөл"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Thread-үүд"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Завсрын өгөгдөл"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Давталттай оруулалт"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Түлхүүрийн нөөцлөл"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Нэгдэл"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Эрэмбэлж байна"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Хэлэлцээр зохицуулагч"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Дагавар хостыг харуулах"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Дагавар төлвийг харуулах"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Асуудлын утгыг цэвэрлэх"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Ажиллах үеийн мэдээлэл"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Да.дуудах"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Нууц үгийг солихгүй"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Нээлттэй хүснэгтүүдийг харуулах"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Хамаарал"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Асуултын төрөл"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Мэдээлэл"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10437,102 +10501,102 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Баримтжуулал"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Ирсэн"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Илгээгдэв"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "ХИ. давхацсан холболтууд"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Бүтэлгүйтсэн оролдлого"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Таслагдсан"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Команд"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, fuzzy
#| msgid "its the number of simultaneous connections the user may have."
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10542,16 +10606,16 @@ msgstr ""
"хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд "
"хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10563,11 +10627,11 @@ msgstr ""
"оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг "
"нэмэгдүүлэхийг хүсэж байж болно."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10575,7 +10639,7 @@ msgstr ""
"Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн "
"хүснэгтүүдийн тоо."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10583,7 +10647,7 @@ msgstr ""
"Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-"
"аар бичигдсэн мөрүүдийн тоо."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10591,23 +10655,23 @@ msgstr ""
"Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай "
"хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "дотоод COMMIT хэлэлцээриийн тоо."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Хүснэгтээс мөр устгасан тоо."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10617,7 +10681,7 @@ msgstr ""
"NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. "
"Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10627,7 +10691,7 @@ msgstr ""
"бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 "
"FROM foo, энд col1 индекслэгдсэн байна."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10635,7 +10699,7 @@ msgstr ""
"Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны "
"асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10645,7 +10709,7 @@ msgstr ""
"та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд "
"нэмэгдэж байдаг."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10653,7 +10717,7 @@ msgstr ""
"Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь "
"голчлон ORDER BY ... DESC-д хэрэглэгддэг."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10665,7 +10729,7 @@ msgstr ""
"Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд "
"түлхүүрийг зөв ашиглаагүй байх."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10677,35 +10741,35 @@ msgstr ""
"ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь "
"асуудалд зөв бичигдээгүйг илтгэнэ."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Одоогоор бохир байгаа хуудсын тоо."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Чөлөөтэй байгаа хуудсуудын тоо."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10715,7 +10779,7 @@ msgstr ""
"одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас "
"хасагдсан."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10727,11 +10791,11 @@ msgstr ""
"InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт "
"хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10739,7 +10803,7 @@ msgstr ""
"InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй "
"эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10747,11 +10811,11 @@ msgstr ""
"InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн "
"шалгалтыг InnoDB хийснийг илэрхийлнэ."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10759,7 +10823,7 @@ msgstr ""
"InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик "
"уншилтын тоо."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10768,244 +10832,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Уншихаар хүлээгдэж буй тухайн тоо."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Бичихээр хүлээгдэж буй тухайн тоо."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Өгөгдөл уншилтийн нийт тоо."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Өгөгдөл бичилтийн нийт тоо."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Тэмдэглэл бичих хүсэлтийн тоо."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Тэмдэглэлийн файл руу бичих хүлээлт."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Оруулсан файлын тогтнол"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11013,99 +11077,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Эрэмбэлэгдсэн мөрийн тоо."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11113,18 +11177,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11132,69 +11196,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Түлхүүрийн нөөцлөл"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Шинэ талбар нэмэх"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Да.дуудах"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Багана нэмэх/устгах"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "Мэдээлэл"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11203,7 +11267,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11211,18 +11275,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11230,11 +11294,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11242,93 +11306,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Хүснэгтүүд сонго"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Хүснэгтийн буруу нэр"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "Мөрийн статистик"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Бүгдийг сонгох"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Асуултын төрөл"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11336,7 +11400,7 @@ msgid_plural "%d seconds"
msgstr[0] "секундэд"
msgstr[1] "секундэд"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11473,7 +11537,7 @@ msgstr "Сессон утга"
msgid "Global value"
msgstr "Глобал утга"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11537,39 +11601,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11757,55 +11821,46 @@ msgstr ""
msgid "Wrong data"
msgstr "ӨС байхгүй"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Та үнэхээр "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP кодоор харуулах"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL асуудал харуулах"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL-ийг батлах"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-үр дүн"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Үүсгэгч"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Хаяг"
@@ -11820,60 +11875,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "Сонгогдсон хэрэглэгч устгагдлаа."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Яагаад гэвэл урт нь их, энэ талбар засагдахгүй "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Хоёртын өгөгдөл - засагдахгүй "
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Шинэ мөр оруулаад"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ба тэгээд"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Буцах"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Өөр шинэ мөр оруулах"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Энэ хуудас руу буцах"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Дараагийн мөрийг засах"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар "
-"зөөгдөнө"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12516,34 +12517,40 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "in query"
msgid "Additional search criteria"
msgstr "асуултад"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Да.эхлэх"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12916,8 +12923,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13049,8 +13056,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13877,9 +13884,6 @@ msgstr "ХИ. давхацсан холболтууд"
#~ msgid "No trigger with name %s found"
#~ msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
-#~ msgid "rows"
-#~ msgstr "Хөтлөх"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "мөрийн эхлэх буй дугаар"
@@ -13970,8 +13974,8 @@ msgstr "ХИ. давхацсан холболтууд"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
-#~ "%s дарж шалгах."
+#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
+#~ "s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"
diff --git a/po/ms.po b/po/ms.po
index 374e350837..3b3186c916 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:17+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: malay \n"
-"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Papar semua"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,28 +28,29 @@ msgstr "Papar semua"
msgid "Page number:"
msgstr "Muka Surat:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -65,28 +66,27 @@ msgstr "Cari"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Pergi"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nama Kekunci"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Keterangan"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Guna nilai ini"
@@ -120,12 +120,12 @@ msgstr "Komen jadual"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -136,6 +136,7 @@ msgstr "Nama Kolum"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Nama Kolum"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Jenis"
@@ -153,12 +154,12 @@ msgstr "Jenis"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Komen"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Tidak"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -367,7 +368,7 @@ msgstr "Jadual"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Baris"
@@ -420,28 +421,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Isih"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Menaik"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Menurun"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Papar"
@@ -462,8 +463,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Atau"
@@ -537,8 +538,8 @@ msgstr[0] "%s padanan di dalam jadual %s"
msgstr[1] "%s padanan di dalam jadual %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Lungsur"
@@ -548,14 +549,14 @@ msgstr "Lungsur"
msgid "Delete the matches for the %s table?"
msgstr "Melonggok data bagi jadual"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Padam"
@@ -632,11 +633,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -646,7 +647,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -660,20 +661,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Dengan pilihan:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Tanda Semua"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -685,27 +686,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Paparan Cetak"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Kosong"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -731,13 +732,13 @@ msgstr "Analyze table"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Ganti data jadual dengan fail"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -758,8 +759,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Pangkalan Data"
@@ -778,7 +779,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -885,48 +886,48 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
msgid "Add a point"
msgstr "Tambah medan baru"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Baris ditamatkan oleh"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -936,17 +937,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Tambah Pengguna Baru"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Tambah Pengguna Baru"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "Tambah medan baru"
@@ -969,8 +970,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1010,7 +1011,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1033,7 +1034,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1050,7 +1051,7 @@ msgstr ""
"phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti "
"mozilla."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
@@ -1060,7 +1061,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
msgid "Do you really want to execute \"%s\"?"
msgstr "Adakah anda ingin "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1155,23 +1156,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ubah"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Pilihan Pelayan"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "kueri-SQL"
@@ -1183,23 +1184,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jumlah"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1221,7 +1222,7 @@ msgstr "Pilihan Pelayan"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Proses-proses"
@@ -1241,7 +1242,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statistik Baris"
@@ -1286,14 +1287,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1351,32 +1352,32 @@ msgstr ""
msgid "Bytes received"
msgstr "DiTerima"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Hubungan"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1392,11 +1393,11 @@ msgstr "%s jadual"
msgid "Questions"
msgstr "Operasi"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Kesibukan"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1420,10 +1421,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Tiada"
@@ -1523,7 +1524,7 @@ msgstr "Ciri-ciri hubungan am"
msgid "Current settings"
msgstr "Ciri-ciri hubungan am"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
msgid "Chart Title"
msgstr "Tiada Jadual"
@@ -1606,9 +1607,9 @@ msgstr ""
msgid "Explain output"
msgstr "Terangkan Kod SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Masa"
@@ -1715,7 +1716,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Eksport"
@@ -1856,17 +1857,17 @@ msgstr "Indeks"
msgid "Show indexes"
msgstr "Papar grid"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Membenarkan"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1946,7 +1947,7 @@ msgstr "kueri-SQL"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ubah"
@@ -1955,17 +1956,18 @@ msgstr "Ubah"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Simpan"
@@ -1994,178 +1996,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Tambah/Padam Kolum Medan"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "Hasil SQL"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Kandungan"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Abai"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "Tambah medan baru"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Pilih Medan untuk dipapar"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Nama Kolum"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Papar baris"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Dijana oleh"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ubah Katalaluan"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Isn"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2173,30 +2167,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Tiada pangkalan data"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Tiada"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Terdahulu"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2204,96 +2198,96 @@ msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mei"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2301,78 +2295,78 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2380,113 +2374,113 @@ msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Tiada"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2538,16 +2532,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per jam"
@@ -2673,15 +2667,15 @@ msgstr ""
msgid "Databases"
msgstr "pangkalan data"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Pelayan"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2693,20 +2687,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Selit"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operasi"
@@ -2766,13 +2760,13 @@ msgstr "Pengguna"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binari"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Pemboleh-pembolehubah"
@@ -2789,8 +2783,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Ralat"
@@ -2904,35 +2899,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2973,14 +2968,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3237,8 +3232,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3339,7 +3334,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Jadual-jadual"
@@ -3392,22 +3387,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3418,21 +3413,21 @@ msgid ""
msgstr ""
"$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi."
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3467,8 +3462,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "kueri-SQL"
@@ -3506,7 +3501,7 @@ msgid "Create PHP Code"
msgstr "Cipta Kod PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3527,41 +3522,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Aha"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Mula"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3569,8 +3564,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Terdahulu"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3578,53 +3573,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Berikut"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Tamat"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Cetak"
@@ -3809,9 +3804,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Ulangtetap"
@@ -3957,7 +3952,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4018,7 +4013,7 @@ msgstr "Cadangkan struktur jadual"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5836,7 +5831,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5975,25 +5970,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6174,8 +6169,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6367,56 +6362,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Tambah/Padam Kolum Medan"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sab"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Bilangan baris per halaman"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Isn"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "mengufuk"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "menegak"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Lungsur"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6435,100 +6433,100 @@ msgstr ""
msgid "Options"
msgstr "Operasi"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Sebahagian Teks"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teks Penuh"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Skema Hubungan"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Skema Hubungan"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
msgid "Hide browser transformation"
msgstr "Informasi MasaJana"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Baris telah dipadam"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Bunuh"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "pada kueri"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Papar baris"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Papar Skema PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Versi Pelayan"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Pautan tidak dijumpai"
@@ -6574,7 +6572,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6826,8 +6824,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6970,12 +6968,12 @@ msgstr "Paparkan Ciri-ciri"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Hos"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Masa dijana"
@@ -7183,8 +7181,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)"
@@ -7349,6 +7347,101 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Fungsi"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binari"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Kerana kepanjangannya, medan ini tidak boleh diedit "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binari - jgn diubah"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "direktori muatnaik pelayan-web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Selit"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Selitkan baris baru"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Kembali ke muka sebelumnya"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Tambah baris yang baru"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "Kembali ke muka sebelumnya"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Nilai"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7361,36 +7454,36 @@ msgstr "Tiada"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Jum"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Hantar"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Adakah anda ingin "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Tiada perubahan"
@@ -7398,11 +7491,6 @@ msgstr "Tiada perubahan"
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binari"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7731,18 +7819,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Pembolehubah"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Nilai"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8084,11 +8164,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Fungsi"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8443,7 +8518,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Laksana kueri SQL pada pangkalan data %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8453,11 +8528,11 @@ msgstr ""
msgid "Columns"
msgstr "Nama Kolum"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "andabuku kueri-SQL ini"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8481,10 +8556,6 @@ msgstr "Papar kueri ini di sini lagi"
msgid "View only"
msgstr "Paparan sahaja"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "direktori muatnaik pelayan-web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8694,12 +8765,6 @@ msgstr "Operasi"
msgid "Table Search"
msgstr "Cari"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Selit"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8883,7 +8948,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Pengguna"
@@ -9100,10 +9165,6 @@ msgstr "Papar semua"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9316,18 +9377,18 @@ msgstr "Jadual \"%s\" tidak wujud!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Medan"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9772,8 +9833,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9890,7 +9951,7 @@ msgstr "Bebenang %s telah berjaya dimatikan."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10029,159 +10090,159 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Bebenang %s telah berjaya dimatikan."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Jenis Kueri"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Penyelitan Lanjutan"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Papar jadual"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informasi MasaJana"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Dijana oleh"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Jangan tukar katalaluan"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Papar jadual"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Papar jadual"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
msgid "Related links:"
msgstr "Operasi"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Jenis Kueri"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Fungsi"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10189,117 +10250,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Penyataan"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "DiTerima"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Hantar"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Percubaan Gagal"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "DiBatalkan"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Arahan"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10307,78 +10368,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10386,7 +10447,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10394,42 +10455,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10437,33 +10498,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10472,243 +10533,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Fail bagi set Aksara:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10716,99 +10777,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10816,18 +10877,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10835,68 +10896,68 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
msgid "Thread cache hit rate (calculated value)"
msgstr "Jenis Kueri"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sab"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "Tambah medan baru"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Dijana oleh"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Tambah/Padam Kolum Medan"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10905,7 +10966,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10913,18 +10974,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10932,11 +10993,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10944,89 +11005,89 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
msgid "Preset chart"
msgstr "Tukarnama jadual ke"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Pilih Jadual"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Tambah Pengguna Baru"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "kueri-SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statistik Baris"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Sila pilih pangkalan data"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Jenis Kueri"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Records"
msgid "%d second"
@@ -11034,7 +11095,7 @@ msgid_plural "%d seconds"
msgstr[0] "Rekod"
msgstr[1] "Rekod"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11170,7 +11231,7 @@ msgstr "Nilai Sessi"
msgid "Global value"
msgstr "Nilai Global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11234,41 +11295,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Dokumentasi phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11458,55 +11519,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Tiada pangkalan data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Adakah anda ingin "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Mengesahkan SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Hasil SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Dijana oleh"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Label"
@@ -11521,59 +11573,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "angkalan data %s telah digugurkan."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Kerana kepanjangannya, medan ini tidak boleh diedit "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binari - jgn diubah"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Selitkan baris baru"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Kembali ke muka sebelumnya"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Tambah baris yang baru"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "Kembali ke muka sebelumnya"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12206,33 +12205,39 @@ msgstr ""
msgid "Create version"
msgstr "Versi Pelayan"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "kueri-SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Ulangtetap"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12588,8 +12593,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12713,8 +12718,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13466,9 +13471,6 @@ msgstr ""
#~ msgid "Value too long in the form!"
#~ msgstr "Kehilangan nilai pada borang! !"
-#~ msgid "rows"
-#~ msgstr "Lungsur"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "baris bermula dari rekod #"
diff --git a/po/nb.po b/po/nb.po
index be3deff21f..5295b397c0 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:22+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
-"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Vis alle"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Vis alle"
msgid "Page number:"
msgstr "Sidenummer:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Søk"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "Søk"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Utfør"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nøkkel"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Beskrivelse"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Bruk denne verdien"
@@ -121,12 +121,12 @@ msgstr "Tabellkommentarer"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolonne"
@@ -135,6 +135,7 @@ msgstr "Kolonne"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Kolonne"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -152,12 +153,12 @@ msgstr "Type"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Kommentarer"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Nei"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabell"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rader"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Bytt til %svisuell bygger%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sorter"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Synkende"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Vis"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Slett"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Eller"
@@ -522,8 +523,8 @@ msgstr[0] "%s treff i tabell %s"
msgstr[1] "%s treff i tabell %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Se på"
@@ -532,14 +533,14 @@ msgstr "Se på"
msgid "Delete the matches for the %s table?"
msgstr "Slett treffene for %s tabellen?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Slett"
@@ -607,11 +608,11 @@ msgstr "Overvåkning er aktiv."
msgid "Tracking is not active."
msgstr "Overvåkning er ikke aktiv."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -621,7 +622,7 @@ msgstr "Vis"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikering"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Med avkrysset:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Merk alle"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Merk overheng"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksporter"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Utskriftsvennlig forhåndsvisning"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Tøm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analyser tabell"
msgid "Add prefix to table"
msgstr "Legg prefiks til tabell"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Erstatt tabellprefiks"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopier tabell med prefiks"
@@ -729,8 +730,8 @@ msgstr "Overvåkede tabeller"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Database"
@@ -748,7 +749,7 @@ msgstr "Oppdatert"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -848,45 +849,45 @@ msgstr "Bruk OpenStreetMaps som baselag"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometri"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr ""
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linjestreng"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Ytre ring"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Indre ring"
@@ -894,15 +895,15 @@ msgstr "Indre ring"
msgid "Add a linestring"
msgstr "Legg til linjestreng"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Legg til en indre ring"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Legg til polygon"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -975,7 +976,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmerke %s opprettet"
@@ -1003,7 +1004,7 @@ msgstr ""
"øker php tidsgrensen."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1018,7 +1019,7 @@ msgstr "Tilbake"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
@@ -1028,7 +1029,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått."
msgid "Do you really want to execute \"%s\"?"
msgstr "Vil du virkelig "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Du er i ferd med å SLETTE en komplett database!"
@@ -1114,21 +1115,21 @@ msgstr "Lukk"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Rediger"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Live trafikk-graf"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Live tilkbl./prosess-graf"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Live spørrings-graf"
@@ -1139,23 +1140,23 @@ msgstr "Statistikkdata"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totalt"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Annet"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1175,7 +1176,7 @@ msgstr "Servertrafikk (i KiB)"
msgid "Connections since last refresh"
msgstr "Tilkoblinger siden sist oppdatering"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Prosesser"
@@ -1193,7 +1194,7 @@ msgstr "Spørringer siden sist oppdatering"
msgid "Questions (executed statements by the server)"
msgstr "Spørringer (executed statements av serveren)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Spørringsstatistikk"
@@ -1234,14 +1235,14 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1293,32 +1294,32 @@ msgstr "Bytes sendt"
msgid "Bytes received"
msgstr "Bytes mottatt"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "tilkoblinger"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1332,11 +1333,11 @@ msgstr "%d tabell(er)"
msgid "Questions"
msgstr "Spørringer"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafikk"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Innstillinger"
@@ -1357,10 +1358,10 @@ msgid "Please add at least one variable to the series"
msgstr "Legg minst én variabel til serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Ingen"
@@ -1465,7 +1466,7 @@ msgstr "Endre dine innstillinger"
msgid "Current settings"
msgstr "Flere innstillinger"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1557,9 +1558,9 @@ msgstr "Analyser"
msgid "Explain output"
msgstr "Forklar SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tid"
@@ -1671,7 +1672,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importer"
@@ -1809,19 +1810,19 @@ msgstr "Utfør indeks(er)"
msgid "Show indexes"
msgstr "Vis rutenett"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Slå av kontroll av fremmednøkler"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Påslått"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1899,7 +1900,7 @@ msgstr "Vis spørringsboks"
msgid "No rows selected"
msgstr "Ingen rader valgt"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Endre"
@@ -1910,17 +1911,18 @@ msgstr "Endre"
msgid "Query execution time"
msgstr "Maks kjøretid"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d er ikke et gyldig radnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Lagre"
@@ -1947,174 +1949,166 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "Legg til/Slett kolonner"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Spørringsresultatshandlinger"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Datapekerstørrelse"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorer"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "Legg til kolonne(r)"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Velg referert nøkkel"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Velg fremmednøkkel"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Velg primærnøkkelen eller en unik nøkkel"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Velg kolonne for visning"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Legg til valg for kolonne "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Klikk for å velge"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
msgstr "Gå til visning"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Kolonnenavn"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Oppdater rad(er)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Generer passord"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generer"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Endre passord"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mer"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2124,29 +2118,29 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Gå til database"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Utført"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "Forrige"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2154,149 +2148,149 @@ msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "I dag"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Januar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Februar"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Mars"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "April"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "August"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Des"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2304,97 +2298,97 @@ msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Uke"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Ingen"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Time"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekund"
@@ -2445,16 +2439,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per sekund"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minutt"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per time"
@@ -2586,15 +2580,15 @@ msgstr ""
msgid "Databases"
msgstr "Databaser"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Tjener"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2606,20 +2600,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Sett inn"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operasjoner"
@@ -2679,12 +2673,12 @@ msgstr "Bruker"
msgid "Synchronize"
msgstr "Synkroniser"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binærlogg"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabler"
@@ -2701,8 +2695,9 @@ msgid "Engines"
msgstr "Motorer"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Feil"
@@ -2828,35 +2823,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Ingen forhandsvisning tilgjengelig."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "velg"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standard stil %s ble ikke funnet!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Stilen %s ble ikke funnet!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Stilsti ble ikke funnet for stilen %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2897,14 +2892,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3164,8 +3159,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@@ -3274,7 +3269,7 @@ msgstr "delt"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabeller"
@@ -3325,24 +3320,24 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
msgstr "Kunne ikke lagre konfigurasjonen"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3354,21 +3349,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] variabelen MÅ være innstilt i din "
"konfigurasjonsfil!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Ugyldig tjenerindeks: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du burde oppgradere til %s %s eller nyere."
@@ -3403,8 +3398,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-spørring"
@@ -3442,7 +3437,7 @@ msgid "Create PHP Code"
msgstr "Lag PHP kode"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Oppdater"
@@ -3463,43 +3458,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Inline"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Søn"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B, %Y %H:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutiner"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Start"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3507,8 +3502,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Forrige"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3516,54 +3511,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "Neste"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Slutt"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Hopp til databasen "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Klikk for å velge"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Bla gjennom datamaskinen:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Det er ingen filer å laste opp"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Skriv ut"
@@ -3736,9 +3731,9 @@ msgstr "Gjennopprett standard verdi"
msgid "Allow users to customize this value"
msgstr "Tillat brukere å endre denne verdien"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Tilbakestill"
@@ -3900,7 +3895,7 @@ msgid "Compress on the fly"
msgstr "Komprimer direkte"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurasjonsfil"
@@ -3962,7 +3957,7 @@ msgstr "Foreslå tabellstruktur"
msgid "Show binary contents as HEX by default"
msgstr "Vis binært innhold som heksadesimal som standard"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Vis binært innhold som HEX"
@@ -5876,7 +5871,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Sjekk for siste versjon"
@@ -6022,7 +6017,7 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6030,21 +6025,21 @@ msgid ""
"configured)."
msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Tjeneren svarer ikke"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detaljer..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6209,8 +6204,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -6419,58 +6414,61 @@ msgstr ""
msgid "Language"
msgstr "Språk"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Lagringsmappe"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Restore column order"
msgstr "CHAR textarea kolonner"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Start row"
msgstr "CHAR textarea rader"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "Antall rader:"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "Mer"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vannrett"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horisontal (roterte overskrifter)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "loddrett"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Se på"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sorter etter nøkkel"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6488,99 +6486,99 @@ msgstr "Sorter etter nøkkel"
msgid "Options"
msgstr "Innstillinger"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Delvis tekst"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Hele strenger"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relasjonsnøkkel"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relasjonsvisningskolonne"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Vis binært innhold"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Vis BLOB innhold"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Nettvisertransformasjon"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Raden er slettet"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Avslutt"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "i spørring"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Viser rader"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Spørring tok %01.4f sek"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Spørringsresultatshandlinger"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Forhåndsvisning (med all tekst)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Vis PDF-skjema"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Opprett bruker"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link ikke funnet"
@@ -6628,7 +6626,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Mellomlager"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -6919,8 +6917,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7061,12 +7059,12 @@ msgstr "Vis MIME-typer"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Vert"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Generert den"
@@ -7279,8 +7277,8 @@ msgstr "Ingen data funnet for graf."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)."
@@ -7467,6 +7465,103 @@ msgstr "SQL kompatibilitetsmodus"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ikke bruk AUTO_INCREMENT for nullverdier"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksjon"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Skjul"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binær"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+" På grunn av sin lengde, så vil muligens denne kolonnen ikke være "
+"redigerbar"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binær - må ikke redigeres"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "webtjener opplastingskatalog"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Sett inn"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Restarte innsettinga med %s rader"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "og så"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Sett inn som ny rad"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Sett inn som ny rad og ignorer feil"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Viser SQL spørring"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Returner"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Sett inn en ny post"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Tilbake til denne siden"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Rediger neste rad"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for "
+"å bevege deg hvor som helst"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Verdi"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Viser SQL spørring"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Insatt rad id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7477,38 +7572,38 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "Fre"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Send"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add prefix"
msgstr "Utfør indeks(er)"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Vil du virkelig "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ingen endring"
@@ -7516,11 +7611,6 @@ msgstr "Ingen endring"
msgid "Charset"
msgstr "Tegnsett"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binær"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "bulgarsk"
@@ -7857,18 +7947,10 @@ msgid "Slave status"
msgstr "Slavestatus"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabler"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Verdi"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Tjener ID"
@@ -8232,11 +8314,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Rutiner"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksjon"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8604,7 +8681,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kjør SQL spørring/spørringer mot databasen %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Fjern"
@@ -8612,11 +8689,11 @@ msgstr "Fjern"
msgid "Columns"
msgstr "Kolonner"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Lagre denne SQL-spørringen"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "La alle brukere ha adgang til dette bokmerket"
@@ -8640,10 +8717,6 @@ msgstr "Vis denne spørring her igjen"
msgid "View only"
msgstr "Bare se"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "webtjener opplastingskatalog"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8761,8 +8834,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"For en liste over tilgjengelige transformasjonsvalg, klikk på "
-"%stransformasjonsbeskrivelser%s"
+"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
+"stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
@@ -8847,12 +8920,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Søk"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Sett inn"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9078,7 +9145,7 @@ msgstr "Protokollversjon"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Bruker"
@@ -9323,10 +9390,6 @@ msgstr "Skjul/Vis alle"
msgid "Hide/Show Tables with no relation"
msgstr "Skjul/Vis tabeller uten relasjoner"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Skjul"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Antall tabeller"
@@ -9553,17 +9616,17 @@ msgstr "Tabellen %s eksisterer ikke!"
msgid "Select binary log to view"
msgstr "Velg binærlogg for visning"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Forkort vist spørring"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Vis hele spørringen"
@@ -10010,8 +10073,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@@ -10136,7 +10199,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Vis masterstatus"
@@ -10291,163 +10354,163 @@ msgstr ""
"Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
"Ønsker du å konfigurere den?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråd %s ble avsluttet med suksess."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Spørringsmellomlager"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Tråder"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Midlertidige data"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Forsinkede innsettinger"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Nøkkelmellomlager"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Sammenføyninger"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaksjonskoordinator"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Vis åpne tabeller"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Vis slaveverter"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Vis slavestatus"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Kjøringsinformasjon"
-#: server_status.php:790
+#: server_status.php:793
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Se slavestatustabell"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Oppdater"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Filter"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Ikke endre passordet"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Vis åpne tabeller"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Vis åpne tabeller"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relasjoner"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Spørringstype"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Informasjon"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10455,33 +10518,33 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Endre oppstartssiden"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Oversikt"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10489,19 +10552,19 @@ msgstr ""
"Denne tjeneren jobber både som tjener og slave i "
"replikasjonsprosessen."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10509,11 +10572,11 @@ msgstr ""
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replikasjonsstatus"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10521,47 +10584,47 @@ msgstr ""
"På en travel tjener så kan byte-tellerene overflyte, så denne statistikken "
"som rapportert av MySQL tjeneren kan være unøyaktig."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Mottatt"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Sendt"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "maks. samtidige tilkoblinger"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Feilede forsøk"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Avbrutt"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10571,17 +10634,17 @@ msgstr ""
"som overskred verdien av binlog_size og brukte en midlertidig fil for å "
"lagre spørringer fra transaksjonen."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Antall transaksjoner som brukte den midlertidige binærloggmellomlageret."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
msgid ""
"The number of temporary tables on disk created automatically by the server "
"while executing statements. If Created_tmp_disk_tables is big, you may want "
@@ -10593,11 +10656,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Antall midlertidige filer mysqld har opprettet."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10605,7 +10668,7 @@ msgstr ""
"Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under "
"utføriing av spørringer."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10613,7 +10676,7 @@ msgstr ""
"Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil "
"oppstod (mest sannsynlig duplisert nøkkel)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10621,23 +10684,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Antall INSERT DELAYED rader skrevet."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Antall utførte FLUSH uttrykk."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Antall interne COMMIT uttrykk."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10647,7 +10710,7 @@ msgstr ""
"tabell med et gitt navn. Dette blir kalt oppdaging (discovery). "
"Handler_discover indikerer antall ganger tabeller har blitt oppdaget."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10657,7 +10720,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10666,7 +10729,7 @@ msgstr ""
"er høyt gir dette en god indikasjon på at dine spørringer og tabeller er "
"riktig indeksert."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10677,7 +10740,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10685,7 +10748,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10697,7 +10760,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:1337
+#: server_status.php:1340
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 "
@@ -10709,37 +10772,37 @@ msgstr ""
"tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for "
"å utnytte de indeksene du har."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Antall interne ROLLBACK kommandoer."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antall sider som inneholder data (endret eller uendret)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Antall sider for tiden endret."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Antall tomme sider."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10748,7 +10811,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:1346
+#: server_status.php:1349
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 "
@@ -10760,11 +10823,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Total størrelse på midlertidig mellomlager i sider."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10772,7 +10835,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10780,11 +10843,11 @@ msgstr ""
"Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB "
"utfører en sekvensiell full tabellskanning."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Antall logiske leseforespørsler InnoDB har utført."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10792,7 +10855,7 @@ msgstr ""
"Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra "
"mellomlageret og måtte utføre en enkelsidelesnining."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10806,55 +10869,55 @@ msgstr ""
"telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt "
"innstilt så vil denne verdien være liten."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Antall fsync() operasjoner så langt."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Antall ventende fsync() operasjoner."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Antall ventende lesinger."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Antall ventende skrivinger."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Mengden data lest så langt, i bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Antall utførte lesninger."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Antall utførte skrivinger."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Mengden data skrevet så langt, i bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10862,35 +10925,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Antall loggskrivingsforespørsler."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Antall fysiske skrivinger til loggfila."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Antall fsync-skrivinger utført på loggfila."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Antall ventende loggfil-fsyncs."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Ventende loggfilskrivinger."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Antall bytes skrevet til loggfila."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Antall sider opprettet."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10898,51 +10961,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Antall sidelesninger."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Antall sideskrivinger."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Antall ventende radlåsinger."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Total tid brukt for å få radlåsinger, i millisekunder."
-#: server_status.php:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antall rader slettet fra InnoDB tabeller."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antall rader satt inn i InnoDB tabeller."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Antall rader lest fra InnoDB tabeller."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Antall rader oppdatert i InnoDB tabeller."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10951,7 +11014,7 @@ msgstr ""
"ennå har blitt skrevet til harddisken. Dette var tidligere kjent som "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10959,7 +11022,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:1386
+#: server_status.php:1389
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 "
@@ -10968,17 +11031,17 @@ msgstr ""
"Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål "
"som viser maksimum antall blokker som har vært brukt på en gang."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Importfilformat"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10988,26 +11051,26 @@ msgstr ""
"stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan "
"kalkuleres med Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11018,17 +11081,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11036,38 +11099,38 @@ msgstr ""
"Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din "
"tabellmellomlagerverdi for liten."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Antall åpne filer."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Antall åpne tabeller."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Mengden ledig minne i spørringsmellomlager."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Antall mellomlagertreff."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Antall spørringer lagt til i mellomlageret."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11080,7 +11143,7 @@ msgstr ""
"og sist brukt (least recently used (LRU)) strategi for å finne hvilke "
"spørringer som skal fjernes fra mellomlageret."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11088,19 +11151,19 @@ msgstr ""
"Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. "
"query_cache_type innstillingen)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Antall spørringer registrert i mellomlageret."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Totale antall blokker i spørringsmellomlageret."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11108,11 +11171,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11120,7 +11183,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11128,15 +11191,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11144,12 +11207,12 @@ msgstr ""
"Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har "
"gjentatt transaksjoner."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11157,12 +11220,12 @@ msgstr ""
"Antall tråder som har brukt mer enn slow_launch_time sekunder under "
"opprettelse."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11172,24 +11235,24 @@ msgstr ""
"denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size "
"systemvariabelen."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Antall sorteringer som ble utført med rekkefølger."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Antall sorterte rader."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11201,7 +11264,7 @@ msgstr ""
"først optimalisere dine spørringer, og deretter enten splitte din tabell "
"eller tabeller eller bruke replikasjon."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11211,11 +11274,11 @@ msgstr ""
"Threads_created/Connections. Hvis denne verdien er rød bør du øke din "
"thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Antall åpne tilkoblinger."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11226,75 +11289,75 @@ 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:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Overvåkning er ikke aktiv."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Antall tråder som ikke sover."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "CHAR textarea rows"
msgid "Start Monitor"
msgstr "CHAR textarea rader"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Utfør indeks(er)"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Oppdater"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR textarea kolonner"
-#: server_status.php:1624
+#: server_status.php:1627
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Feilbehandling:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Gjennopprett standard verdi"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "Informasjon"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11303,7 +11366,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11311,18 +11374,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11330,11 +11393,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11342,97 +11405,97 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Fjern database"
-#: server_status.php:1677
+#: server_status.php:1680
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Se slavestatustabell"
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Velg tabeller"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Ugylding tabellnavn"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Legg til en ny tjener"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL spørringer"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Vis statistikk"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "Velg side"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Spørringstype"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -11440,7 +11503,7 @@ msgid_plural "%d seconds"
msgstr[0] "Sekund"
msgstr[1] "Sekund"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11576,7 +11639,7 @@ msgstr "Økts verdi"
msgid "Global value"
msgstr "Global verdi"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Last ned"
@@ -11653,39 +11716,39 @@ msgstr "Der finnes ingen konfigurerte tjenere"
msgid "New server"
msgstr "Ny tjener"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Standard språk"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "la brukeren bestemme"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ingen -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Standard tjener"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Linjeslutt"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Vis"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Last"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin hjemmeside"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Doner"
@@ -11874,8 +11937,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
-"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@@ -11959,53 +12022,44 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn"
msgid "Wrong data"
msgstr "Ingen databaser"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Se de eksterne verdiene"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Vil du virkelig "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Insatt rad id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Viser som PHP kode"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Viser SQL spørring"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Validert SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-resultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generert av"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Navn"
@@ -12020,61 +12074,6 @@ msgstr "Tabellen %1$s har blitt endrett"
msgid "The columns have been moved successfully."
msgstr "De valgte brukerne har blitt slettet."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-" På grunn av sin lengde, så vil muligens denne kolonnen ikke være "
-"redigerbar"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binær - må ikke redigeres"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Sett inn som ny rad"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Sett inn som ny rad og ignorer feil"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Viser SQL spørring"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "og så"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Returner"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Sett inn en ny post"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Tilbake til denne siden"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Rediger neste rad"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for "
-"å bevege deg hvor som helst"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Restarte innsettinga med %s rader"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12731,38 +12730,44 @@ msgstr "Spor disse datamanipulasjonsspørringene:"
msgid "Create version"
msgstr "Opprett versjon"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Skjul søkekriterier"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maks antall rader som kan framvises"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Kontrollbruker"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Tilbakestill"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Få flere temaer!"
@@ -13134,8 +13139,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13270,8 +13275,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14102,8 +14107,8 @@ msgstr "maks. samtidige tilkoblinger"
#~ msgid ""
#~ "Are you sure you want to disable all BLOB references for database %s?"
#~ msgstr ""
-#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen "
-#~ "%s?"
+#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %"
+#~ "s?"
#, fuzzy
#~ msgid "Unknown error while uploading."
@@ -14298,9 +14303,6 @@ msgstr "maks. samtidige tilkoblinger"
#~ msgid "No trigger with name %s found"
#~ msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
-#~ msgid "rows"
-#~ msgstr "Se på"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rader fra rad"
diff --git a/po/nl.po b/po/nl.po
index f482cb6a22..61501c1e39 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-23 16:55+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
-"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.10\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Toon alles"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Toon alles"
msgid "Page number:"
msgstr "Paginanummer:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster "
"afgesloten of uw browser blokkeert bijwerkingen van uw venster."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Zoeken"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "Zoeken"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Start"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Sleutelnaam"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Beschrijving"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Gebruik deze waarde"
@@ -121,12 +121,12 @@ msgstr "Tabelopmerkingen"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolom"
@@ -135,6 +135,7 @@ msgstr "Kolom"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Kolom"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Type"
@@ -152,12 +153,12 @@ msgstr "Type"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Leeg"
@@ -196,13 +197,13 @@ msgstr "Opmerkingen"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Nee"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -356,7 +357,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rijen"
@@ -407,28 +408,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Overschakelen op %svisuele builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sorteren"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Oplopend"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Aflopend"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Toon"
@@ -449,8 +450,8 @@ msgid "Del"
msgstr "Verwijder"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Of"
@@ -519,8 +520,8 @@ msgstr[0] "%1$s overeenkomst in de tabel %2$s"
msgstr[1] "%1$s overeenkomsten in de tabel %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Verkennen"
@@ -529,14 +530,14 @@ msgstr "Verkennen"
msgid "Delete the matches for the %s table?"
msgstr "Verwijder gevonden rijen voor de tabel %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Verwijderen"
@@ -604,11 +605,11 @@ msgstr "Tracking is ingeschakeld."
msgid "Tracking is not active."
msgstr "Tracking is niet actief."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@@ -619,7 +620,7 @@ msgstr "View"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicatie"
@@ -633,20 +634,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Met geselecteerd:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Selecteer alles"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -658,27 +659,27 @@ msgstr "Selecteer tabellen met overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exporteren"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Afdrukken"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Legen"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -704,11 +705,11 @@ msgstr "Analyseer tabel"
msgid "Add prefix to table"
msgstr "Voeg voorvoegsel toe aan tabel"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Vervang tabelvoorvoegsel"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Vervang tabel met voorvoegsel"
@@ -727,8 +728,8 @@ msgstr "Tabellen met tracker"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databank"
@@ -746,7 +747,7 @@ msgstr "Bijgewerkt"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -847,47 +848,47 @@ msgstr "Gebruik OpenStreetMaps als basislayer"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrie"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Voeg een punt toe"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Lijnstuk definitie"
# https://nl.wikipedia.org/wiki/Aangeschreven_cirkel
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Aangeschreven cirkel"
# https://nl.wikipedia.org/wiki/Ingeschreven_cirkel
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Ingeschreven cirkel"
@@ -895,15 +896,15 @@ msgstr "Ingeschreven cirkel"
msgid "Add a linestring"
msgstr "Voeg een lijnstuk toe"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Voeg een ingeschreven cirkel toe"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygoon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Voeg een veelhoek toe"
@@ -926,11 +927,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
-"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
+"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -980,7 +981,7 @@ msgstr ""
"De plugins voor het importeren konden niet worden geladen, controleer uw "
"installatie!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bladwijzer %s aangemaakt"
@@ -1008,7 +1009,7 @@ msgstr ""
"worden versoepeld."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1025,7 +1026,7 @@ msgstr ""
"phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan "
"kan."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
@@ -1034,7 +1035,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
msgid "Do you really want to execute \"%s\"?"
msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "U staat op het punt een volledige databank te VERWIJDEREN!"
@@ -1120,21 +1121,21 @@ msgstr "Sluiten"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Wijzigen"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Grafiek met huidig dataverkeer"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Live conn./process grafiek"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Grafiek van actieve queries"
@@ -1145,23 +1146,23 @@ msgstr "Statische gegevens"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totaal"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Andere"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1181,7 +1182,7 @@ msgstr "Serververkeer (in KiB)"
msgid "Connections since last refresh"
msgstr "Verbindingen sinds laatste verversing"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processen"
@@ -1199,7 +1200,7 @@ msgstr "Questions sinds laatste verversing"
msgid "Questions (executed statements by the server)"
msgstr "Questions (aantal door de server uitgevoerde opdrachten)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Querystatistieken"
@@ -1245,14 +1246,14 @@ msgid "System swap"
msgstr "Systeemwisselbestand"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1304,32 +1305,32 @@ msgstr "Doorgestuurde bytes"
msgid "Bytes received"
msgstr "Ontvangen bytes"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Verbindingen"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1343,11 +1344,11 @@ msgstr "%d tabel(len)"
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Verkeer"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Instellingen"
@@ -1368,10 +1369,10 @@ msgid "Please add at least one variable to the series"
msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Geen"
@@ -1471,7 +1472,7 @@ msgstr "Instellingen wijzigen"
msgid "Current settings"
msgstr "Huidige instellingen"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Grafiektitel"
@@ -1559,9 +1560,9 @@ msgstr "Gegevens worden geanalyseerd..."
msgid "Explain output"
msgstr "Verklaar resultaat"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tijd"
@@ -1666,7 +1667,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importeren"
@@ -1786,15 +1787,15 @@ msgstr "Indexen verbergen"
msgid "Show indexes"
msgstr "Indexen tonen"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Controle op vreemde sleutels:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Ingeschakeld)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Uitgeschakeld)"
@@ -1864,7 +1865,7 @@ msgstr "SQL-queryveld tonen"
msgid "No rows selected"
msgstr "Geen rijen geselecteerd"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Veranderen"
@@ -1873,17 +1874,18 @@ msgstr "Veranderen"
msgid "Query execution time"
msgstr "Query-uitvoertijd"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d is geen geldig rijnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Opslaan"
@@ -1908,79 +1910,71 @@ msgid "Hovering over a point will show its label."
msgstr "Beweeg over een punt om het label te tonen."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Gebruik het muiswiel om in of uit te zoomen."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Klik en sleep met de muis om te navigeren."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Klik herstel zoom om terug te keren naar de beginpositie."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Klik een gegevenspunt aan om dit te bekijken en om eventueel de gegevens te "
"bewerken."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"De weergave kan herschaald worden door het langs de hoek rechtsonder te "
"slepen."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Tekenreeksen worden omgezet naar integers voor weergave"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Selecteer twee kolommen"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Selecteer twee verschillende kolommen"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Queryresultaten"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Inhoud gegevenspunt"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Negeren"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopiëren"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Kolommen toevoegen"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Selecteer de gerefereerde sleutel"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Selecteer vreemde sleutel"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Selecteer de primaire sleutel of een unieke sleutel"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Kies weer te geven veld"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1988,15 +1982,15 @@ msgstr ""
"U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u "
"deze niet opslaat. Wilt u doorgaan?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Een optie voor kolom toevoegen "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Druk op ESC om het bewerken te annuleren"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2004,27 +1998,27 @@ msgstr ""
"U heeft gegevens bewerkt en deze werden nog niet opgeslagen. Bent u zeker "
"dat u deze pagina wil verlaten alvorens de wijzigingen op te slaan?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Sleep om te herschikken"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Klik om te sorteren"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klik om te markeren/demarkeren"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Dubbelklik om kolomnaam te kopiëren"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klik op het pijltje om de zichtbaarheid van de kolom te wijzigen"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2033,46 +2027,46 @@ msgstr ""
"checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na "
"opslaan."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "U kan de meeste kolommen bewerken door op de inhoud te klikken."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ga naar de link"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Kolomnaam kopiëren"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Klik met de rechtmuistoets op de kolomnaam om deze naar het klembord te "
"kopiëren."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Regel(s) met gegevens tonen"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Wachtwoord genereren"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Genereren"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Wachtwoord wijzigen"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Meer"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2082,266 +2076,266 @@ msgstr ""
"overwegen. De nieuwe versie is %s, uitgebracht op %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", meest recente versie:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "Recent bijgewerkt"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Klaar"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Vorige"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Vandaag"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "januari"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "februari"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "maart"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "april"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "mei"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "augustus"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "september"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "november"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "zondag"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "maandag"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "dinsdag"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "woensdag"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "donderdag"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "vrijdag"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "zaterdag"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "za"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "zo"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "di"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "do"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "vr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "za"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Week"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "kalender-maand-jaar"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "geen"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Uur"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Seconde"
@@ -2396,16 +2390,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per seconde"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minuut"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per uur"
@@ -2540,15 +2534,15 @@ msgstr ""
msgid "Databases"
msgstr "Databanken"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2560,20 +2554,20 @@ msgid "Structure"
msgstr "Structuur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Invoegen"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Handelingen"
@@ -2631,12 +2625,12 @@ msgstr "Gebruikers"
msgid "Synchronize"
msgstr "Synchroniseren"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binaire log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabelen"
@@ -2653,8 +2647,9 @@ msgid "Engines"
msgstr "Engines"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fout"
@@ -2775,35 +2770,35 @@ msgstr ""
"wijzigingen zullen verdwijnen na verversen van deze pagina. Gelieve na te "
"kijken of de tabelstructuur gewijzigd werd."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Geen geldig afbeeldingenpad voor thema %s gevonden!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Geen preview beschikbaar."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "neem het"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standaard thema %s niet gevonden!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Thema %s niet gevonden!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Themapad niet gevonden voor thema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Thema"
@@ -2844,14 +2839,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3111,8 +3106,8 @@ msgstr "Welkom bij %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@@ -3220,7 +3215,7 @@ msgstr "gedeeld"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabellen"
@@ -3271,11 +3266,11 @@ msgstr "mogelijk misbruik"
msgid "numeric key detected"
msgstr "numerieke toets gedetecteerd"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Lezen van het configuratiebestand is niet gelukt"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3284,12 +3279,12 @@ msgstr ""
"hieronder te bekijken."
# 'kon niet vanuit "%1$s" geladen worden' is juister.
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3297,21 +3292,21 @@ msgstr ""
"De [code]$cfg['PmaAbsoluteUri'][/code] richtlijn MOET ingesteld zijn in het "
"configuratiebestand!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Ongeldige serverindex: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "U moet upgraden naar %s %s of hoger."
@@ -3346,8 +3341,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-query"
@@ -3385,7 +3380,7 @@ msgid "Create PHP Code"
msgstr "Genereer PHP-code"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Vernieuw"
@@ -3408,95 +3403,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Rechtstreeks"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiling"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "zo"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y om %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Ontbrekende parameter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Begin"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Vorige"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Volgende"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Einde"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Ga naar databank "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klik om te wisselen"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Blader op uw eigen pc:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selecteer uit de web-server upload directory %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Er zijn geen bestanden om te uploaden"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Uitvoeren"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Afdrukken"
@@ -3670,9 +3665,9 @@ msgstr "Standaard waarde herstellen"
msgid "Allow users to customize this value"
msgstr "Gebruikers toestaan deze waarde aan te passen"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Herstellen"
@@ -3839,7 +3834,7 @@ msgid "Compress on the fly"
msgstr "Comprimeer direct"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Configuratiebestand"
@@ -3899,7 +3894,7 @@ msgstr "Tabel structuur acties verbergen"
msgid "Show binary contents as HEX by default"
msgstr "Toon binaire-inhoud standaard als HEX"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Toon binaire-inhoud als HEX"
@@ -5818,7 +5813,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Schakel het ontwikkelaarstabblad in bij instellingen"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Controleren op de meest recente versie"
@@ -5964,26 +5959,26 @@ msgstr "De extensie %s ontbreekt. Gelieve uw PHP-configuratie te controleren."
msgid "possible deep recursion attack"
msgstr "mogelijke diepe recursieaanval"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"De server reageert niet (of de socket van de server is niet juist ingesteld)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "De server reageert niet."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Gelieve de rechten op de folder met de databank na te kijken."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Details..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6148,13 +6143,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabelnaam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
-"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
-"%5$s voor meer details."
+"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
+"$s voor meer details."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6344,48 +6339,53 @@ msgstr "Opmaakspecifieke opties:"
msgid "Language"
msgstr "Taal"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Sla aangepaste gegevens op"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Kolomvolgorde herstellen"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Eerste regel"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Aantal rijen"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Modus"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontale"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontale (omgedraaide headers)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "verticale"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Hoofdingen iedere %s regels"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Verkennen"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sorteren op sleutel"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6403,89 +6403,89 @@ msgstr "Sorteren op sleutel"
msgid "Options"
msgstr "Opties"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Gedeeltelijke teksten"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Volledige teksten"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relationele sleutel"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relationele weergaveveld"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Toon binaire inhoud"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Toon BLOB-inhoud"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Browsertransformaties verbergen"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Goed bekende tekst"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Goed gekende binaire waarde"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "De regel werd verwijderd"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "stop proces"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "in de query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Weergave van records"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "query duurde %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Handelingen voor queryresultaat"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Afdrukken (met volledige teksten)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Grafiek weergeven"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "GIS-gegevens visualiseren"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "VIEW aanmaken"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link niet gevonden"
@@ -6535,7 +6535,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Status"
@@ -6833,11 +6833,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Documentatie en meer informatie over PBXT kan gevonden worden op de "
-"%sPrimeBase XT home pagina%s."
+"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
+"sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:130
msgid "Related Links"
@@ -6957,12 +6957,12 @@ msgstr "Toon beschikbare MIME-types"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Machine"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Genereertijd"
@@ -7183,8 +7183,8 @@ msgstr "Geen gegevens beschikbaar voor GIS-visualisatie."
msgid "GLOBALS overwrite attempt"
msgstr "poging om GLOBALS te overschrijven"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gaf een lege resultatenset terug (0 rijen)."
@@ -7361,6 +7361,98 @@ msgstr "SQL-compatibiliteitsmodus:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Functie"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Verbergen"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binair"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Vanwege z'n lengte, is dit veld misschien niet te wijzigen"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binair - niet aanpassen"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "uploadfolder op webserver"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Aanpassen/Invoegen"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Herstart invoegen met %s rijen"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "en dan"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Toevoegen als nieuwe rij"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Toon insert-query"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Terug"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Een nieuwe rij toevoegen"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Ga terug naar deze pagina"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Volgende rij bewerken"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes "
+"om vrijuit te navigeren"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Waarde"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Toont SQL-query"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Toegevoegd rijnummer: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7372,32 +7464,32 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr "Omzetten naar Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Van"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Naar"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Verzenden"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Tabelvoorvoegsel toevoegen"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Voorvoegsel toevoegen"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Geen verandering"
@@ -7405,11 +7497,6 @@ msgstr "Geen verandering"
msgid "Charset"
msgstr "Karakterset"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binair"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgaars"
@@ -7747,18 +7834,10 @@ msgid "Slave status"
msgstr "Slave-status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabelen"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Waarde"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server-ID"
@@ -8090,11 +8169,6 @@ msgstr "Routine uitvoeren"
msgid "Routine parameters"
msgstr "Routineparameters"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Functie"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "De verwijderde trigger kon niet hersteld worden."
@@ -8416,7 +8490,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Voer SQL-query/queries uit op databank %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Leegmaken"
@@ -8424,11 +8498,11 @@ msgstr "Leegmaken"
msgid "Columns"
msgstr "Kolommen"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Deze SQL-query opslaan"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Elke gebruiker toegang geven tot deze bladwijzer"
@@ -8452,10 +8526,6 @@ msgstr "Laat deze query hier zien"
msgid "View only"
msgstr "Alleen bekijken"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "uploadfolder op webserver"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8526,8 +8596,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige "
-"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie"
-"%s."
+"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%"
+"s."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -8657,10 +8727,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "In de tabel zoeken"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Aanpassen/Invoegen"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8884,7 +8950,7 @@ msgstr "Protocolversie"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Gebruiker"
@@ -9107,10 +9173,6 @@ msgstr "Alles tonen/verbergen"
msgid "Hide/Show Tables with no relation"
msgstr "Tabellen zonder relatie tonen/verbergen"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Verbergen"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Aantal tabellen"
@@ -9310,17 +9372,17 @@ msgstr "Bestand bestaat niet"
msgid "Select binary log to view"
msgstr "Selecteer de te bekijken binaire log"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Bestanden"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Getoonde queries afkappen"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Toon volledige queries"
@@ -9768,8 +9830,8 @@ msgstr "Verwijder de databanken die dezelfde naam hebben als de gebruikers."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL-"
"privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van "
@@ -9896,7 +9958,7 @@ msgstr "Masterserver succesvol gewijzigd in %s"
msgid "This server is configured as master in a replication process."
msgstr "Deze server is ingesteld als master in een replicatieproces."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Toon masterstatus"
@@ -10046,12 +10108,12 @@ msgstr ""
"Deze server is niet ingesteld als slave in een replicatieproces. Wilt u dit "
"nu instellen?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s is succesvol afgesloten."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10059,115 +10121,115 @@ msgstr ""
"phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het "
"al gesloten."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Handler"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Querycache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Threads"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Tijdelijke gegevens"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Vertraagde inserts"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Sleutelcache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joins"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transactiecoördinator"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Alle tabellen schonen (sluiten)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Toon open tabellen"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Toon slave-hosts"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Toon slave-status"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Schoon querycache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Runtime-informatie"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "alle statusvariabelen"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Opvolgen"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Raadgever"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Vernieuwingsfrequentie: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filters"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Bevat het woord:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Enkel belangrijke waarden tonen"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filteren op categorie..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Toon niet-opgemaakte waarden"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Gerelateerde links:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Analyse uitvoeren"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Richtlijnen"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10175,7 +10237,7 @@ msgstr ""
"De raadgever kan suggesties doen voor servervariabelen door de "
"statusvariabelen van de server te analyseren."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10184,7 +10246,7 @@ msgstr ""
"Hou er rekening mee dat dit systeem suggesties doet op basis van eenvoudige "
"berekeningen en vuistregels, die mogelijk niet goed werken op uw systeem."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10195,7 +10257,7 @@ msgstr ""
"wijziging ongedaan kan maken. Verkeerde instellingen kunnen een sterk "
"negatief effect hebben op de performantie."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10207,31 +10269,31 @@ msgstr ""
"waarneembare verbetering vastgesteld kon worden."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Questions sinds opstart: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Opdrachten"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Netwerkverkeer sinds opstart: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Deze MySQL-server draait inmiddels %1$s. Deze is gestart op %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10239,13 +10301,13 @@ msgstr ""
"Deze MySQL-server is ingesteld als master en slave in een "
"replicatieproces."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Deze MySQL-server is ingesteld als master in een replicatie"
"b>proces."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Deze MySQL-server is ingesteld als slave in een replicatie"
@@ -10254,7 +10316,7 @@ msgstr ""
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
# "Deze MySQL-server functioneert als %s in een replicatie proces."
# weggehaald.
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10262,11 +10324,11 @@ msgstr ""
"Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replicatiestatus"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10274,35 +10336,35 @@ msgstr ""
"Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor "
"kunnen de gerapporteerde statistieken afwijken."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Ontvangen"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Verzonden"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Max. gelijktijdige verbindingen"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Mislukte pogingen"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Afgehaakte"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Opdracht"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10310,11 +10372,11 @@ msgstr ""
"Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder "
"de verbinding keurig af te sluiten."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10325,18 +10387,18 @@ msgstr ""
"hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op "
"te slaan."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
"Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
"Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10348,11 +10410,11 @@ msgstr ""
"groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke "
"tabellen aan te maken in geheugen in plaats van op harde schijf."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10360,7 +10422,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10368,7 +10430,7 @@ msgstr ""
"Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad "
"(mogelijk een reeds bestaande sleutel)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10376,23 +10438,23 @@ msgstr ""
"Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke "
"tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Het aantal met INSERT DELAYED opgeslagen rijen."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Het aantal uitgevoerde FLUSH-opdrachten."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Het aantal interne COMMIT-opdrachten."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10402,7 +10464,7 @@ msgstr ""
"met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft "
"aan hoeveel tabellen met discovery werden opgezocht."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10412,7 +10474,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10421,7 +10483,7 @@ msgstr ""
"hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige "
"indexen."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10431,7 +10493,7 @@ msgstr ""
"wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking "
"of bij het doen van een indexscan."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10439,7 +10501,7 @@ msgstr ""
"Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit "
"wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10452,7 +10514,7 @@ msgstr ""
"gehele tabel moet scannen of er worden joins toegepast die niet goed "
"gebruikmaken van sleutels."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10465,35 +10527,35 @@ msgstr ""
"zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van "
"maken."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Het aantal interne ROLLBACK-opdrachten."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Het aantal update-opdrachten voor een tabelrij."
-#: server_status.php:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Het aantal pagina's dat momenteel \"dirty\" is."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Het aantal bufferpool-pagina's dat is geschoond."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Het aantal vrije pagina's."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10503,7 +10565,7 @@ msgstr ""
"waarin momenteel wordt gelezen of geschreven, of die om een andere reden "
"niet geschoond of verwijderd kunnen worden."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10515,11 +10577,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Totale grootte van de bufferpool, in pagina's."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10528,7 +10590,7 @@ msgstr ""
"gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in "
"willekeurige volgorde."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10536,11 +10598,11 @@ msgstr ""
"Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit "
"gebeurt wanneer er een volledige tabelscan wordt uitgevoerd."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10548,7 +10610,7 @@ msgstr ""
"Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de "
"bufferpool maar waarvoor een extra pagina ingeladen moest worden."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10562,86 +10624,86 @@ msgstr ""
"zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de "
"bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Het aantal fsync()-operaties."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Het aantal momenteel openstaande fsync()-operaties."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Het aantal momenteel openstaande leesoperaties."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Het aantal momenteel openstaande schrijfoperaties."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Het totale aantal operaties voor het lezen van gegevens."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Het totale aantal operaties voor het schrijven van gegevens."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Het aantal uitgevoerde doublewrite-operaties."
-#: server_status.php:1364
+#: server_status.php:1367
msgid ""
"The number of waits we had because log buffer was too small and we had to "
"wait for it to be flushed before continuing."
msgstr ""
"Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Het aantal verzoeken voor het schrijven in het logboek."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Het aantal fysieke schrijfoperaties op het logbestand."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Het aantal bytes dat naar het logbestand werd geschreven."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Het aantal pagina's dat werd aangemaakt."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10650,54 +10712,54 @@ msgstr ""
"Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het "
"eenvoudig deze om te zetten naar bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Het aantal gelezen pagina's."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Het aantal geschreven pagina's."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10706,13 +10768,13 @@ msgstr ""
"niet naar disk zijn geschreven. Dit stond voorheen bekend als "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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 "
@@ -10721,15 +10783,15 @@ msgstr ""
"Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal "
"behaalde waarde sinds het starten van de server."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10739,7 +10801,7 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10747,22 +10809,22 @@ msgstr ""
"Sleutelcachemissers berekend als percentage van fysieke leesoperaties in "
"vergelijking met leesverzoeken (berekende waarde)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken "
"(berekende waarde)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10773,7 +10835,7 @@ msgstr ""
"verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend "
"dat er nog geen query is gecompiled."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10781,13 +10843,13 @@ msgstr ""
"Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de "
"server gestart werd."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-"
"wachtrijen."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10795,21 +10857,21 @@ msgstr ""
"Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de "
"tabelcachewaarde te laag."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Het totaal aantal geopende bestanden."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar "
"logboeken)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Het totaal aantal open tabellen."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10819,19 +10881,19 @@ msgstr ""
"wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-"
"statement uit te voeren."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "De hoeveelheid vrij geheugen voor het querycache."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Het aantal cache-hits."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Het aantal queries dat aan de cache werd toegevoegd."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10844,7 +10906,7 @@ msgstr ""
"gebruikt (least recently used, LRU) strategie om te bepalen welke queries "
"worden verwijderd."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10852,19 +10914,19 @@ msgstr ""
"Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached "
"vanwege de instelling query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Het aantal queries dat in de cache staat."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Het totaal aantal blokken in de querycache."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10872,13 +10934,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10887,7 +10949,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10895,17 +10957,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-"
"thread."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10913,13 +10975,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:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is "
"met een masterserver."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10927,14 +10989,14 @@ msgstr ""
"Het aantal threads waarvoor het opstarten langer dan slow_launch_time "
"seconden duurde."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10944,24 +11006,24 @@ msgstr ""
"uitvoeren. Indien deze waarde hoog is, is het een optie om de "
"systeemvariabele sort_buffer_size te vergroten."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Het aantal gesorteerde rijen."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10973,7 +11035,7 @@ msgstr ""
"problemen, kunt u het beste eerst uw queries optimaliseren. Daarna kunt u "
"nog kijken naar het splitsen van tabellen en het gebruik van replicatie."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10983,11 +11045,11 @@ msgstr ""
"met Threads_created/Connections. Indien deze waarde rood staat aangegeven is "
"het aan te raden om thread_cache_size te vergroten."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Het aantal momenteel openstaande verbindingen."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10999,47 +11061,47 @@ msgstr ""
"verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede "
"thread-implementatie, geen noemenswaardige prestatieverbetering.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Threadcache-trefprecentage (berekende waarde)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Het aantal threads dat actief bezig is."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Start bewaking"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instructies/Setup"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Klaar met herschikken/bewerken van de grafieken"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Een grafiek toevoegen"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Herschikken/bewerken van de grafieken"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Vernieuwingsfrequentie"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Grafiekkolommen"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Grafiekschikking"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11048,15 +11110,15 @@ msgstr ""
"browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie "
"heeft."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Standaardwaarde herstellen"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Bewakingsinstructies"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11071,7 +11133,7 @@ msgstr ""
"dat general_log veel gegevens genereert en dat de belasting van de server "
"tot 15% kan stijgen"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11083,11 +11145,11 @@ msgstr ""
"Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de "
"grafiekfunctionaliteit gebruiken."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Gebruik van de monitor:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11098,7 +11160,7 @@ msgstr ""
"'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon "
"bij iedere grafiek."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11111,105 +11173,105 @@ msgstr ""
"geladen, daar kunt u op één van de SELECT-statements klikken om deze verder "
"te analyseren."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Hou rekening met:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
"it is advisable to select only a small time span and to disable the "
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-"Het inschakelen van de general_log kan de serverbelasting verhogen met "
-"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de "
+"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-"
+"15%. Wees er ook bewust van dat het genereren van statistieken uit de "
"logboeken een belastende taak is, daarom is het aan te raden om alleen een "
"kleine periode te selecteren, en de general_log uit te schakelen en de tabel "
"te legen zodra het monitoren niet meer nodig is."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Grafiek instellen"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Statusvariabele(n)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Selecteer series:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Algemeen bewaakt"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "of geef variabelenaam op:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Verschil weergeven"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Een scheiding toepassen"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Eenheid toevoegen aan gegevenswaarden"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Deze serie toevoegen"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Reeks leegmaken"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Series in grafiek:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Logstatistieken"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Geselecteerde tijdspanne:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
"Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen "
"groeperen"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Kies het logbestand waarvan u de statistieken wil genereren."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Query-analyser"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d seconde"
msgstr[1] "%d seconden"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11343,7 +11405,7 @@ msgstr "Sessievariabelen"
msgid "Global value"
msgstr "Globale waarde"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Download"
@@ -11419,39 +11481,39 @@ msgstr "Er zijn momenteel geen servers geconfigureerd"
msgid "New server"
msgstr "Nieuwe server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Standaard taal"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "laat de gebruiker kiezen"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- geen -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Standaard server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Regeleinde"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Toon"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Laden"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin-website"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Doneren"
@@ -11534,10 +11596,10 @@ msgid ""
msgstr ""
"Deze %soptie%s zou uitgeschakeld moeten zijn gezien het de mogelijkheid "
"geeft aan kwaadwillenden om op grote schaal aanmeldinspogingen uit te voeren "
-"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan "
-"%strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is "
-"mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw "
-"provider komt waar ook vele andere klanten gebruik van maken."
+"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan %"
+"strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is mogelijk "
+"niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw provider komt "
+"waar ook vele andere klanten gebruik van maken."
#: setup/lib/index.lib.php:296
msgid ""
@@ -11638,8 +11700,8 @@ msgstr ""
"U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken "
"gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. "
"Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van "
-"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype"
-"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]."
+"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%"
+"s [kbd]cookie[/kbd] of [kbd]http[/kbd]."
#: setup/lib/index.lib.php:314
#, php-format
@@ -11684,51 +11746,42 @@ msgstr ""
msgid "Wrong data"
msgstr "Verkeerde gegevens"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Bekijk vreemde waarden"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Toegevoegd rijnummer: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Getoond als PHP-code"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Toont SQL-query"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Gevalideerde SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-resultaat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Gegenereerd door"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de indexen van de tabel `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Label"
@@ -11743,58 +11796,6 @@ msgstr "Tabel %1$s is bijgewerkt"
msgid "The columns have been moved successfully."
msgstr "De geselecteerde gebruikers zijn met succes verwijderd."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Vanwege z'n lengte, is dit veld misschien niet te wijzigen"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binair - niet aanpassen"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Toevoegen als nieuwe rij"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Toon insert-query"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "en dan"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Terug"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Een nieuwe rij toevoegen"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Ga terug naar deze pagina"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Volgende rij bewerken"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes "
-"om vrijuit te navigeren"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Herstart invoegen met %s rijen"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12388,32 +12389,38 @@ msgstr "Deze manipulatie-statements tracken:"
msgid "Create version"
msgstr "Versie aanmaken"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Voer een \"query als voorbeeld\" (wildcard: \"%\") uit op twee verschillende "
"kolommen"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Bijkomende zoekcriteria"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Gebruik deze kolom om ieder punt een naam te geven"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maximum aantal af te drukken regels"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Doorzoek/bewerk de punten"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Hoe te gebruiken"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Herstellen"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Bekijk meer thema's!"
@@ -12802,8 +12809,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"De huidige verhouding van vrij querycachegeheugen tot de totale "
"querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn"
@@ -12960,8 +12967,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou "
"lager moeten zijn dan 10%%."
@@ -13742,6 +13749,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert is ingesteld op 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Gebruik het muiswiel om in of uit te zoomen."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Klik en sleep met de muis om te navigeren."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Tekenreeksen worden omgezet naar integers voor weergave"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14136,9 +14152,6 @@ msgstr "concurrent_insert is ingesteld op 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!"
-#~ msgid "rows"
-#~ msgstr "Verkennen"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rij(en) beginnend bij"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 52f5c5ab05..bf4c24f8c1 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,23 +8,22 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,28 +31,29 @@ msgstr ""
msgid "Page number:"
msgstr ""
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr ""
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +69,27 @@ msgstr ""
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr ""
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr ""
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr ""
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr ""
@@ -121,12 +120,12 @@ msgstr ""
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr ""
@@ -135,6 +134,7 @@ msgstr ""
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +142,9 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -152,12 +152,12 @@ msgstr ""
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr ""
@@ -196,13 +196,13 @@ msgstr ""
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +213,19 @@ msgstr ""
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +354,7 @@ msgstr ""
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
@@ -405,28 +405,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr ""
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr ""
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr ""
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr ""
@@ -447,8 +447,8 @@ msgid "Del"
msgstr ""
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr ""
@@ -517,8 +517,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -527,14 +527,14 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr ""
@@ -602,11 +602,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, possible-php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -616,7 +616,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -630,20 +630,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr ""
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -655,27 +655,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -701,11 +701,11 @@ msgstr ""
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -724,8 +724,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -743,7 +743,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -841,45 +841,45 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, possible-php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr ""
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -887,15 +887,15 @@ msgstr ""
msgid "Add a linestring"
msgstr ""
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -916,8 +916,8 @@ msgstr ""
#: import.php:86
#, possible-php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -957,7 +957,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, possible-php-format
msgid "Bookmark %s created"
msgstr ""
@@ -980,7 +980,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -995,7 +995,7 @@ msgstr ""
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1004,7 +1004,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1090,21 +1090,21 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1115,23 +1115,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ""
@@ -1151,7 +1151,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1169,7 +1169,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1210,14 +1210,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr ""
@@ -1269,32 +1269,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr ""
@@ -1308,11 +1308,11 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr ""
@@ -1333,10 +1333,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr ""
@@ -1429,7 +1429,7 @@ msgstr ""
msgid "Current settings"
msgstr ""
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr ""
@@ -1505,9 +1505,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1598,7 +1598,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr ""
@@ -1718,15 +1718,15 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr ""
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr ""
@@ -1793,7 +1793,7 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
@@ -1802,17 +1802,18 @@ msgstr ""
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, possible-php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -1837,158 +1838,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr ""
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr ""
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -1996,266 +1989,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr ""
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr ""
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr ""
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr ""
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr ""
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr ""
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr ""
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr ""
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr ""
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr ""
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr ""
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr ""
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr ""
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr ""
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr ""
@@ -2305,16 +2298,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2439,15 +2432,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2459,20 +2452,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2530,12 +2523,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2552,8 +2545,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
@@ -2665,35 +2659,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, possible-php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, possible-php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, possible-php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, possible-php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2734,14 +2728,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -2991,8 +2985,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, possible-php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3090,7 +3084,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3141,42 +3135,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, possible-php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, possible-php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, possible-php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, possible-php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3211,8 +3205,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr ""
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3250,7 +3244,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3271,95 +3265,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, possible-php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, possible-php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3531,9 +3525,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3677,7 +3671,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3735,7 +3729,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5467,7 +5461,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5605,25 +5599,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5781,8 +5775,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5958,48 +5952,51 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, possible-php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6017,89 +6014,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6143,7 +6140,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6394,8 +6391,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, possible-php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6516,12 +6513,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6719,8 +6716,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6882,6 +6879,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, possible-php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, possible-php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6892,32 +6979,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6925,11 +7012,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7254,18 +7336,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7583,11 +7657,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7907,7 +7976,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7915,11 +7984,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7943,10 +8012,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8117,10 +8182,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, possible-php-format
msgid ""
@@ -8292,7 +8353,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8485,10 +8546,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8679,17 +8736,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9114,8 +9171,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9230,7 +9287,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9363,146 +9420,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, possible-php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, possible-php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9510,115 +9567,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, possible-php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, possible-php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, possible-php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9626,78 +9683,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9705,7 +9762,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9713,42 +9770,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -9756,33 +9813,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -9791,242 +9848,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
msgid ""
"The number of queries that have been removed from the cache to free up "
"memory for caching new queries. This information can help you tune the query "
@@ -10034,99 +10091,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10134,18 +10191,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
msgid ""
"The number of threads created to handle connections. If Threads_created is "
"big, you may want to increase the thread_cache_size value. (Normally this "
@@ -10153,61 +10210,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10216,7 +10273,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10224,18 +10281,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10243,11 +10300,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10255,86 +10312,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, possible-php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, possible-php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10466,7 +10523,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10528,39 +10585,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10746,51 +10803,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, possible-php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, possible-php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10803,56 +10851,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr ""
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, possible-php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11433,30 +11431,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 60831035d7..be15873002 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 14:07+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: iMutrix\n"
-"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Pokaż wszystko"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Pokaż wszystko"
msgid "Page number:"
msgstr "Numer strony:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"zostało zamknięte, lub ustawienia zabezpieczeń przeglądarki są "
"skonfigurowane na blokowanie aktualizacji między oknami."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Szukaj"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Szukaj"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Wykonaj"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nazwa klucza"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Opis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Użyj tej wartości"
@@ -123,12 +123,12 @@ msgstr "Komentarze tabeli"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolumna"
@@ -137,6 +137,7 @@ msgstr "Kolumna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Kolumna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -154,12 +155,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Komentarze"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Nie"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rekordy"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Przełącz do %svisual builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortuj"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Rosnąco"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Malejąco"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Pokaż"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Usuń"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Lub"
@@ -523,8 +524,8 @@ msgstr[1] "%1$s dopasowania wewnątrz tabeli %2$s"
msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Przeglądaj"
@@ -533,14 +534,14 @@ msgstr "Przeglądaj"
msgid "Delete the matches for the %s table?"
msgstr "Usunąć dopasowania do tabeli %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Usuń"
@@ -609,11 +610,11 @@ msgstr "Śledzenie jest aktywne."
msgid "Tracking is not active."
msgstr "Śledzenie nie jest aktywne."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się "
"do %sdokumentacji%s."
@@ -625,7 +626,7 @@ msgstr "Widok"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikacja"
@@ -639,20 +640,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s to domyślny silnik składowania tego serwera MySQL."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Z zaznaczonymi:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Zaznacz wszystkie"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -664,27 +665,27 @@ msgstr "Zaznacz tabele nieoptymalne"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Podgląd wydruku"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Opróżnij"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -710,11 +711,11 @@ msgstr "Analizuj tabelę"
msgid "Add prefix to table"
msgstr "Dodaj przedrostek do tabeli"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Zamień przedrostek tabeli"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopiuj tabelę z przedrostkiem"
@@ -733,8 +734,8 @@ msgstr "Tabele śledzone"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza danych"
@@ -752,7 +753,7 @@ msgstr "Zaktualizowana"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -852,45 +853,45 @@ msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punkt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punkt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Dodaj punkt"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linia ciągu"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Pierścień zewnętrzny"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Pierścień wewnętrzny"
@@ -898,15 +899,15 @@ msgstr "Pierścień wewnętrzny"
msgid "Add a linestring"
msgstr "Dodaj linestring"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Dodaj pierścień wewnętrzny"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Wielokąt"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Dodaj wielokąt"
@@ -929,11 +930,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się "
-"%sdokumentacją%s, aby obejść to ograniczenie."
+"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się %"
+"sdokumentacją%s, aby obejść to ograniczenie."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -979,7 +980,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Zakładka %s utworzona"
@@ -1007,7 +1008,7 @@ msgstr ""
"importu bez zwiększenia limitów czasowych PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1024,7 +1025,7 @@ msgstr ""
"phpMyAdmin jest bardziej przyjazny w przeglądarkach WWW obsługujących "
"ramki."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Instrukcje \"DROP DATABASE\" są wyłączone."
@@ -1033,7 +1034,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone."
msgid "Do you really want to execute \"%s\"?"
msgstr "Czy na pewno chcesz wykonać \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
@@ -1119,21 +1120,21 @@ msgstr "Zamknij"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edytuj"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Wykres ruchu w czasie rzeczywistym"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Wykres połączeń w czasie rzeczywistym /wykres procesów"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Wykres zapytań w czasie rzeczywistym"
@@ -1144,23 +1145,23 @@ msgstr "Dane statyczne"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ogółem"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Inne"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1180,7 +1181,7 @@ msgstr "Ruch na serwerze (w KiB)"
msgid "Connections since last refresh"
msgstr "Połączenia od czasu ostatniego odświeżenia"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesy"
@@ -1198,7 +1199,7 @@ msgstr "Zapytania od czasu ostatniego odświeżenia"
msgid "Questions (executed statements by the server)"
msgstr "Zapytania (instrukcje wykonane przez serwer)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statystyki zapytań"
@@ -1243,14 +1244,14 @@ msgid "System swap"
msgstr "Systemowa przestrzeń wymiany"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1302,32 +1303,32 @@ msgstr "Bajty przesłane"
msgid "Bytes received"
msgstr "Bajty otrzymane"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Połączenia"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1341,11 +1342,11 @@ msgstr "%d tabeli(l)"
msgid "Questions"
msgstr "Pytania"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Ruch"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Ustawienia"
@@ -1366,10 +1367,10 @@ msgid "Please add at least one variable to the series"
msgstr "Proszę dodać przynajmniej jedną zmienną do serii"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Żaden"
@@ -1469,7 +1470,7 @@ msgstr "Zmiana ustawień"
msgid "Current settings"
msgstr "Ustawienia bieżące"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Tytuł wykresu"
@@ -1553,9 +1554,9 @@ msgstr "Analizowanie ..."
msgid "Explain output"
msgstr "Wyjaśnij wynik przetworzenia danych"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Czas"
@@ -1653,7 +1654,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Import"
@@ -1773,15 +1774,15 @@ msgstr "Ukryj indeksy"
msgid "Show indexes"
msgstr "Pokaż indeksy"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Sprawdzanie klucza zewnętrznego:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Włączone)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Wyłączone)"
@@ -1848,7 +1849,7 @@ msgstr "Pokaż okno zapytań"
msgid "No rows selected"
msgstr "Nie żadnych wybrano rekordów"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Zmień"
@@ -1857,17 +1858,18 @@ msgstr "Zmień"
msgid "Query execution time"
msgstr "Czas wykonywania zapytania"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie jest prawidłowym numerem wiersza."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Zapisz"
@@ -1892,79 +1894,71 @@ msgid "Hovering over a point will show its label."
msgstr "Najechanie nad punkt pokaże jego etykietę."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Użyj kółka myszy, aby powiększyć lub pomniejszyć jego akcji."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Kliknij i przeciągnij myszą, aby poruszać się po powierzchni."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "liknij link by zresetować powiększenie i wrócić do pierwotnego stanu."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Kliknij punkt danych, aby wyświetlić lub ewentualnie zmodyfikować wiersze "
"danych."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Wykres może być zmieniany przez przeciągnięcie go wzdłuż prawego dolnego "
"rogu."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Ciągi są konwertowane na liczbę całkowitą dla wykreślania"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Wybierz dwie kolumny"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Wybierz dwie różne kolumny"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Wyniki zapytania"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Treść punktu danych"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoruj"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopiuj"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Dodaj kolumny"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Wybierz klucz odwołujący"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Wybierz klucz zewnętrzny"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Należy wybrać klucz główny lub klucz jednoznaczny"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Wybierz kolumny do wyświetlenia"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1972,15 +1966,15 @@ msgstr ""
"Nie zapisano zmian w układzie. Zostaną utracone, jeśli nie zapiszesz ich. "
"Czy chcesz kontynuować?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Dodaj opcję do kolumny "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Naciśnij ESCAPE aby anulować edycję"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1988,27 +1982,27 @@ msgstr ""
"Po dokonaniu edycji pewnych danych, nie zostały one zapisane. Czy na pewno "
"chcesz opuścić tę stronę przed zapisaniem danych?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Przeciągnij, aby uporządkować"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Kliknij, aby posortować"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Kliknij, aby zaznaczyć/odznaczyć"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Kliknij rozwijane strzałki aby przełączyć widoczność kolumn"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2017,47 +2011,47 @@ msgstr ""
"pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po "
"zapisaniu."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Można także edytować większość kolumn klikając bezpośrednio na ich "
"treść."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Kliknij link"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Skopiuj nazwę kolumny"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Kliknij prawym przyciskiem myszy nazwę kolumny aby skopiować go do schowka."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Pokaż dane wiersza(y)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Wygeneruj hasło"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generuj"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Zmień hasło"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Więcej"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2067,266 +2061,266 @@ msgstr ""
"werja to %s, wydana dnia %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", ostatnia stabilna wersja:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "aktualna"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Zakończ"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Poprz."
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Nast."
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Dziś"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Styczeń"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Luty"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Marzec"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Kwiecień"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maj"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Czerwiec"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Lipiec"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Sierpień"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Wrzesień"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Październik"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Listopad"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Grudzień"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Gru"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Niedziela"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Poniedziałek"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Wtorek"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Środa"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Czwartek"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Piątek"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Nie"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Wto"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Śro"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Czw"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pią"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sob"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Ty"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "kalendarz-miesiąc-rok"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "brak"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Godzina"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekunda"
@@ -2380,16 +2374,16 @@ msgstr ""
"Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono "
"\"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "na sekundę"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "na minutę"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "na godzinę"
@@ -2521,15 +2515,15 @@ msgstr ""
msgid "Databases"
msgstr "Bazy danych"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serwer"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2541,20 +2535,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Wstaw"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacje"
@@ -2612,12 +2606,12 @@ msgstr "Użytkownicy"
msgid "Synchronize"
msgstr "Synchronizacja"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Dziennik binarny"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Zmienne"
@@ -2634,8 +2628,9 @@ msgid "Engines"
msgstr "Mechanizmy"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Błąd"
@@ -2754,36 +2749,36 @@ msgstr ""
"Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po "
"odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Podgląd niedostępny."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "weź to"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Nie znaleziono domyślnego motywu graficznego %s!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Motywu %s nie znaleziono!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nie znaleziono ścieżki do motywu %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Motyw"
@@ -2838,16 +2833,16 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 "
"do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - "
@@ -3146,8 +3141,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz "
"użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną."
@@ -3252,7 +3247,7 @@ msgstr "współdzielone"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabele"
@@ -3303,11 +3298,11 @@ msgstr "można wykorzystać"
msgid "numeric key detected"
msgstr "wykryty klawisz numeryczny"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Nie można odczytać pliku konfiguracyjnego"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3315,12 +3310,12 @@ msgstr ""
"To zazwyczaj oznacza, że jest błąd składni w tym, sprawdź wszelkie błędy "
"poniżej."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nie można załadować domyślnej konfiguracji z: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3328,22 +3323,22 @@ msgstr ""
"Dyrektywa $cfg['PmaAbsoluteUri'] MUSI być ustawiona w pliku "
"konfiguracyjnym!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Niewłaściwy indeks serwera: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Należy uaktualnić do %s %s lub nowszej."
@@ -3378,8 +3373,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "ang."
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Zapytanie SQL"
@@ -3417,7 +3412,7 @@ msgid "Create PHP Code"
msgstr "Utwórz kod PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Odśwież"
@@ -3438,95 +3433,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "W linii"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilowanie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Nie"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Brakuje parametru:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Początek"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Poprzednie"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Następne"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Przejście do bazy danych "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Kliknij, aby przełączać"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Wyszukaj w komputerze:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Wybierz katalog serwera WWW dla uploadu %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Brak plików do wysłania"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Wykonaj"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Drukuj"
@@ -3698,9 +3693,9 @@ msgstr "Przywróć wartość domyślną"
msgid "Allow users to customize this value"
msgstr "Zezwól użytkownikom na zmianę tej wartości"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Resetuj"
@@ -3865,7 +3860,7 @@ msgid "Compress on the fly"
msgstr "Kompresuj w locie"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Plik konfiguracyjny"
@@ -3925,7 +3920,7 @@ msgstr "Ukryj działania struktury tabeli"
msgid "Show binary contents as HEX by default"
msgstr "Pokaż binarne treści jako HEX domyślnie"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Pokaż binarne treści jako HEX"
@@ -5517,8 +5512,8 @@ msgstr "Szczegółowa nazwa serwera"
#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie "
-"(wiersze)\";"
+"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)"
+"\";"
#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
@@ -5842,7 +5837,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Włącz zakładkę Developerską w ustawieniach"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Sprawdź, czy jest nowsza wersja"
@@ -5989,7 +5984,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP."
msgid "possible deep recursion attack"
msgstr "możliwy głęboki atak rekurencji"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5997,19 +5992,19 @@ msgstr ""
"Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo "
"skonfigurowane)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Serwer nie odpowiada."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Szczegóły..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6171,13 +6166,13 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu "
"można używać wartości czsu formatowania. Dodatkowo po transformacji stanie "
-"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w "
-"%4$sFAQ%5$s."
+"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w %4"
+"$sFAQ%5$s."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6366,48 +6361,55 @@ msgstr "Opcje formatu:"
msgid "Language"
msgstr "Język"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Zapisz edytowane dane"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Przywrócić porządek w kolumnie"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Początek wiersza"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Liczba wierszy"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Tryb"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "poziomo"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "poziomo (obrócone nagłówki)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "pionowo"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Nagłówki co %s wierszy"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Browse"
+msgid "rows"
+msgstr "Przeglądaj"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sortuj wg klucza"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6425,89 +6427,89 @@ msgstr "Sortuj wg klucza"
msgid "Options"
msgstr "Opcje"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Częściowe teksty"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Pełne teksty"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Klucz relacyjny"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relacje wyświetlania kolumn"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Pokaż binarne treści"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Pokaż zawartość BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Ukryj transformacje przeglądarki"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Znany tekst"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Znane binarne"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Wiersz został usunięty"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Zabij"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "w zapytaniu"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Pokaż wiersze"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "wszystkich"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operacja na wynikach zapytania"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Podgląd wydruku (z pełnymi tekstami)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Wyświetlanie wykresu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Wizualizacja danych GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Utwórz widok"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Łącze nie znalezione"
@@ -6555,7 +6557,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Rezerwy buforowe"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Status InnoDB"
@@ -6849,8 +6851,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie "
"domowej PrimeBase XT%s."
@@ -6973,12 +6975,12 @@ msgstr "Wyświetl typy MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Czas wygenerowania"
@@ -7198,8 +7200,8 @@ msgstr "Nie znaleziono danych do wizualizacji GIS."
msgid "GLOBALS overwrite attempt"
msgstr "Próba nadpisania GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL zwrócił pusty wynik (zero wierszy)."
@@ -7374,6 +7376,98 @@ msgstr "Tryb zgodności SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nie używaj AUTO_INCREMENT dla wartości zerowych"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcja"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Ukryj"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binarne"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Ze względu na jego długość, kolumna ta może nie być edytowalne"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binarne - nie do edycji"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "katalog przesyłania serwera web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Edycja/Wstaw"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Kontynuuj wstawianie %s wierszy"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "i potem"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Wstaw jako nowy wiersz"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Wstaw jko nowy wiersz i ignoruj błędy"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Pokaż wstawiane zapytanie"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Wróć"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Wstaw nowy wiersz"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Powrót do tej strony"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Edytuj następny wiersz"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do "
+"poruszania się w dowolnym miejscu"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Wartość"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Wyświetl zapytanie SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Id wstawionego wiersza: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7384,32 +7478,32 @@ msgstr "Brak"
msgid "Convert to Kana"
msgstr "Konwersja do Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Od"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Do"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Wyślij"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Dodaj prefiks tabeli"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Dodaj prefiks"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Czy na pewno chcesz wykonać następującą kwerendę?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Bez zmian"
@@ -7417,11 +7511,6 @@ msgstr "Bez zmian"
msgid "Charset"
msgstr "Kodowanie znaków"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binarne"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bułgarski"
@@ -7755,18 +7844,10 @@ msgid "Slave status"
msgstr "Stan serwera podrzędnego"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Zmienna"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Wartość"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID serwera"
@@ -8096,11 +8177,6 @@ msgstr "Wykonaj procedurę"
msgid "Routine parameters"
msgstr "Parametry procedury"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcja"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Przepraszamy, nie udało nam się przywrócić upuszczonego wyzwalacza."
@@ -8422,7 +8498,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Wyczyść"
@@ -8430,11 +8506,11 @@ msgstr "Wyczyść"
msgid "Columns"
msgstr "Kolumny"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Pamiętaj zapytanie SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Niech każdy użytkownik ma dostęp do tej zakładki"
@@ -8458,10 +8534,6 @@ msgstr "Pokaż to zapytanie tutaj ponownie"
msgid "View only"
msgstr "Pokaż tylko"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "katalog przesyłania serwera web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8533,8 +8605,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
-"%sdokumentacji%s."
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
+"sdokumentacji%s."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -8578,8 +8650,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
-"%sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
+"sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
@@ -8661,10 +8733,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Tabela szukania"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Edycja/Wstaw"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8881,7 +8949,7 @@ msgstr "Wersja protokołu"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Użytkownik"
@@ -9015,8 +9083,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
-"%s."
+"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
+"s."
#: navigation.php:175 server_databases.php:311 server_synchronize.php:1465
msgid "No databases"
@@ -9105,10 +9173,6 @@ msgstr "Ukryj/pokaż wszystko"
msgid "Hide/Show Tables with no relation"
msgstr "Ukryj/pokaż tabele bez relacji"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Ukryj"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Liczba tabel"
@@ -9302,17 +9366,17 @@ msgstr "Plik nie istnieje"
msgid "Select binary log to view"
msgstr "Wybierz dziennik binarny do podglądu"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Pliki"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Ucinaj wyświetlane zapytania"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Pokaż pełne zapytania"
@@ -9752,8 +9816,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@@ -9878,7 +9942,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Pokaż stan serwera głównego"
@@ -10027,12 +10091,12 @@ msgstr ""
"Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy "
"chcesz go skonfigurować ?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Wątek %s został pomyślnie zabity."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10040,115 +10104,115 @@ msgstr ""
"phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już "
"zamknięty."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Obsługa"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Pamięć podręczna zapytań"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Wątki"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dane tymczasowe"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Opóźnione dodania"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Bufor klucza"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Złączenia"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortowanie"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordynator transakcji"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Przeładuj (zamknij) wszystkie tabele"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Pokaż otwarte tabele"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Pokaż podrzędne hosty"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Status serwera podrzędnego"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Opróżnij bufor podręczny zapytań"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informacje o działaniu serwera"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Wszystkie zmienne stanu"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Monitor"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Doradca"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Częstotliwość odświeżania: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtry"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Zawierające słowo:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Pokaż tylko wartości alarmowe"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "&Filtruj wg kategorii..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Pokaż niesformatowane wartości"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Powiązane linki:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Analizuj"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instrukcje"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10156,7 +10220,7 @@ msgstr ""
"System Doradcy może dostarczyć zalecenia dotyczące zmiennych serwera poprzez "
"analizę zmiennych stanu serwera."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10166,7 +10230,7 @@ msgstr ""
"obliczeniach i zasadach, które nie mogą mieć obowiązkowego zastosowania do "
"systemu."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10176,7 +10240,7 @@ msgstr ""
"(poprzez czytanie dokumentacji) i jak cofnąć zmiany. Złe ustawienia mogą "
"mieć bardzo negatywny wpływ na wydajność."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10187,31 +10251,31 @@ msgstr ""
"zmianę, gdyby nie było jednoznacznego wymiernego postępu."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Pytania od uruchomienia: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Oświadczenia"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Ruch sieciowy od uruchomienia: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ten serwer MySQL działa już od: %1$s. Uruchomiony został o: %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10219,19 +10283,19 @@ msgstr ""
"Ten serwer MySQL jest ustawiony jako główny i podrzędny w "
"procesie replikacji."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Ten serwer MySQL jest ustawiony jako master i slave w procesie "
"replikacji."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Ten serwer MySQL jest pracuje jako główny i podrzędny w "
"procesie replikacji."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10239,11 +10303,11 @@ msgstr ""
"Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Stan replikacji"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10251,35 +10315,35 @@ msgstr ""
"Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki "
"jakich dostarcza serwer MySQL nie są wiarygodne."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Otrzymane"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Wysłane"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "maks. równoczesnych połączeń"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Nieudane próby"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Przerwane"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Polecenie"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10287,11 +10351,11 @@ msgstr ""
"Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez "
"poprawnego zamykania połączenia."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10301,18 +10365,18 @@ msgstr ""
"binarnego, które przekroczyły wartość binlog_cache_size i do zapisania "
"instrukcji transakcji został użyty plik tymczasowy."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10324,11 +10388,11 @@ msgstr ""
"zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w "
"pamięci, a nie na dysku."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Ile plików tymczasowych utworzył mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10336,7 +10400,7 @@ msgstr ""
"Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer "
"podczas wykonywania instrukcji."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10344,7 +10408,7 @@ msgstr ""
"Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił "
"jakiś błąd (prawdopodobnie zdublowany klucz)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10352,23 +10416,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Liczba wykonanych instrukcji FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Liczba wewnętrznych instrukcji COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Ile razy wiersz został usunięty z tabeli."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10378,7 +10442,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10388,7 +10452,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10396,7 +10460,7 @@ msgstr ""
"Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra "
"oznaka tego, że zapytania i tabele są właściwie zindeksowane."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10406,7 +10470,7 @@ msgstr ""
"jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym "
"przedziale lub przy przeszukiwaniu indeksu."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10414,7 +10478,7 @@ msgstr ""
"Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda "
"używana głównie do optymalizacji ORDER BY … DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10426,7 +10490,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:1337
+#: server_status.php:1340
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 "
@@ -10438,35 +10502,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Liczba wewnętrznych instrukcji ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Liczba żądań zmiany wiersza w tabeli."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Liczba żądań dodania wiersza do tabeli."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Liczba stron zawierających dane (brudnych lub czystych)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Liczba aktualnie brudnych stron."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Liczba wolnych stron."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10476,7 +10540,7 @@ msgstr ""
"odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub "
"usunięte z jakiegoś innego powodu."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10489,11 +10553,11 @@ msgstr ""
"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Całkowita wielkość puli bufora, w stronach."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10502,7 +10566,7 @@ msgstr ""
"Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej "
"kolejności."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10510,11 +10574,11 @@ msgstr ""
"Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. "
"Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10522,7 +10586,7 @@ msgstr ""
"Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i "
"musiał wykonać odczyt pojedynczej strony."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10536,51 +10600,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Liczba wykonanych zapisów do puli bufora InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Liczba dotąd wykonanych operacji fsync()."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Aktualna liczba operacji fsync() w toku."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Aktualna liczba odczytów w toku."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Aktualna liczba zapisów w toku."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Ilość dotąd odczytanych danych, w bajtach."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Łączna liczba odczytów danych."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Łączna liczba zapisów danych."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Ilość dotąd zapisanych danych, w bajtach."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "Liczba przeprowadzonych zapisów typu doublewrite."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Liczba stron zapisanych przy zapisie typu doublewrite."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10588,35 +10652,35 @@ msgstr ""
"Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy "
"oczekiwano na jego opróżnienie."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Liczba żądań zapisów do dziennika."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Liczba fizycznych zapisów do pliku dziennika."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Liczba synchronicznych zapisów do pliku dziennika."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Liczba wywołań fsync dla pliku dziennika w toku."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Liczba zapisów do pliku dziennika w toku."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Liczba bajtów zapisanych do pliku dziennika."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Liczba utworzonych stron."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10625,51 +10689,51 @@ msgstr ""
"mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą "
"konwersję na bajty."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Liczba odczytanych stron."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Liczba zapisanych stron."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Liczba blokad wiersza na które aktualnie się czeka."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Średni czas uzyskania blokady wiersza, w milisekundach."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Ile razy czekano na blokadę wiersza."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Liczba wierszy usuniętych z tabel InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Liczba wierszy dodanych do tabel InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Liczba wierszy odczytanych z tabel InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Liczba wierszy zmienionych w tabelach InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10678,7 +10742,7 @@ msgstr ""
"jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10686,7 +10750,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:1386
+#: server_status.php:1389
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 "
@@ -10695,15 +10759,15 @@ 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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10714,7 +10778,7 @@ msgstr ""
"Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/"
"Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10722,21 +10786,21 @@ msgstr ""
"Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego "
"odczytu do żądania odczytu (obliczona wartość)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10747,7 +10811,7 @@ msgstr ""
"kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda "
"została opracowana jeszcze."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10755,11 +10819,11 @@ msgstr ""
"Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer "
"został uruchomiony."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10767,20 +10831,20 @@ 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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Liczba otwartych plików."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Liczba otwartych tabel."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10790,19 +10854,19 @@ msgstr ""
"na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie "
"polecenie FLUSH CACHE QUERY."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Liczba trafień pamięci podręcznej."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Liczba zapytań dodanych do pamięci podręcznej."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10815,7 +10879,7 @@ msgstr ""
"bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany"
"\" (least recently used - LRU)."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10823,19 +10887,19 @@ msgstr ""
"Liczba niezbuforowanych zapytań (nie dających się zbuforować lub "
"niezbuforowanych z powodu ustawienia query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Całkowita liczba bloków w buforze podręcznym zapytań."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10843,13 +10907,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10858,7 +10922,7 @@ msgstr ""
"dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się "
"indeksom tabel.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10866,16 +10930,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10883,26 +10947,26 @@ msgstr ""
"Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał "
"transakcje."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10912,23 +10976,23 @@ msgstr ""
"dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej "
"systemowej sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Liczba sortowań wykonanych przy użyciu zakresów."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Liczba posortowanych wierszy."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10940,7 +11004,7 @@ msgstr ""
"się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) "
"lub użyć replikacji."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10950,11 +11014,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Liczba aktualnie otwartych połączeń."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10966,47 +11030,47 @@ msgstr ""
"(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego "
"polepszenia wydajności.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Cache wątku trafień (obliczona wartość)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Liczba nieuśpionych wątków."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Uruchom monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instrukcje/Setup"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Gotowe przestawienie/edycji wykresów"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Dodaj wykres"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "przestawienie/edycji wykresów"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Częstotliwość odświeżania"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Kolumny wykresu"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Układ wykresu"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11014,15 +11078,15 @@ msgstr ""
"Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. "
"Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Przywróć wartość domyślną"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Instrukcje monitora"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11036,7 +11100,7 @@ msgstr ""
"włączone. Należy jednak pamiętać, że general_log produkuje duże ilości "
"danych i zwiększa obciążenie serwera nawet o 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11048,11 +11112,11 @@ msgstr ""
"tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać "
"funkcji wykresów serwera jednak."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Korzystanie z monitora:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11062,7 +11126,7 @@ msgstr ""
"odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania "
"w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11074,11 +11138,11 @@ msgstr ""
"wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można "
"kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Proszę zwrócić uwagę:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11091,80 +11155,80 @@ msgstr ""
"wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest "
"wymagane."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Ustawiony wykres"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Zmienna statusu(ów)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Wybierz serię:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Najczęściej monitorowany"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "lub wpisz nazwę zmiennej:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Wyświetl jako wartości różnicy"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Zastosuj dzielnik"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Dołącz urządzenia do wartości danych"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Dodaj tę serię"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Wyczyść serie"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Seria na wykresie:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Statystyki Log"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Wybrany zakres czasu:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
"Wybierz z którego dziennika chcesz statystyki które mają być generowane."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Wyniki są pogrupowane według zapytania tekstu."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analizuj zapytanie"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -11172,7 +11236,7 @@ msgstr[0] "%d sekunda"
msgstr[1] "%d sekund"
msgstr[2] "%d sekundę"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11308,7 +11372,7 @@ msgstr "Wartość sesji"
msgid "Global value"
msgstr "Wartość globalna"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Ściągnij"
@@ -11382,39 +11446,39 @@ msgstr "Nie ma skonfigurowanych serwerów"
msgid "New server"
msgstr "Nowy serwer"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Domyślny język"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "pozwalają użytkownikowi wybrać"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- brak -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Domyślny serwer"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Koniec linii"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Pokaż"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Załaduj"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Strona główna phpMyAdmina"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Przekaż darowiznę"
@@ -11567,8 +11631,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"W przypadku korzystania z uwierzytelniania cookie i przechowywać "
-"%sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania "
+"W przypadku korzystania z uwierzytelniania cookie i przechowywać %"
+"sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania "
"muszą być ustawione na wartość mniejsza lub równa jej."
#: setup/lib/index.lib.php:310
@@ -11641,51 +11705,42 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne."
msgid "Wrong data"
msgstr "Nieprawidłowe dane"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Przeglądaj zewnętrzne wartości"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Czy na pewno chcesz wywołać tę kwerendę?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Id wstawionego wiersza: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Pokaż jako kod PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Wyświetl zapytanie SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Weryfikacje SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Wynik SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Wygenerowany przez"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nazwa"
@@ -11698,58 +11753,6 @@ msgstr "Tabela %1$s została pomyślnie zmodyfikowana"
msgid "The columns have been moved successfully."
msgstr "Kolumny przeniesiono pomyślnie."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Ze względu na jego długość, kolumna ta może nie być edytowalne"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binarne - nie do edycji"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Wstaw jako nowy wiersz"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Wstaw jko nowy wiersz i ignoruj błędy"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Pokaż wstawiane zapytanie"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "i potem"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Wróć"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Wstaw nowy wiersz"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Powrót do tej strony"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Edytuj następny wiersz"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do "
-"poruszania się w dowolnym miejscu"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Kontynuuj wstawianie %s wierszy"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12337,32 +12340,38 @@ msgstr "Śledź te instrukcje manipulowania danymi:"
msgid "Create version"
msgstr "Utwórz wersję"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Wykonaj \"zapytanie wg przykładu\" (symbol wieloznaczny \"%\") dla dwóch "
"różnych kolumn"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Dodatkowe kryteria wyszukiwania"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "W tej kolumnie oznacz każdy punkt"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maksymalna liczba wierszy do wykreślenia"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Przeglądaj/Edytuj punkty"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Jak korzystać"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Resetuj"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Pobierz więcej motywów!"
@@ -12747,8 +12756,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do "
"całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%"
@@ -12904,8 +12913,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna "
"być niższa niż 10%%."
@@ -13452,8 +13461,8 @@ msgstr ""
#, php-format
msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgstr ""
-"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej "
-"1%%"
+"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%"
+"%"
#: libraries/advisory_rules.txt:399
msgid "Rate of aborted connections"
@@ -13668,6 +13677,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert jest ustawiony na 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Użyj kółka myszy, aby powiększyć lub pomniejszyć jego akcji."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Kliknij i przeciągnij myszą, aby poruszać się po powierzchni."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Ciągi są konwertowane na liczbę całkowitą dla wykreślania"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
diff --git a/po/pt.po b/po/pt.po
index 44c5e6042a..13a22959f0 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:05+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: portuguese \n"
-"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostrar tudo"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostrar tudo"
msgid "Page number:"
msgstr "Número da página:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"fechado a janela que a originou, ou as configurações de segurança do seu "
"browser encontram-se definidas para não permitir actualizações entre janelas."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Pesquisar"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Pesquisar"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executar"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nome do Índice"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descrição"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Usar este valor"
@@ -122,12 +122,12 @@ msgstr "Comentários da tabela"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Coluna"
@@ -136,6 +136,7 @@ msgstr "Coluna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Coluna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -153,12 +154,12 @@ msgstr "Tipo"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulo"
@@ -197,13 +198,13 @@ msgstr "Comentários"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Não"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Registos"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Mudar para %sConstrutor Gráfico%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordenação"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostrar"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Elim"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ou"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s resultado na tabela %2$s"
msgstr[1] "%1$s resultados na tabela %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Procurar"
@@ -530,14 +531,14 @@ msgstr "Procurar"
msgid "Delete the matches for the %s table?"
msgstr "Apagar os semelhantes para a %s tabela?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Apagar"
@@ -605,14 +606,14 @@ msgstr "Detecção de Alterações está activa."
msgid "Tracking is not active."
msgstr "Detecção de Alterações está desactivada."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta vista tem número de linhas aproximado. Por favor, consulte a "
-"%sdocumentação%s."
+"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
+"sdocumentação%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -621,7 +622,7 @@ msgstr "Vista"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicação"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o storage engine por defeito neste MySQL server."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Com os seleccionados:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Todos"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Verificar tabelas com overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Vista de impressão"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Limpa"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analizar tabela"
msgid "Add prefix to table"
msgstr "Adicionar prefixo à tabela"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Substituir prefixo da tabela"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copiar tabela com prefixo"
@@ -729,8 +730,8 @@ msgstr "Tabelas em tracking"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Base de Dados"
@@ -748,7 +749,7 @@ msgstr "Actualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Estado"
@@ -848,45 +849,45 @@ msgstr "Usar OpenStreetMaps como camada base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Ponto"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Ponto %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Adicionar um ponto"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Segmento de Reta"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Anel Exterior"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Anel Interior"
@@ -894,15 +895,15 @@ msgstr "Anel Interior"
msgid "Add a linestring"
msgstr "Adicionar um segmento de reta"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Adicionar um anel interior"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polígono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Adicionar um polígono"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@@ -980,7 +981,7 @@ msgstr ""
"Não foi possível carregar os import plugins, por favor verifique a sua "
"instalação!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -1008,7 +1009,7 @@ msgstr ""
"incremente os tempos de limite de php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1025,7 +1026,7 @@ msgstr ""
"O phpMyAdmin torna-se mais agradável se usado num browser que suporte "
"frames."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
@@ -1034,7 +1035,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
msgid "Do you really want to execute \"%s\"?"
msgstr "Você realmente deseja executar \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
@@ -1121,21 +1122,21 @@ msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Edita"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Gráfico de tráfego em direto"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Gráfico de ligações/processo ao vivo"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Gráfico de comandos em directo"
@@ -1146,23 +1147,23 @@ msgstr "Dados estáticos"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Outros"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1182,7 +1183,7 @@ msgstr "Tráfego do servidor (em KiB)"
msgid "Connections since last refresh"
msgstr "Ligações desde a última actualização"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processos"
@@ -1200,7 +1201,7 @@ msgstr "Perguntas desde a ultima actualização"
msgid "Questions (executed statements by the server)"
msgstr "Perguntas (comandos executados pelo servidor)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Estatísticas de comandos"
@@ -1245,14 +1246,14 @@ msgid "System swap"
msgstr "Swap do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1304,32 +1305,32 @@ msgstr "Bytes enviados"
msgid "Bytes received"
msgstr "Bytes recebidos"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Ligações"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1343,11 +1344,11 @@ msgstr "%d tabela(s)"
msgid "Questions"
msgstr "Perguntas"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tráfego"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Configurações"
@@ -1368,10 +1369,10 @@ msgid "Please add at least one variable to the series"
msgstr "Por favor adicione pelo menos uma variável à serie"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nenhum"
@@ -1471,7 +1472,7 @@ msgstr "Modificar configurações"
msgid "Current settings"
msgstr "Configurações atuais"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Titulo do gráfico"
@@ -1556,9 +1557,9 @@ msgstr "Em análise..."
msgid "Explain output"
msgstr "Explicar SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tempo"
@@ -1657,7 +1658,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importar"
@@ -1777,15 +1778,15 @@ msgstr "Esconder índices"
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Ativado)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Desativado)"
@@ -1852,7 +1853,7 @@ msgstr "Mostrar Caixa do query"
msgid "No rows selected"
msgstr "Nenhum registo(linha) seleccionado."
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Muda"
@@ -1861,17 +1862,18 @@ msgstr "Muda"
msgid "Query execution time"
msgstr "Tempo de execução da consulta"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Guarda"
@@ -1896,78 +1898,70 @@ msgid "Hovering over a point will show its label."
msgstr "Colocar o cursor por cima de um ponto irá mostrar a sua legenda."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Use a roda do rato para ampliar ou reduzir a imagem no plano."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Clique e arraste com o rato para navegar no mapa."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Clique no link \"Reset Zoom\" para voltar ao estado original."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Clique num ponto de dados para ver e possivelmente editar a linha de dados."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"O plano pode ser redimensionado arrastando-o ao longo do canto inferior "
"direito."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "As 'Strings' serão convertidas em inteiros por mapeamento"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Seleccione duas colunas"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Seleccione duas colunas diferentes"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Resultado(s) das(s) consulta(s)"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Conteúdo do ponto de dados"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignora"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copiar"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Adicionar colunas"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Seleccione chave de referencia"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Seleccione Foreign Key"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Por favor seleccione a chave primária ou a chave única"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Escolha a coluna para mostrar"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1975,15 +1969,15 @@ msgstr ""
"Não salvou as mudanças no layout. Estas serão perdidas se não as guardar. "
"Deseja continuar?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Adicionar uma opção para a coluna "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Carregue em ESC para cancelar a edição"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1991,27 +1985,27 @@ msgstr ""
"Editou alguns dados e estes não foram salvos. Tem certeza que quer sair "
"desta página antes de salvar os seus dados?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Arraste para re-ordenar"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Clique para organizar"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Clique para marcar/desmarcar"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Clique na seta para alternar a visibilidade da coluna"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2020,45 +2014,45 @@ msgstr ""
"edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não "
"funcionar depois de guardar."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Também pode editar algumas colunas clicando directamente no seu conteúdo."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ir para a hiperligação"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copiar nome da coluna"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Mostrar registo(s)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Gerar palavra-passe"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Gerar"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Alterar a palavra-passe"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mais"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2068,266 +2062,266 @@ msgstr ""
"actualização. A nova versão é %s, e foi lançada em %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", última versão estável:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "até à data"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Concluído"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Ant"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Próx"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hoje"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Janeiro"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Fevereiro"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Março"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Abril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Junho"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Julho"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agosto"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Setembro"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Outubro"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembro"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Segunda"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Terça"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Quarta"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Quinta"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Sexta"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Domingo"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sáb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "Calendário-mês-ano"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Nenhum"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Segundo"
@@ -2381,16 +2375,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "por segundo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "por minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "por hora"
@@ -2524,15 +2518,15 @@ msgstr ""
msgid "Databases"
msgstr "Base de Dados"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2544,20 +2538,20 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Insere"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operações"
@@ -2618,13 +2612,13 @@ msgstr "Utilizador"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binário "
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variáveis"
@@ -2641,8 +2635,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erro"
@@ -2763,35 +2758,35 @@ msgstr ""
"serão constantes quando recarregar esta página. Favor verifique se a "
"estrutura da tabela foi alterada."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Encontrado caminho inválido para imagens do tema %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nenhuma pré-visualização disponível."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "seleccionar"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema padrão %s não encontrado!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s não encontrado!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Encontrado caminho inválido para o tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2832,14 +2827,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3099,11 +3094,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
-"%2$s pode ser utilizado para criar um."
+"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
+"2$s pode ser utilizado para criar um."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3209,7 +3204,7 @@ msgstr "compartilhado"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabelas"
@@ -3260,11 +3255,11 @@ msgstr "possível 'exploit'"
msgid "numeric key detected"
msgstr "Tecla numérica detectada"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Falhou ao ler o arquivo de configuração"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3272,12 +3267,12 @@ msgstr ""
"Isto geralmente significa que há um erro de sintaxe, por favor verifique "
"qualquer erro mostrado abaixo."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3289,23 +3284,23 @@ msgstr ""
"A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no "
"ficheiro de configuração!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique as suas "
"configurações."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticação definido nas configurações inválido:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "deve actualizar para %s %s ou mais recente."
@@ -3340,8 +3335,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Comando SQL"
@@ -3379,7 +3374,7 @@ msgid "Create PHP Code"
msgstr "Criar código PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Actualizar"
@@ -3400,95 +3395,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d-%B-%Y às %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parâmetros em falta:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Seguinte"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Saltar para a Base de Dados "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Selecionar a partir da directoria de upload do servidor %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Não existem arquivos para fazer upload"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimir"
@@ -3665,9 +3660,9 @@ msgstr "Restaurar valor padrão"
msgid "Allow users to customize this value"
msgstr "Permitir a todos os utilizadores alterarem este valor"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Limpa"
@@ -3831,7 +3826,7 @@ msgid "Compress on the fly"
msgstr "Comprimir na hora"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Ficheiro de configuração"
@@ -3893,7 +3888,7 @@ msgstr "Propor uma estrutura de tabela"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar conteúdo binário como HEX por padrão"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostrar conteúdo binário como HEX"
@@ -5734,7 +5729,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5872,25 +5867,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6073,8 +6068,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6270,55 +6265,58 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Adicionar/Remover Campos"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
msgid "Start row"
msgstr "Estado"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "Número de registos por página"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Seg"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabeçalhos rodados)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Visualizar"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ordenar por chave"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6337,101 +6335,101 @@ msgstr "Ordenar por chave"
msgid "Options"
msgstr "Operações"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Texto parcial"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Texto inteiro"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Esquema relacional"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Esquema relacional"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Transformação do navegador"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Registo eliminado"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Termina"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "na pesquisa"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrando registos"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "O Query demorou %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Vista de impressão (com texto inteiro)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Mostrar o esquema de PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Versão do servidor"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link não encontrado"
@@ -6477,7 +6475,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Estado da InnoDB"
@@ -6729,8 +6727,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6879,12 +6877,12 @@ msgstr "MIME-types disponíveis"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Máquina"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Data de Criação"
@@ -7095,8 +7093,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
@@ -7261,6 +7259,102 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funções"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Esconder"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binário"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Devido ao seu tamanho, este campo pode não ser editável "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binário - não editar"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Directoria no servidor web para fazer upload"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Insere"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Insere como novo registo"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Voltar atrás"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Inserir novo registo"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "Voltar atrás"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Editar próxima coluna"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valor"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+#, fuzzy
+msgid "Showing SQL query"
+msgstr "Mostrar queries completos"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7273,36 +7367,36 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Sex"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submete"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Confirma : "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Sem alterações"
@@ -7310,11 +7404,6 @@ msgstr "Sem alterações"
msgid "Charset"
msgstr "Mapa de Caractere"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binário"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Búlgaro"
@@ -7649,18 +7738,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variável"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valor"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8006,11 +8087,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funções"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8373,7 +8449,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Executa comando(s) SQL na base de dados %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8383,11 +8459,11 @@ msgstr ""
msgid "Columns"
msgstr "Nome dos Campos"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Marcar este comando SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Deixar todos os utilizadores acederem a este marcador"
@@ -8411,10 +8487,6 @@ msgstr "Mostrar de novo aqui este comando"
msgid "View only"
msgstr "Ver apenas"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Directoria no servidor web para fazer upload"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8626,12 +8698,6 @@ msgstr "Operações"
msgid "Table Search"
msgstr "Pesquisar"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Insere"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8823,7 +8889,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Utilizador"
@@ -9046,10 +9112,6 @@ msgstr "Mostrar tudo"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Esconder"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9265,18 +9327,18 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Qtd Campos"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Truncar os Queries mostrados"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostrar queries completos"
@@ -9727,8 +9789,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
@@ -9853,7 +9915,7 @@ msgstr "O privilégios foram recarregados com sucesso."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9993,161 +10055,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Tipo de Query"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Instrucções de inserção múltiplas"
-#: server_status.php:608
+#: server_status.php:611
#, fuzzy
msgid "Key cache"
msgstr "Tipo de Query"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Mostra tabelas"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informação de Runtime"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
msgid "Refresh rate: "
msgstr "Gerado por"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Qtd Campos"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mantendo a palavra-passe "
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Mostra tabelas"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Mostra tabelas"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipo de Query"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funções"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10155,118 +10217,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Itens"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Relações"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Recebido"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Enviado"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Tentativas falhadas"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Comando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10274,78 +10336,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10353,7 +10415,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10361,42 +10423,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10404,33 +10466,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10439,243 +10501,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Configurar o Mapa de Caracteres do ficheiro:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10683,99 +10745,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10783,18 +10845,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10802,68 +10864,68 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Detecção de Alterações está desactivada."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
msgid "Start Monitor"
msgstr "Estado"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "Adiciona novo campo"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Gerado por"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adicionar/Remover Campos"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10872,7 +10934,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10880,18 +10942,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10899,11 +10961,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10911,90 +10973,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Remover a Base de Dados"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Seleccionar Tabelas"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Acrescenta um utilizador"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "Comando SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Estatísticas dos registos"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Seleccionar Tabelas"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo de Query"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11002,7 +11064,7 @@ msgid_plural "%d seconds"
msgstr[0] "por segundo"
msgstr[1] "por segundo"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11139,7 +11201,7 @@ msgstr "Valor de sessão"
msgid "Global value"
msgstr "Valor Global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11203,41 +11265,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentação do phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Dados"
@@ -11428,56 +11490,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Sem bases de dados"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Confirma : "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-#, fuzzy
-msgid "Showing SQL query"
-msgstr "Mostrar queries completos"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validar SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Resultado SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Gerado por"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiqueta"
@@ -11492,59 +11544,6 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso."
msgid "The columns have been moved successfully."
msgstr "Os utilizadores selecionado foram apagados com sucesso."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Devido ao seu tamanho, este campo pode não ser editável "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binário - não editar"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Insere como novo registo"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Voltar atrás"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Inserir novo registo"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "Voltar atrás"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Editar próxima coluna"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12188,35 +12187,41 @@ msgstr ""
msgid "Create version"
msgstr "Criar versão"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Esconder critérios de buca"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "versão do PHP"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Limpa"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Obter mais temas!"
@@ -12585,8 +12590,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12715,8 +12720,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13387,6 +13392,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está definida com o valor 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Use a roda do rato para ampliar ou reduzir a imagem no plano."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Clique e arraste com o rato para navegar no mapa."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "As 'Strings' serão convertidas em inteiros por mapeamento"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13566,9 +13580,6 @@ msgstr "concurrent_insert está definida com o valor 0"
#~ msgid "Export of event \"%s\""
#~ msgstr "Tipo de Exportação"
-#~ msgid "rows"
-#~ msgstr "Visualizar"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "registos começando em"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 3dd66e8e7f..22b95a923b 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-23 10:36+0200\n"
"Last-Translator: Sebastiao Rocha \n"
"Language-Team: brazilian_portuguese \n"
-"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Mostrar tudo"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Mostrar tudo"
msgid "Page number:"
msgstr "Número da página:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Procurar"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Procurar"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Executar"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nome chave"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descrição"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Usar este valor"
@@ -122,12 +122,12 @@ msgstr "Comentários da tabela"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Coluna"
@@ -136,6 +136,7 @@ msgstr "Coluna"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Coluna"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tipo"
@@ -153,12 +154,12 @@ msgstr "Tipo"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulo"
@@ -197,13 +198,13 @@ msgstr "Comentários"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Não"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Registros"
@@ -408,28 +409,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Alterar para %sconstrutor visual%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Ordenar"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descendente"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Mostrar"
@@ -450,8 +451,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ou"
@@ -520,8 +521,8 @@ msgstr[0] "%1$s resultado dentro da tabela %2$s"
msgstr[1] "%1$s resultados dentro da tabela %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Visualizar"
@@ -530,14 +531,14 @@ msgstr "Visualizar"
msgid "Delete the matches for the %s table?"
msgstr "Excluir correspondentes para a tabela %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Remover"
@@ -605,14 +606,14 @@ msgstr "Rastreamento está ativo."
msgid "Tracking is not active."
msgstr "Rastreamento não está ativo."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
-"%sdocumentação%s."
+"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
+"sdocumentação%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -621,7 +622,7 @@ msgstr "Visão"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicação"
@@ -635,20 +636,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Com marcados:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -660,27 +661,27 @@ msgstr "Verificar sobre-carga"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Visualização para impressão"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Limpar"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -706,11 +707,11 @@ msgstr "Analizar tabela"
msgid "Add prefix to table"
msgstr "Adicionar prefixo à tabela"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Substituir prefixo da tabela"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copiar tabela com o prefixo"
@@ -729,8 +730,8 @@ msgstr "Tabelas rastreadas"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Banco de Dados"
@@ -748,7 +749,7 @@ msgstr "Atualizado"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -848,45 +849,45 @@ msgstr "Use OpenStreetMaps como base"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Ponto"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Ponto %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Adicione um ponto"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linha"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Anel Externo"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Anel interno"
@@ -894,15 +895,15 @@ msgstr "Anel interno"
msgid "Add a linestring"
msgstr "Adicionar uma linha"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Adicionar um anel interno"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polígono"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Adicionar polígono"
@@ -925,8 +926,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -977,7 +978,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Não foi possível carregar os plugins, verifique sua instalação!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Marcador %s criado"
@@ -1005,7 +1006,7 @@ msgstr ""
"aumente o tempo limite do PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1021,7 +1022,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin é mais amigável com um navegador capaz de exibir frames."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "O comando \"DROP DATABASE\" está desabilitado."
@@ -1030,7 +1031,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado."
msgid "Do you really want to execute \"%s\"?"
msgstr "Você realmente deseja executar \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Você está prestes à DESTRUIR um banco de dados completo!"
@@ -1116,21 +1117,21 @@ msgstr "Fechar"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editar"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Gráfico de tráfego em tempo real"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Quadro conn./process em tempo real"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Gráfico de consulta em tempo real"
@@ -1141,23 +1142,23 @@ msgstr "Dado(s) estático(s)"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Outro"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1177,7 +1178,7 @@ msgstr "Tráfego do Servidor (em KiB)"
msgid "Connections since last refresh"
msgstr "Conexões desde a última atualização"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processos"
@@ -1195,7 +1196,7 @@ msgstr "Requisições desde a última atualização"
msgid "Questions (executed statements by the server)"
msgstr "Requisições (Declarações executadas pelo servidor)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Estatísticas de Consultas"
@@ -1240,14 +1241,14 @@ msgid "System swap"
msgstr "Área de Troca (Swap) do sistema"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1299,32 +1300,32 @@ msgstr "Bytes enviados"
msgid "Bytes received"
msgstr "Bytes Recebidos"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Conexões"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1338,11 +1339,11 @@ msgstr "%d tabela(s)"
msgid "Questions"
msgstr "Requisições"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Tráfego"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Configurações"
@@ -1369,10 +1370,10 @@ msgid "Please add at least one variable to the series"
msgstr "Por favor adicione no mínimo uma variável à série"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nenhum"
@@ -1476,7 +1477,7 @@ msgstr "Configurações atuais"
# The word "chart" in brasilian portuguese can mean either "Table = tabela" or
# "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it
# depends of the context.
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Título do Relatório/Gráfico ou Tabela"
@@ -1559,9 +1560,9 @@ msgstr "Analisando..."
msgid "Explain output"
msgstr "Demonstrar saída"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tempo"
@@ -1660,7 +1661,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importar"
@@ -1782,15 +1783,15 @@ msgstr "Ocultar índices"
msgid "Show indexes"
msgstr "Mostrar índices"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Verificação de chave estrangeira:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Habilitado)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Desabilitado)"
@@ -1858,7 +1859,7 @@ msgstr "Mostrar caixa de consulta"
msgid "No rows selected"
msgstr "Nenhum registro selecionado"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Alterar"
@@ -1867,17 +1868,18 @@ msgstr "Alterar"
msgid "Query execution time"
msgstr "Tempo de execução da busca"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d não é um número de linha válido."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Salvar"
@@ -1902,78 +1904,70 @@ msgid "Hovering over a point will show its label."
msgstr "Mover o mouse sobre um ponto mostrará seu rótulo."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Use a roda do mouse para ampliação ou redução do plano"
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Clique e arraste com o mouse para navegar no mapa"
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Clique no link resetar zoom para voltar ao estado original"
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Clique em um ponto de dados para ver e possivelmente editar a linha de dados."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"O plano pode ser redimensionado arrastando-o ao longo do canto inferior "
"direito."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Strings serão convertidos em inteiros por planejamento"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Selecione duas colunas"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Selecione duas colunas diferentes"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Resultado(s) da(s) consulta(s)"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Conteúdo do ponteiro de dados"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorar"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copiar"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Adicionar colunas"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Seleciona chave referenciada"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Selecionar Chave Estrangeira"
-#: js/messages.php:343
+#: js/messages.php:339
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:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Marque a coluna para exibir"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1981,15 +1975,15 @@ 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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Adicionar uma opção para a coluna "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Pressione esc para cancelar a edição"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1997,27 +1991,27 @@ msgstr ""
"Você editou alguns dados e estes não foram salvos. Você tem certeza que quer "
"sair desta pagina antes de salvar os dados?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Arraste para reordenar"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Clique para organizar"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Clique para marcar/desmarcar"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Clique duas vezes para copiar o nome da coluna"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Clique na seta para alternar a visibilidade da coluna"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2026,46 +2020,46 @@ msgstr ""
"Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais após ser "
"salva"
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Você também pode editar algumas colunas clicando diretamente em seu "
"conteúdo"
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Ir para o link"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Copiar nome coluna"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Mostrar linha(s)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Gerar senha"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Gerar"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Alterar senha"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mais"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2075,266 +2069,266 @@ msgstr ""
"atualização. A nova versão é %s, lançada em %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ". última versão estável:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "até à data"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Concluído"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Hoje"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Janeiro"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Fevereiro"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Março"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Abril"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maio"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Junho"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Julho"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Agosto"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Setembro"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Outubro"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Novembro"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Dezembro"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Domingo"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Segunda"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Terça"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Quarta"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Quinta"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Sexta"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sábado"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Sem"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendário-mês-ano"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Sufixo de ano"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hora"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuto"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Segundo"
@@ -2388,16 +2382,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "por segundo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "por minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "por hora"
@@ -2532,15 +2526,15 @@ msgstr ""
msgid "Databases"
msgstr "Banco de Dados"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Servidor"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2552,20 +2546,20 @@ msgid "Structure"
msgstr "Estrutura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserir"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operações"
@@ -2625,12 +2619,12 @@ msgstr "Usuário"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Log binário"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variáveis"
@@ -2647,8 +2641,9 @@ msgid "Engines"
msgstr "Engines"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Erro"
@@ -2768,35 +2763,35 @@ msgstr ""
"constantes depois que você recarregar esta página. Favor cheque se a "
"estrutura da tabela foi alterada."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Encontrado caminho inválido para imagens para o tema %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nenhuma pré-visualização disponível."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "tome"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema padrão %s não encontrado!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s não encontrado!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Encontrado caminho inválido para o tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2837,14 +2832,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3104,8 +3099,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -3211,7 +3206,7 @@ msgstr "compartilhado"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabelas"
@@ -3262,11 +3257,11 @@ msgstr "Possível explorar"
msgid "numeric key detected"
msgstr "Tecla numérica detectada"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Falhou ao ler o arquivo de configuração"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3274,12 +3269,12 @@ msgstr ""
"Isso geralmente significa que há um erro de sintaxe, por favor cheque "
"qualquer erro mostrado abaixo."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3287,22 +3282,22 @@ msgstr ""
"A diretriz$cfg['PmaAbsoluteUri'] deve ser estabelecida no seu "
"arquivo de configuração!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Método de autenticação inválido informado nas configurações:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Você deveria atualizar para %s %s ou posterior."
@@ -3337,8 +3332,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "consulta SQL"
@@ -3376,7 +3371,7 @@ msgid "Create PHP Code"
msgstr "Criar código PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Atualizar"
@@ -3397,96 +3392,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "na linha"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Perfil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d/%m/%Y às %T"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Parâmetros perdidos:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Início"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Próximo"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Fim"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Ir para o Banco de Dados "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Clique para alternar"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Procurar no seu computador:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Não existem arquivos para fazer upload"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Executar"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Imprimir"
@@ -3659,9 +3654,9 @@ msgstr "Restaurar valor padrão"
msgid "Allow users to customize this value"
msgstr "Permitir a todos os usuários alterar esse valor"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Restaurar"
@@ -3824,7 +3819,7 @@ msgid "Compress on the fly"
msgstr "Comprimi na hora"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Arquivo de configuração"
@@ -3886,7 +3881,7 @@ msgstr "Propor estrutura da tabela"
msgid "Show binary contents as HEX by default"
msgstr "Mostrar conteúdo binário como HEX por padrão"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Mostrar conteúdo binário como HEX"
@@ -5475,8 +5470,8 @@ msgstr "Nome completo deste servidor"
#: libraries/config/messages.inc.php:455
msgid "Whether a user should be displayed a "show all (rows)" button"
msgstr ""
-"Quando precisa ser exibido a um usuário o botão "exiba "
-"todas(colunas)""
+"Quando precisa ser exibido a um usuário o botão "exiba todas(colunas)"
+"""
#: libraries/config/messages.inc.php:456
msgid "Allow to display all the rows"
@@ -5571,8 +5566,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
-"Exibe link para saída de "
-"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]"
+"Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]"
+"phpinfo()[/a]"
#: libraries/config/messages.inc.php:475
msgid "Show phpinfo() link"
@@ -5790,7 +5785,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Habilitar aba Desenvolvedor nas configurações"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Verifique a última versão"
@@ -5934,7 +5929,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr "possível ataque de recursão profunda"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5944,20 +5939,20 @@ msgstr ""
"O servidor não está respondendo (ou o soquete do servidor local não está "
"configurado corretamente)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "O servidor não está respondendo."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Por favor verifique os privilégios do diretório que contém o banco de dados."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalhes..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6123,8 +6118,8 @@ msgstr ", @TABLE@ se tornará o nome da tabela"
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@@ -6145,7 +6140,6 @@ msgid "Compression:"
msgstr "Compressão:"
#: libraries/display_export.lib.php:325
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "compactado"
@@ -6258,7 +6252,6 @@ msgstr ""
"upload não estão disponíveis."
#: libraries/display_import.lib.php:178
-#| msgid "Cannot log in to the MySQL server"
msgid "Importing into the current server"
msgstr "Importar para o servidor atual"
@@ -6328,52 +6321,57 @@ msgstr "Opções específicas do formato:"
msgid "Language"
msgstr "Linguagem"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Salvar dados editados"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Restaurar ordem da coluna"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Linha inicial"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Número de linhas"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "Modo"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (cabeçalhos rotacionados)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Cabeçalho a cada %s linhas"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Visualizar"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Ordenar pela chave"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6391,97 +6389,94 @@ msgstr "Ordenar pela chave"
msgid "Options"
msgstr "Opções"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Textos parciais"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Textos completos"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Chave de relação"
-#: libraries/display_tbl.lib.php:785
-#| msgid "Relational schema"
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Exibir coluna relacional"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Mostrar conteúdo binário"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
#, fuzzy
msgid "Show BLOB contents"
msgstr "Exibir conteúdo BLOB"
-#: libraries/display_tbl.lib.php:817
-#| msgid "Browser transformation"
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Ocultar transformações do navegador"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Texto bem conhecido"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Binario bem conhecido"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Registro eliminado"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Matar"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "na consulta"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Mostrando registros"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Consulta levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operações resultantes das consultas"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Ver impressão (com textos completos)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Exibir gráfico"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualisar dados GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
-#| msgid "Create User"
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Criar visualização"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Link não encontrado"
@@ -6531,7 +6526,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Status do InnoDB"
@@ -6799,8 +6794,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6942,12 +6937,12 @@ msgstr "MIME-type disponíveis"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Servidor"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Tempo de Geração"
@@ -7158,8 +7153,8 @@ msgstr "Não foram encontrados dados para a visualização GIS."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou um conjunto vazio (ex. zero registros)."
@@ -7329,6 +7324,102 @@ msgstr "Modo de compatibilidade SQL"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Função"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Ocultar"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binário"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Por causa da sua largura, esse campo pode não ser editável"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binário - não edite"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Servidor web subiu o diretório"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Inserir"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Reiniciar inserção com %s registros"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "e então"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Inserir como um novo registro"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Inserir como uma linha nova e ignorar erros"
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Exibindo consulta SQL"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Retornar"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Inserir novo registro"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Voltar para esta página"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Editar próximo registro"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover "
+"em qualquer direção"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valor"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Exibindo consulta SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Id da linha inserida: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7341,38 +7432,38 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Sex"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Submeter"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add index"
msgid "Add prefix"
msgstr "Adicionar índice"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to execute following query?"
msgid "Do you really want to execute the following query?"
msgstr "Você realmente deseja executar a Query SQL a seguir?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Sem Mudança"
@@ -7380,11 +7471,6 @@ msgstr "Sem Mudança"
msgid "Charset"
msgstr "Conjunto de caracteres"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binário"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgaro"
@@ -7718,18 +7804,10 @@ msgid "Slave status"
msgstr "Exibir status dos escravos"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variáveis"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valor"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID do Servidor"
@@ -8093,11 +8171,6 @@ msgstr "Executar rotina"
msgid "Routine parameters"
msgstr "Rotinas"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Função"
-
#: libraries/rte/rte_triggers.lib.php:89
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
@@ -8467,7 +8540,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Fazer consulta SQL no Banco de Dados %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Limpar"
@@ -8477,11 +8550,11 @@ msgstr "Limpar"
msgid "Columns"
msgstr "Nome das colunas"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Gravar essa consulta SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Deixar qualquer usuário acessar esse marcador"
@@ -8505,10 +8578,6 @@ msgstr "Mostrar esta consulta SQL novamente"
msgid "View only"
msgstr "Apenas visualizar"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Servidor web subiu o diretório"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8722,12 +8791,6 @@ msgstr "Operador"
msgid "Table Search"
msgstr "Procurar"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Inserir"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8967,7 +9030,7 @@ msgstr "Versão do Protocolo"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Usuário"
@@ -9199,10 +9262,6 @@ msgstr "Ocultar/Exibir tudo"
msgid "Hide/Show Tables with no relation"
msgstr "Ocultar/Exibir Tabelas sem relacionamento"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Ocultar"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Numero de tabelas"
@@ -9422,17 +9481,17 @@ msgstr "A tabela \"%s\" não existe!"
msgid "Select binary log to view"
msgstr "Selecionar log binário para exibir"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Arquivos"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Truncar as consultas SQL exibidas"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Mostrar consultas completas"
@@ -9883,8 +9942,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
@@ -10010,7 +10069,7 @@ msgstr "Os privilégios foram recarregados com sucesso."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Exibir status dos escravos"
@@ -10147,12 +10206,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Processo %s foi morto com sucesso."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10160,150 +10219,150 @@ msgstr ""
"phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já "
"esteja fechado."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Manipulador"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Consulta do cache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Processos"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dados temporários"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Inserções demoradas"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Chave do cache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Junções"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Ordenando"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordenador da transação"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Nivelar (fechar) todas as tabelas"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Exibir tabelas abertas"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Exibir servidores escravos"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Exibir status dos escravos"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Nivelar cache da consulta"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informações de Runtime"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Atualizar"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Filtro"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Não mudar a senha"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Exibir tabelas abertas"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Exibir tabelas abertas"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relações"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tipo de consulta"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introdução"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10311,57 +10370,57 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Comandos"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Replicação"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10369,47 +10428,47 @@ msgstr ""
"Em servidores ocupados, os contadores de byte podem sobrecarregar, então as "
"estatísticas como relatadas pelo servidor MySQL podem estar incorretas."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Recebido"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Enviar"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "máx. de conexões concorrentes"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Tentativas falharam"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Abortado"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Comando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10419,16 +10478,16 @@ msgstr ""
"excederam o valor do binlog_cache_size e usaram o arquivo temporário para "
"armazenar enunciados da transação."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10440,11 +10499,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Quantos arquivos temporários o MySQL tinha criado."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10452,7 +10511,7 @@ msgstr ""
"O número de tabelas temporárias na memória criadas automaticamente pelo "
"servidor enquanto executava os enunciados."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10460,7 +10519,7 @@ msgstr ""
"O número de linhas escritas com INSERT DELAYED para cada erro ocorrido "
"(provavelmente chave duplicada)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10468,23 +10527,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "O número de linhas INSERT DELAYED escritas."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "O número de enunciados FLUSH executados."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "O número de enunciados COMMIT internos."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10494,7 +10553,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10504,7 +10563,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10513,7 +10572,7 @@ msgstr ""
"alto, é uma boa indicação de que suas consultas e tabelas estejam "
"corretamente indexadas."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10523,7 +10582,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10531,7 +10590,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10544,7 +10603,7 @@ msgstr ""
"faça a varredura de tabelas inteiras ou você tem junções que não usam as "
"chaves corretamente."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10556,37 +10615,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "O número de enunciados ROLLBACK internos."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "O número de páginas atualmente sujas."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "O número de páginas livres."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10596,7 +10655,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:1346
+#: server_status.php:1349
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 "
@@ -10608,11 +10667,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Tamanho total do buffer pool, em páginas."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10621,7 +10680,7 @@ msgstr ""
"uma consulta faz a varredura de uma parcela grande de uma tabela mas na "
"ordem aleatória."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10629,11 +10688,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10641,7 +10700,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:1352
+#: server_status.php:1355
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 "
@@ -10655,55 +10714,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:1353
+#: server_status.php:1356
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:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "O número de operações fsync() à fazer."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "O número atual de operações fsync() pendentes."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "O número atual de leituras pendentes."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "O número atual de escritas pendentes."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "O montante de leitura de dados à fazer, em bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "O número total de dados lidos."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "O número total de dados escritos."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "O montante de escrita de dados à fazer, em bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10711,35 +10770,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "O número de requisições de escrita de log."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "O número de arquivos de log fsyncs pendentes."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Escrita de arquivos de log pendentes."
-#: server_status.php:1370
+#: server_status.php:1373
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:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "O número de páginas criadas."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10748,52 +10807,52 @@ msgstr ""
"contados em páginas; o tamanho de página permite que sejam facilmente "
"convertidos em bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "O número de páginas lidas."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "O número de páginas escritas."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "O número de linhas deletadas de tabelas InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "O número de linhas inseridas em tabelas InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "O número de linhas lidas de tabelas InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "O número de linhas atualizadas em tabelas InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10801,7 +10860,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:1385
+#: server_status.php:1388
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."
@@ -10809,7 +10868,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:1386
+#: server_status.php:1389
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 "
@@ -10819,17 +10878,17 @@ msgstr ""
"indica o número máximo de blocos que estiveram sempre em uso em algum "
"momento."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Formato do arquivo importado"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10839,26 +10898,26 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10869,18 +10928,18 @@ msgstr ""
"a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi "
"compilada ainda."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10888,39 +10947,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "O número de arquivos que estão abertos."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "O número de tabelas que estão abertas."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "O montante de memória livre para a consulta do cache."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "O número de hits do cache."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "O número de consultas adicionadas no cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10933,7 +10992,7 @@ msgstr ""
"recentemente\" (LRU - least recently used) para decidir qual consulta "
"remover do cache."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10941,19 +11000,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "O número de consultas registradas no cache."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "O número total de blocos na consulta do cache."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "O status da replicação à prova de falhas (não implementado)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10961,13 +11020,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10976,7 +11035,7 @@ msgstr ""
"após cada linha. (Se este não for 0, você deve cuidadosamente verificar os "
"índices de suas tabelas.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10984,16 +11043,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11001,11 +11060,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11013,12 +11072,12 @@ msgstr ""
"O número de processos que levaram mais que slow_launch_time segundos para "
"serem criadas."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11028,24 +11087,24 @@ msgstr ""
"valor for alto, você deve considerar aumentar o valor da variável "
"sort_buffer_size do sistema."
-#: server_status.php:1421
+#: server_status.php:1424
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:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "O número de linhas ordenadas."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11057,7 +11116,7 @@ msgstr ""
"performance, você precisa primeiramente otimizar suas consultas e então, ou "
"dividir sua tabela ou usar replicação."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11067,11 +11126,11 @@ msgstr ""
"ser calculada como Threads_created/conexões. Se este valor for vermelho você "
"deve aumentar seu thread_cache_size"
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "O número de conexões atualmente abertas."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11083,75 +11142,75 @@ msgstr ""
"isso não da um aumento notável de performance se você tem uma boa "
"implementação de processos.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Rastreamento não está ativo."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "O número de processos que não estão dormindo."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
msgid "Start Monitor"
msgstr "Status"
-#: server_status.php:1585
+#: server_status.php:1588
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Introdução"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "Adicionar índice"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Atualizar"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adicionar/Remover colunas"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Restaurar valor padrão"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
#| msgid "1. Introduction"
msgid "Monitor Instructions"
msgstr "1. Introdução"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11160,7 +11219,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11168,20 +11227,20 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
#, fuzzy
#| msgid "Pause monitor"
msgid "Using the monitor:"
msgstr "Pausar o monitoramento"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11189,11 +11248,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11204,95 +11263,95 @@ msgstr ""
# The word "chart" in brasilian portuguese can mean either "Table = tabela" or
# "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it
# depends of the context.
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Remover Gráfico/Tabela ou Relatório"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Tabelas selecionadas"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Nome de tabela inválida"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Adicionar novo servidor"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "Consultas SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Mostrar estatísticas"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Tabelas selecionadas"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tipo de consulta"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -11300,7 +11359,7 @@ msgid_plural "%d seconds"
msgstr[0] "Segundo"
msgstr[1] "Segundo"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11438,7 +11497,7 @@ msgstr "Valor da sessão"
msgid "Global value"
msgstr "Valor global"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11507,40 +11566,40 @@ msgstr "Não existem servidores configurados"
msgid "New server"
msgstr "Novo servidor"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Idioma padrão"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "deixar o usuário escolher"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- nenhum -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Servidor padrão"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Fim de linha"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Exibir"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Carregar"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentação do phpMyAdmin "
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Doar"
@@ -11740,51 +11799,42 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
msgid "Wrong data"
msgstr "Não existem dados"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Visualizar valores estrangeiros"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Usando marcador \"%s\" como padrão."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Você realmente deseja executar a Query SQL a seguir?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Id da linha inserida: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Exibindo como código PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Exibindo consulta SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL validado"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Resultado SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Gerado por"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com o índice da tabela `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Nome"
@@ -11799,60 +11849,6 @@ msgstr "A tabela %1$s foi alterada com sucesso"
msgid "The columns have been moved successfully."
msgstr "Os usuários selecionados foram apagados com sucesso."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Por causa da sua largura, esse campo pode não ser editável"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binário - não edite"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Inserir como um novo registro"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Inserir como uma linha nova e ignorar erros"
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Exibindo consulta SQL"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "e então"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Retornar"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Inserir novo registro"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Voltar para esta página"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Editar próximo registro"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover "
-"em qualquer direção"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Reiniciar inserção com %s registros"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12513,36 +12509,42 @@ msgstr "Rastrear estas instruções de manipulação de dados:"
msgid "Create version"
msgstr "Criar versão"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Ocultar critério de pesquisa"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
msgstr "Utilizar a extensão do PHP"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Restaurar"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Obter mais temas!"
@@ -12921,8 +12923,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13058,8 +13060,8 @@ msgstr ""
#, fuzzy, php-format
#| msgid "%s%% of all connections are aborted. This value should be below 1%%"
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%%"
@@ -13429,8 +13431,8 @@ msgstr ""
#: libraries/advisory_rules.txt:332
#, fuzzy, php-format
#| msgid ""
-#| "Max_used_connections is at %s%% of max_connections, it should be below "
-#| "80%%"
+#| "Max_used_connections is at %s%% of max_connections, it should be below 80%"
+#| "%"
msgid ""
"The number of opened files is at %s%% of the limit. It should be below 85%%"
msgstr ""
@@ -13841,6 +13843,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert está com valor 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Use a roda do mouse para ampliação ou redução do plano"
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Clique e arraste com o mouse para navegar no mapa"
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Strings serão convertidos em inteiros por planejamento"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14122,9 +14133,6 @@ msgstr "concurrent_insert está com valor 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Nenhum trigger com o nome %s encontrado"
-#~ msgid "rows"
-#~ msgstr "Visualizar"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "registro(s) começando de"
diff --git a/po/ro.po b/po/ro.po
index 371a2b7014..862df00289 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:15+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: romanian \n"
-"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Arată toate"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Arată toate"
msgid "Page number:"
msgstr "Numărul paginii:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"închisă, sau fereastra-părinte blochează ferestrele din cauza securității "
"sistemului."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Caută"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Caută"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Execută"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nume cheie"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Descriere"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Folosește această valoare"
@@ -123,12 +123,12 @@ msgstr "Comentarii tabel"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Coloană"
@@ -137,6 +137,7 @@ msgstr "Coloană"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Coloană"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -154,12 +155,12 @@ msgstr "Tip"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nul"
@@ -198,13 +199,13 @@ msgstr "Comentarii"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Nu"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Tabel"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Linie"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Schimbă la tabela copiată"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortare"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Crescătoare"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Descrescător"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Afișează"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Sau"
@@ -527,8 +528,8 @@ msgstr[1] "%s rezultat(e) în interiorul tabelului %s"
msgstr[2] "%s rezultat(e) în interiorul tabelului %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Navigare"
@@ -537,14 +538,14 @@ msgstr "Navigare"
msgid "Delete the matches for the %s table?"
msgstr "Ștergeți potrivirile pentru tabelul %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Șterge"
@@ -616,11 +617,11 @@ msgstr "Monitorizarea este activată."
msgid "Tracking is not active."
msgstr "Monitorizarea nu este activată."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@@ -631,7 +632,7 @@ msgstr "Vizualizare"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replicare"
@@ -645,20 +646,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Cele bifate:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Marchează toate"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -670,27 +671,27 @@ msgstr "Verificare depășit"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportă"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Vizualizare imprimare"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Golește"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -716,11 +717,11 @@ msgstr "Analizare tabel"
msgid "Add prefix to table"
msgstr "Adaugă prefix la tabelă"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Înlocuiește prefixul tabelei"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Copiază tabelul cu prefix"
@@ -740,8 +741,8 @@ msgstr "Tabelele urmărite"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza de date"
@@ -759,7 +760,7 @@ msgstr "Actualizat(ă)"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stare"
@@ -869,49 +870,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a point"
msgstr "Adaugă %s cîmp(uri)"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Linii terminate de"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -921,17 +922,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Adaugă un utilizator nou"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Adaugă un utilizator nou"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -956,11 +957,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
-"%sdocumentație%s pentru căi de ocolire a acestei limite."
+"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
+"sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1007,7 +1008,7 @@ msgstr ""
"Nu au putut fi încărcate modulele adiționale de import, vă rog verificați "
"instalarea!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Semnul de carte %s a fost creat"
@@ -1030,7 +1031,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1047,7 +1048,7 @@ msgstr ""
"phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu "
"cadre."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
@@ -1057,7 +1058,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
msgid "Do you really want to execute \"%s\"?"
msgstr "Sigur doriți să "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!"
@@ -1150,23 +1151,23 @@ msgstr "Închide"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Editare"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Alegerea serverului"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "Comanda SQL"
@@ -1178,23 +1179,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Total"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1214,7 +1215,7 @@ msgstr "Traficul server-ului (în KiB)"
msgid "Connections since last refresh"
msgstr "Conexiuni de la ultima reîmprospătare"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procese"
@@ -1232,7 +1233,7 @@ msgstr "Întrebări de la ultima reîmprospătare"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statisticile rîndului"
@@ -1282,14 +1283,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiO"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiO"
@@ -1349,32 +1350,32 @@ msgstr "Octeți trimiși"
msgid "Bytes received"
msgstr "Octeți primiți"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Conexiuni"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "octeți"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiO"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiO"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiO"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiO"
@@ -1391,11 +1392,11 @@ msgstr "%s tabele"
msgid "Questions"
msgstr "Versiuni"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafic"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1422,10 +1423,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Nici unul(a)"
@@ -1526,7 +1527,7 @@ msgstr "Modificați setările"
msgid "Current settings"
msgstr "Setările curente"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1620,9 +1621,9 @@ msgstr "Se analizează..."
msgid "Explain output"
msgstr "Explică SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Timp"
@@ -1731,7 +1732,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importă"
@@ -1861,19 +1862,19 @@ msgstr "Ascunde index-uri"
msgid "Show indexes"
msgstr "Arată index-uri"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Dezactivare verificări de cheie străine"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Activat"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1946,7 +1947,7 @@ msgstr "Afișează casuță interogare"
msgid "No rows selected"
msgstr "Niciun rând selectat"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Schimbare"
@@ -1955,17 +1956,18 @@ msgstr "Schimbare"
msgid "Query execution time"
msgstr "Durata de execuție a interogării"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nu este un număr valid de rînduri."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Salveaza"
@@ -1992,81 +1994,73 @@ msgid "Hovering over a point will show its label."
msgstr "Ducând mouse-ul deasupra unui punct, i se va afișa eticheta."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Click pe link-ul de resetare zoom pentru a te întoarce la starea originală."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Click pe un punct de date pentru a vedea sau chiar a edita rândul de date."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Selectează două coloane"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Selectează două coloane diferite"
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Operațiuni asupra rezultatelor interogării"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Mărime pointer date"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoră"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Copiază"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Adaugă coloane"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Alegere cheie referențiată"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Alegeți cheia străină"
-#: js/messages.php:343
+#: js/messages.php:339
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:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Selectează coloana pentru afișare"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -2074,15 +2068,15 @@ msgstr ""
"Nu ați salvat schimbarile în așezare. Ele vor fi pierdute dacă nu le "
"salvați. Doriți să continuați?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Adăugați o opțiune pentru coloană "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Apăsați escape pentru a anula editarea"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2090,28 +2084,28 @@ msgstr ""
"Ați editat unele date și acestea nu au fost salvate. Sigur vreți să părăsiți "
"această pagină fără să salvați datele?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Drag and drop pentru reordonare"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Click pentru a sorta"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Click pentru a selecta/deselecta"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Click pe săgeata de drop-down pentru a alterna vizibilitatea coloanei"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2120,54 +2114,54 @@ msgstr ""
"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu "
"funcționeze după salvare."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Puteți de asemenea edita coloane facând click direct pe conținutul "
"acestora."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Mergi la adresa link-ului"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Denumirile coloanelor"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Afișează înregistrări"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Generează parolă"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generează"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Schimbare parolă"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mai mult"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2177,27 +2171,27 @@ msgstr ""
"procesul de actualizare. Noua versiune este %s, publicată în data de %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", ultima versiune stabilă:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "la ultima versiune"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Gata"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Anterior"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2205,82 +2199,82 @@ msgid "Next"
msgstr "Următorul"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Astăzi"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Ianuarie"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Februarie"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Martie"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Aprilie"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mai"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Iunie"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Iulie"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Septembrie"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Octombrie"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Noiembrie"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Decembrie"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2288,70 +2282,70 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Duminică"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Luni"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Marți"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Miercuri"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Joi"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Vineri"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sâmbătă"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2359,97 +2353,97 @@ msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sâm"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Du"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Jo"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Vi"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Sâ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Săpt"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-lună-an"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Nici unul(a)"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Oră"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minut"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Secundă"
@@ -2504,16 +2498,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "pe secundă"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "pe minut"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "pe oră"
@@ -2645,15 +2639,15 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
msgid "Databases"
msgstr "Baze de date"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2665,20 +2659,20 @@ msgid "Structure"
msgstr "Structură"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Inserare"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operații"
@@ -2737,12 +2731,12 @@ msgstr "Utilizatori"
msgid "Synchronize"
msgstr "Sincronizați"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Jurnal binar"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabile"
@@ -2759,8 +2753,9 @@ msgid "Engines"
msgstr "Motoare"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Eroare"
@@ -2880,35 +2875,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Nici o previzualizare disponibilă."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "alege"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Tema implicită %s nu a fost găsită!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s nu a fost găsită!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Calea temei nu a fost găsită pentru tema %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Temă"
@@ -2949,14 +2944,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3215,8 +3210,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@@ -3326,7 +3321,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabele"
@@ -3379,25 +3374,25 @@ msgstr ""
msgid "numeric key detected"
msgstr "cheie numerica detectată"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3409,24 +3404,24 @@ msgstr ""
"Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în "
"fișierul de configurare!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Index de server nevalid: „%s”"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația "
"dumneavoastră."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
@@ -3461,8 +3456,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Comanda SQL"
@@ -3501,7 +3496,7 @@ msgid "Create PHP Code"
msgstr "Creează cod PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Reîncarcă"
@@ -3524,43 +3519,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Motoare"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Creare profil"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Dum"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y la %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Începe"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3568,8 +3563,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Anterior"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3577,55 +3572,55 @@ msgctxt "Next page"
msgid "Next"
msgstr "Următorul"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Sfîrșit"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Sari la baza de date "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Click pentru a selecta"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Caută în calculatorul tău:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nu sunt fișiere pentru încărcare"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Execută"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Listare"
@@ -3808,9 +3803,9 @@ msgstr "Restaurează valoarea implicită"
msgid "Allow users to customize this value"
msgstr "Permite utilizatorilor să customizeze această valoare"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Resetare"
@@ -3971,7 +3966,7 @@ msgid "Compress on the fly"
msgstr "Comprimați pe loc"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Fișier de configurare"
@@ -4036,7 +4031,7 @@ msgstr "Propune structura de tabele"
msgid "Show binary contents as HEX by default"
msgstr "Afișează conținutul binar ca HEX implicit"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Afișează conținutul binar ca HEX"
@@ -6049,7 +6044,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Activați tab-ul Developer în setări"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Verificați pentru ultima versiune"
@@ -6192,7 +6187,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP.
msgid "possible deep recursion attack"
msgstr "posibil atac adânc recursiv"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -6200,23 +6195,23 @@ msgstr ""
"Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat "
"corect)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serverul nu răspunde"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
"Vă rugăm să verificați drepturile de acces ale directorului ce conține baza "
"de date."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detalii..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6384,17 +6379,17 @@ msgstr ", @TABLE@ va deveni numele tabelei"
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi "
"folosi şiruri de formatare a timpului. În plus, următoarele transformări vor "
-"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ"
-"%5$s pentru detalii."
+"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5"
+"$s pentru detalii."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6609,57 +6604,62 @@ msgstr ""
msgid "Language"
msgstr "Limbă"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Directorul de bază pentru date"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Adaugă/șterge coloane"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Dum"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Număr de cîmpuri"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Lun"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "orizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "orizontal (colontitlu rotativ)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertical"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Capete de tabel la fiecare %s rânduri"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Navigare"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sortare după cheie"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6677,99 +6677,99 @@ msgstr "Sortare după cheie"
msgid "Options"
msgstr "Opțiuni"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Texte parțiale"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Texte întregi"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Cheie relațională"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Relational display field"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Afişează conţinut binar"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Afişează conţinut BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Ascunde transformarea browser-ului"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Text Bine Cunoscut"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
#, fuzzy
msgid "Well Known Binary"
msgstr "Binar Bine Cunoscut"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Oprește"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "în interogarea"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Afișează înregistrări"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "comanda a durat %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operațiuni asupra rezultatelor interogării"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Vizualizare listare (împreună cu text)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Arată schema PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Creare relație"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Legatură nevalidă"
@@ -6813,7 +6813,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Zonă Tampon"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stare InnoDB"
@@ -7102,8 +7102,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7252,12 +7252,12 @@ msgstr "Tipuri MIME disponibile"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Gazda"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Timp de generare"
@@ -7470,8 +7470,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a dat un set de rezultate gol (zero linii)."
@@ -7643,6 +7643,105 @@ msgstr "Regim de compatibilitate SQL"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funcție"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Ascunde"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binar"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+"Datorită lungimii sale, acest cîmp s-ar putea să nu fie editabil"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binar - a nu se edita"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "director de încărcare al serverului Web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Inserare"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Repornește inserția cu %s rînduri"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "și apoi"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Inserează ca o nouă linie"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Afișare interogare SQL"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Revenire"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Adaugă o nouă înregistrare"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Înapoi la această pagină"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Editează rîndul următor"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți "
+"pentru a merge în oricare direcție"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Valoare"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Afișare interogare SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "ID rînd inserat: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7655,36 +7754,36 @@ msgstr "Nici unul(a)"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Vin"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Trimite"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Sigur doriți să "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nici o schimbare"
@@ -7692,11 +7791,6 @@ msgstr "Nici o schimbare"
msgid "Charset"
msgstr "Set de caractere"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binar"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgar"
@@ -8030,18 +8124,10 @@ msgid "Slave status"
msgstr "Stare sclav"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabil"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Valoare"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID server"
@@ -8390,11 +8476,6 @@ msgstr "Executați rutina"
msgid "Routine parameters"
msgstr "Parametrii rutinei"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funcție"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8757,7 +8838,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Execută interogare SQL asupra bazei de date %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Calendar"
@@ -8768,11 +8849,11 @@ msgstr "Calendar"
msgid "Columns"
msgstr "Denumirile coloanelor"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Pune semn de carte la această comandă SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
@@ -8796,10 +8877,6 @@ msgstr "Afișează această interogare din nou aici"
msgid "View only"
msgstr "Numai vizualizare"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "director de încărcare al serverului Web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -9011,12 +9088,6 @@ msgstr "Operand"
msgid "Table Search"
msgstr "Caută"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Inserare"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9284,7 +9355,7 @@ msgstr "Versiune protocol"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Utilizator"
@@ -9513,10 +9584,6 @@ msgstr "Arată/ascunde toate"
msgid "Hide/Show Tables with no relation"
msgstr "Arată/ascunde tabele fără realție"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Ascunde"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Număr de tabele"
@@ -9721,17 +9788,17 @@ msgstr "Tabelul „%s” nu există!"
msgid "Select binary log to view"
msgstr "Selectați jurnalul binar pentru vizualizare"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Fișiere"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Truncare comenzi afișate"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Afișare comandă întreagă"
@@ -10193,8 +10260,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
@@ -10320,7 +10387,7 @@ msgstr "Server master schimbat cu succes în %s"
msgid "This server is configured as master in a replication process."
msgstr "Acest server este configurat ca master într-un proces de replicare."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Afișați status master"
@@ -10473,12 +10540,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Firul de execuție %s a fost oprit cu succes."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10486,151 +10553,151 @@ msgstr ""
"phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost "
"deja oprit."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Gestionar"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Cache interogări"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Fire"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Date temporare"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Inserări întîrziate"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Cache cheie"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Joncțiuni"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortare"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Coordonator tranzacție"
-#: server_status.php:625
+#: server_status.php:628
#, fuzzy
msgid "Flush (close) all tables"
msgstr "Aruncă (închide) toate tabelele"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Afișează tabele deschise"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Afișează gazde sclavi"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Afișează stare sclav"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Reinițializare cache interogare"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informații rulare"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Reîncarcă"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Fișiere"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nu schimbați parola"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Afișează tabele deschise"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Afișează tabele deschise"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Legături"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Tip interogare"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Introducere"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10638,118 +10705,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Comenzi"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Acest server MySQL rulează de %s. S-a lansat la %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Replicare"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Recepționat"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Trimis"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "conexiuni concurente (maxim)"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Încercări nereușite"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Întrerupt"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Comanda"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Comprimă conexiunea la serverul MySQL"
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10757,11 +10824,11 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Cîte fișiere temporare a creat mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10769,68 +10836,68 @@ msgstr ""
"Numărul de tabele temporare create automat în memorie de căter server în "
"timpul execuției de interogări."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10838,7 +10905,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10846,42 +10913,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Numărul de pagini actualmente murdare."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Numărul de pagini libere."
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10889,33 +10956,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10924,248 +10991,248 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Numărul de pagini create."
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Numărul de pagini citite."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Numărul de pagini scrise."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Numărul de rînduri citite din tabelele InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Numărul de rînduri actualizate în tabelele InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Formatul fișierului importat"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Numărul de tabele ce sînt deschise."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Numărul de nimeriri în cache."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Numărul de interogări adăugate la cache."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11173,99 +11240,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Numărul de interogări înregistrate în cache."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Numărul total de blocuri în cache-ul interogării."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Numărul de rînduri sortate."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11273,18 +11340,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Numărul de conexiuni deschise momentan."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11292,74 +11359,74 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Monitorizarea nu este activată"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Dum"
-#: server_status.php:1585
+#: server_status.php:1588
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Introducere"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Adaugă %s cîmp(uri)"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Reîncarcă"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Adaugă/șterge coloane"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Introducere"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11368,7 +11435,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11376,18 +11443,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11395,11 +11462,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11407,93 +11474,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Redenumire bază de date în"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Selectează tabele"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Denumire de tabel nevalidă"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Adaugă un server nou"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "Comanda SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statisticile rîndului"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Selectează tabele"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Tip interogare"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11502,7 +11569,7 @@ msgstr[0] "pe secundă"
msgstr[1] "pe secundă"
msgstr[2] "pe secundă"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11642,7 +11709,7 @@ msgstr "Valoare sesiune"
msgid "Global value"
msgstr "Valoare globală"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Descarcă"
@@ -11708,41 +11775,41 @@ msgstr ""
msgid "New server"
msgstr "Server Web"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Afișează"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Local"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Documentație phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Date"
@@ -11933,55 +12000,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Nu sînt baze de date"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Caută printre valori necunoscute"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Sigur doriți să "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "ID rînd inserat: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Afișare ca și cod PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Afișare interogare SQL"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Validează SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Rezultat SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generat de"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etichetă"
@@ -11996,63 +12054,6 @@ msgstr "Tabelul %1$s a fost alterat cu succes"
msgid "The columns have been moved successfully."
msgstr "Utilizatorii selectați au fost eliminați."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-"Datorită lungimii sale, acest cîmp s-ar putea să nu fie editabil"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binar - a nu se edita"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Inserează ca o nouă linie"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Afișare interogare SQL"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "și apoi"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Revenire"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Adaugă o nouă înregistrare"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Înapoi la această pagină"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Editează rîndul următor"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți "
-"pentru a merge în oricare direcție"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Repornește inserția cu %s rînduri"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12697,35 +12698,41 @@ msgstr ""
msgid "Create version"
msgstr "Creare relație"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "Comanda SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "PHP extension to use"
msgid "How to use"
msgstr "Extensia PHP de utilizat"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Resetare"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13092,8 +13099,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13227,8 +13234,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14298,9 +14305,6 @@ msgstr "concurrent_insert este setat la 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "No valid image path for theme %s found!"
-#~ msgid "rows"
-#~ msgstr "Navigare"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "linii începînd cu"
diff --git a/po/ru.po b/po/ru.po
index 740693781a..71baba28c4 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-18 09:57+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
-"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Показать все"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Показать все"
msgid "Page number:"
msgstr "Номер страницы:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"родительское окно или ваш браузер блокирует межоконные обновления из-за "
"настроек безопасности."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Поиск"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Поиск"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Имя индекса"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Описание"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Использовать это значение"
@@ -123,12 +123,12 @@ msgstr "Комментарий к таблице"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Поле"
@@ -137,6 +137,7 @@ msgstr "Поле"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Поле"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -154,12 +155,12 @@ msgstr "Тип"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -198,13 +199,13 @@ msgstr "Комментарии"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Нет"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -358,7 +359,7 @@ msgstr "Таблица"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Строки"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Переключиться на %sвизуальный составитель запросов%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Отсортировать"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "По возрастанию"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "По убыванию"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Показать"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "Удалить"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Или"
@@ -524,8 +525,8 @@ msgstr[1] "%1$s соответствия в таблице %2$s"
msgstr[2] "%1$s соответствий в таблице %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Обзор"
@@ -534,14 +535,14 @@ msgstr "Обзор"
msgid "Delete the matches for the %s table?"
msgstr "Удалить соответствия для таблицы %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Удалить"
@@ -610,11 +611,11 @@ msgstr "Слежение включено."
msgid "Tracking is not active."
msgstr "Слежение выключено."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@@ -626,7 +627,7 @@ msgstr "Представление"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Репликация"
@@ -640,20 +641,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "С отмеченными:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Отметить все"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -665,27 +666,27 @@ msgstr "Отметить требующие оптимизации"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Версия для печати"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Очистить"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -711,11 +712,11 @@ msgstr "Анализ таблицы"
msgid "Add prefix to table"
msgstr "Добавить префикс таблицы"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Заменить префикс таблицы"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Копировать таблицу с префиксом"
@@ -734,8 +735,8 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "База данных"
@@ -753,7 +754,7 @@ msgstr "Обновлён"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Состояние"
@@ -853,45 +854,45 @@ msgstr "Используйте в качестве основного слоя O
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Геометрия"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Точка"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Точка %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Добавить точку"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Линия"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Внешний контур"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Внутренний контур"
@@ -899,15 +900,15 @@ msgstr "Внутренний контур"
msgid "Add a linestring"
msgstr "Добавить линию"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Добавить внутренний контур"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Многоугольник"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Добавить многоугольник"
@@ -930,8 +931,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -981,7 +982,7 @@ msgstr ""
"Отсутствуют модули импорта. Проверьте содержимое установленной копии "
"phpMyAdmin!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка "%s" создана"
@@ -1010,7 +1011,7 @@ msgstr ""
"пока не будет увеличено ограничение времени выполнения php-сценариев."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1025,7 +1026,7 @@ msgstr "Назад"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена."
@@ -1034,7 +1035,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных)
msgid "Do you really want to execute \"%s\"?"
msgstr "Вы действительно хотите выполнить запрос \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "База данных будет полностью УДАЛЕНА!"
@@ -1120,21 +1121,21 @@ msgstr "Закрыть"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Изменить"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Графический вывод трафика"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Графический вывод соединений и процессов"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Графический вывод запросов"
@@ -1145,23 +1146,23 @@ msgstr "Статические данные"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Всего"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Другое"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1181,7 +1182,7 @@ msgstr "Трафик сервера (в KiB)"
msgid "Connections since last refresh"
msgstr "Соединений с момента последнего обновления"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процессы"
@@ -1199,7 +1200,7 @@ msgstr "Вопросов с момента последнего обновлен
msgid "Questions (executed statements by the server)"
msgstr "Вопросы (выражения выполненные сервером)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Статистика запросов"
@@ -1244,14 +1245,14 @@ msgid "System swap"
msgstr "Система подкачки"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1303,32 +1304,32 @@ msgstr "Отослано байт"
msgid "Bytes received"
msgstr "Принято байт"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Соединения"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЭБ"
@@ -1342,11 +1343,11 @@ msgstr "%d таблиц(а)"
msgid "Questions"
msgstr "Вопросы"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Настройки"
@@ -1367,10 +1368,10 @@ msgid "Please add at least one variable to the series"
msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Нет"
@@ -1471,7 +1472,7 @@ msgstr "Изменить настройки"
msgid "Current settings"
msgstr "Текущие настройки"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Заголовок графика"
@@ -1556,9 +1557,9 @@ msgstr "Анализ..."
msgid "Explain output"
msgstr "Анализ результатов"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Время"
@@ -1655,7 +1656,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Импорт"
@@ -1775,15 +1776,15 @@ msgstr "Скрыть индексы"
msgid "Show indexes"
msgstr "Отображать индексы"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Проверка внешних ключей:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Включено)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Отключено)"
@@ -1851,7 +1852,7 @@ msgstr "Отобразить поле запроса"
msgid "No rows selected"
msgstr "Для совершения действия необходимо выбрать одну или несколько строк"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Изменить"
@@ -1860,17 +1861,18 @@ msgstr "Изменить"
msgid "Query execution time"
msgstr "Время выполнения запроса"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "Число %d не является правильным номером строки."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Сохранить"
@@ -1895,79 +1897,71 @@ msgid "Hovering over a point will show its label."
msgstr "Задержание курсора над точкой отобразит ее название."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Используйте колесо мышки для увеличения или уменьшения участка."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Кликните и перетащите мышкой для перемещения участка."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Кликните ссылку сброса увеличения для возвращения к исходному состоянию."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Кликните точку данных для просмотра или редактирования строки данных."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Можно изменить размер участка перетащив его вдоль нижнего правого угла."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Для построения графиков, строки конвертируются в числа"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Выберите два столбца"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Выберите два различных столбца"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Результаты запроса"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Содержание точки данных"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Игнорировать"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Копировать"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Добавить столбцы"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Выберите ссылочный ключ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Выберите внешний ключ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
"Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) "
"индексом"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Выбор отображаемого столбца"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1975,15 +1969,15 @@ msgstr ""
"Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. "
"Продолжить?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Добавить параметр для столбца "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Для отмены редактирования нажмите кнопку Esc"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1991,27 +1985,27 @@ msgstr ""
"Вы отредактировали некоторые данные, но изменения не были сохранены. Вы "
"уверены, что хотите покинуть данную страницу без сохранения данных?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Изменить порядок перетаскиванием"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Кликнуть для сортировки"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Кликнуть для снятия/установки отметки"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Для копирования имени поля сделайте двойной щелчок мышкой"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Кликните выпадающую стрелку для переключения видимости столбцов"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2020,48 +2014,48 @@ msgstr ""
"могут не работать функции связанные с редактированием сетки, выставления "
"галочки, ссылки редактирования, копирования и удаления."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Возможно редактировать большинство столбцов кликнув прямо на их "
"содержимом."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Перейти к ссылке"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Скопировать имя столбца"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой "
"мышки."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Вывести строку(и) данных"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Создать пароль"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерировать"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Изменить пароль"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Ещё"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2071,266 +2065,266 @@ msgstr ""
"Новейшая версия %s, выпущена %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", последняя стабильная версия:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "актуально"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Готово"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Предыдущий"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Сегодня"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Январь"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Февраль"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Март"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Апрель"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Май"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Июнь"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Июль"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Август"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Сентябрь"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Октябрь"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Ноябрь"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Воскресенье"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Понедельник"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Вторник"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Среда"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Четверг"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Пятница"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Суббота"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Нед."
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "none"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Час"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Минута"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Секунда"
@@ -2381,19 +2375,19 @@ msgstr "Неожиданные символы на строке %s"
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден "
-"\"%2$s\""
+"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2"
+"$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "в секунду"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "в минуту"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "в час"
@@ -2528,15 +2522,15 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни
msgid "Databases"
msgstr "Базы данных"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2548,20 +2542,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вставить"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операции"
@@ -2619,12 +2613,12 @@ msgstr "Пользователи"
msgid "Synchronize"
msgstr "Синхронизировать"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Бинарный журнал"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Переменные"
@@ -2641,8 +2635,9 @@ msgid "Engines"
msgstr "Типы таблиц"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Ошибка"
@@ -2763,35 +2758,35 @@ msgstr ""
"перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, "
"проверьте изменена ли структура таблицы."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не найден правильный путь к изображениям для темы %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Предпросмотр не доступен."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "Применить"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Тема по-умолчанию %s не найдена!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Тема %s не найдена!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Путь к файлам темы %s не найден!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Тема"
@@ -2831,8 +2826,8 @@ msgid ""
"An 8-byte integer, signed range is -9,223,372,036,854,775,808 to "
"9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615"
msgstr ""
-"Восьми-байтовое целое число, диапазон чисел со знаком от "
-"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
+"Восьми-байтовое целое число, диапазон чисел со знаком от -"
+"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без "
"знака от 0 до 18,446,744,073,709,551,615"
#: libraries/Types.class.php:299 libraries/Types.class.php:705
@@ -2846,20 +2841,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
-"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до "
-"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38"
+"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -"
+"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"Число с плавающей точкой удвоенной точности, допустимые значения от "
-"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от "
+"Число с плавающей точкой удвоенной точности, допустимые значения от -"
+"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от "
"2.2250738585072014E-308 до 1.7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -2906,8 +2901,8 @@ msgid ""
"stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)"
msgstr ""
"Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 "
-"03:14:07\" UTC, содержит количество секунд прошедших со времени "
-"(\"1970-01-01 00:00:00\" UTC)"
+"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-"
+"01 00:00:00\" UTC)"
#: libraries/Types.class.php:319 libraries/Types.class.php:721
#, php-format
@@ -3071,19 +3066,16 @@ msgid "Numeric"
msgstr "Числовые"
#: libraries/Types.class.php:636 libraries/Types.class.php:970
-#| msgid "Create an index"
msgctxt "date and time types"
msgid "Date and time"
msgstr "Дата и время"
#: libraries/Types.class.php:645 libraries/Types.class.php:973
-#| msgid "Linestring"
msgctxt "string types"
msgid "String"
msgstr "Символьные"
#: libraries/Types.class.php:666
-#| msgid "Spatial"
msgctxt "spatial types"
msgid "Spatial"
msgstr "Пространственные"
@@ -3159,8 +3151,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@@ -3265,7 +3257,7 @@ msgstr "общий"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Таблицы"
@@ -3316,11 +3308,11 @@ msgstr "возможная уязвимость"
msgid "numeric key detected"
msgstr "определена числовая клавиша"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Ошибка при чтении конфигурационного файла"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3328,12 +3320,12 @@ msgstr ""
"Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте "
"выведенные ниже ошибки."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3341,24 +3333,24 @@ msgstr ""
"Директива [code]$cfg['PmaAbsoluteUri'][/code] ДОЛЖНА быть установлена в "
"конфигурационном файле!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Неверный индекс сервера: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в "
"конфигурационном файле phpMyAdmin."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
"В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Необходимо обновить %s до версии %s или выше."
@@ -3393,8 +3385,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-запрос"
@@ -3432,7 +3424,7 @@ msgid "Create PHP Code"
msgstr "PHP-код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Обновить"
@@ -3453,96 +3445,96 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Быстрая правка"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Профилирование"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Вс"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y г., %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дней, %s часов, %s минут и %s секунд"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Отсутствующий параметр:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Начало"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Предыдущая"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Следующая"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Конец"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти к базе данных "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
"Работа параметра "%s" подвержена ошибке, описание смотрите на %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Кликните для переключения"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Обзор вашего компьютера:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Выберите из каталога загрузки сервера %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Установленный каталог загрузки не доступен"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Файлы для загрузки отсутствуют"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Выполнить"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Печать"
@@ -3714,9 +3706,9 @@ msgstr "Восстановить изначальное значение"
msgid "Allow users to customize this value"
msgstr "Разрешить пользователям изменять данное значение"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Сбросить"
@@ -3883,7 +3875,7 @@ msgid "Compress on the fly"
msgstr "Архивирование на лету"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Конфигурационный файл"
@@ -3941,7 +3933,7 @@ msgstr "Спрятать действия над структурой табли
msgid "Show binary contents as HEX by default"
msgstr "Показывать двоичные данные по умолчанию в шестнадцатеричном виде (HEX)"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Показывать бинарные данные в виде HEX значений"
@@ -4675,7 +4667,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Минимальное количество таблиц для отображения поля фильтра"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Минимальное количество баз данных для отображения поля фильтра"
@@ -5864,7 +5855,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Включение вкладки разработчика в настройках"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Проверить обновление"
@@ -6013,26 +6004,26 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр
msgid "possible deep recursion attack"
msgstr "возможная атака глубокой рекурсии"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
"Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Сервер не отвечает."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Детали..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6194,8 +6185,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -6387,48 +6378,53 @@ msgstr "Параметры формата:"
msgid "Language"
msgstr "Язык"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Сохранить отредактированные данные"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Восстановить порядок столбцов"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Начальная строка"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Количество строк"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Режим"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "горизонтальном"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "горизонтальном (повернутые заголовки)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикальном"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Заголовки каждые %s строк"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Обзор"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Сортировать по индексу"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6446,89 +6442,89 @@ msgstr "Сортировать по индексу"
msgid "Options"
msgstr "Параметры"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Сокращенные тексты"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Полные тексты"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Ссылочный ключ"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Отображение связанного поля"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Показать бинарные данные"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Показать BLOB содержимое"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Скрыть преобразование"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Текст (WKT)"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Бинарный (WKB)"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Запись была удалена"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Завершить"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "по запросу"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Отображает строки"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "всего"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запрос занял %01.4f сек."
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Использование результатов запроса"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Версия для печати (полностью)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Отобразить график"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Визуализация GIS данных"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Создать представление"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Связь не найдена"
@@ -6576,7 +6572,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буферный пул"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Состояние InnoDB"
@@ -6872,8 +6868,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@@ -6996,12 +6992,12 @@ msgstr "Отобразить MIME типы"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Время создания"
@@ -7225,8 +7221,8 @@ msgstr "Данные для визуализации GIS не найдены."
msgid "GLOBALS overwrite attempt"
msgstr "попытка перезаписи GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
@@ -7401,6 +7397,98 @@ msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
"Не использовать атрибут AUTO_INCREMENT для нулевых значений"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функция"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Скрыть"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Двоичный"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Из-за большого количества данных изменение поля невозможно"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Двоичные данные - не редактируются"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Из каталога загрузки"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Редактировать/Вставить"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Продолжить вставку с %s строки"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "и затем"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Вставить запись"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Отобразить запрос вставки"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Вернуться на предыдущую страницу"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Добавить новую запись"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Вернуться к данной странице"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Редактировать следующую строку"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Для перемещения между полями значения, используйте клавишу TAB, либо CTRL"
+"+клавиши со стрелками - для свободного перемещения"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Значение"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Отображает SQL-запрос"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Идентификатор вставленной строки: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7411,32 +7499,32 @@ msgstr "Нет"
msgid "Convert to Kana"
msgstr "Конвертировать в Кану"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "От"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "До"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Выполнить"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Добавить префикс таблицы"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Добавить префикс"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Вы действительно хотите выполнить данный запрос?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Нет изменений"
@@ -7444,11 +7532,6 @@ msgstr "Нет изменений"
msgid "Charset"
msgstr "Кодировка"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Двоичный"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Болгарский"
@@ -7781,18 +7864,10 @@ msgid "Slave status"
msgstr "Статус Slave"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Переменная"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Значение"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID сервера"
@@ -8121,11 +8196,6 @@ msgstr "Выполнить процедуру"
msgid "Routine parameters"
msgstr "Параметры процедуры"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функция"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Невозможно восстановить удаленный триггер."
@@ -8447,7 +8517,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Очистить"
@@ -8455,11 +8525,11 @@ msgstr "Очистить"
msgid "Columns"
msgstr "Столбцы"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Создание закладки"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Доступна для всех пользователей"
@@ -8483,10 +8553,6 @@ msgstr "Показать данный запрос снова"
msgid "View only"
msgstr "Просмотр"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Из каталога загрузки"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8682,10 +8748,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Поиск в таблице"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Редактировать/Вставить"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8907,7 +8969,7 @@ msgstr "Версия протокола"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Пользователь"
@@ -9049,7 +9111,6 @@ msgid "No databases"
msgstr "Базы данных отсутствуют"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Фильтровать базы данных по имени"
@@ -9130,10 +9191,6 @@ msgstr "Скрыть/отобразить все таблицы"
msgid "Hide/Show Tables with no relation"
msgstr "Скрыть/отобразить таблицы не имеющие связей"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Скрыть"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Количество таблиц"
@@ -9328,17 +9385,17 @@ msgstr "Файл не существует"
msgid "Select binary log to view"
msgstr "Выберите бинарный журнал для просмотра"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файлов"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Сокращенное отображение запросов"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Развернутое отображение запросов"
@@ -9781,8 +9838,8 @@ msgstr "Удалить базы данных, имена которых совп
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@@ -9910,7 +9967,7 @@ msgstr "Головной сервер успешно изменён на %s"
msgid "This server is configured as master in a replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Показать состояние головного сервера"
@@ -10061,12 +10118,12 @@ msgstr ""
"Данный сервер не настроен в качестве подчинённого для процесса репликации. "
"Хотите произвести настройку?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процесс %s был успешно завершен."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10074,115 +10131,115 @@ msgstr ""
"phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был "
"закрыт."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Обработчик"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Кеш запросов"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Потоки"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Временные данные"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Отложенные вставки"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Кеш индекса"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Объединения"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Координатор транзакций"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Закрыть все таблицы"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Список открытых таблиц"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Информация о подчиненных серверах"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Информация о состоянии сервера репликации"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Дефрагментировать кеш запросов"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Текущее состояние MySQL"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Все переменные состояния"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Монитор"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Советчик"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Частота обновления: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Фильтры"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Содержит слово:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Выводить только предупреждающие значения"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Фильтр по категории..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Выводить неотформатированные значения"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Связанные ссылки:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Запустить анализ"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Инструкции"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10190,7 +10247,7 @@ msgstr ""
"Система советов может предоставлять рекомендации по переменным сервера, "
"основываясь на анализе их статуса."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10199,7 +10256,7 @@ msgstr ""
"Однако, данная система предоставляет рекомендации основываясь на "
"примитивных подсчетах и может быть не применима к вашему серверу."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10209,7 +10266,7 @@ msgstr ""
"(прочитайте документацию) и знаете как отменить настройки. Ошибочная "
"настройка может отрицательно сказаться на производительности."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10221,31 +10278,31 @@ msgstr ""
"работе."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Вопросов начиная с запуска: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Характеристика"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "Кол-во"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Сетевой трафик с момента запуска: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Сервер MySQL работает %1$s. Запущен %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10253,16 +10310,16 @@ msgstr ""
"Данный MySQL сервер настроен головным и подчиненным в процессе "
"репликации."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr "Данный сервер настроен головным в процессе репликации."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Данный сервер настроен подчиненным в процессе репликации."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10270,11 +10327,11 @@ msgstr ""
"Для получения подробной информации о состоянии репликации сервера, "
"пожалуйста, перейдите в раздел репликации."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Состояние репликации"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10282,35 +10339,35 @@ msgstr ""
"На загруженном сервере, побайтовые счетчики могут переполняться, таким "
"образом, статистика, передаваемая MySQL-сервером, может быть некорректной."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Принято"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Отправлено"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Максимально одновременных"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Неудачных попыток"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Прерваны"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Команда"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10318,11 +10375,11 @@ msgstr ""
"Количество прерванных соединений в связи с потерей связи и неверно закрытым "
"соединением клиента."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Количество неудавшихся попыток соединения к серверу MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10332,16 +10389,16 @@ msgstr ""
"значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения "
"были сохранены во временном файле."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Количество транзакций, использовавших кеш бинарного журнала."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10353,11 +10410,11 @@ msgstr ""
"велико, следует увеличить значение переменной tmp_table_size, чтобы "
"временные таблицы располагались в памяти, а не на жестком диске."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10365,7 +10422,7 @@ msgstr ""
"Количество временных таблиц в памяти, созданных сервером автоматически в "
"процессе выполнения SQL-выражений."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10373,31 +10430,31 @@ msgstr ""
"Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, "
"например, из-за дублирования ключей."
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Количество строк записанных в режиме отложенной вставки данных (INSERT "
"DELAYED)."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Количество выполненных команд FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Количество внутренних команд COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Количество запросов на удаление строк из таблицы."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10407,7 +10464,7 @@ msgstr ""
"определенным именем. Этот процесс называется обнаружением. Handler_discover "
"- число обнаружений таблиц."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10418,7 +10475,7 @@ msgstr ""
"индекса. Например, SELECT col1 FROM foo, при условии, что col1 "
"проиндексирован."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10427,7 +10484,7 @@ msgstr ""
"значение переменной говорит о том, что запросы и таблицы проиндексированы "
"надлежащим образом."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10437,7 +10494,7 @@ msgstr ""
"индексов. Значение увеличивается при запросе индексного столбца с "
"ограничением по размеру или при сканировании индекса."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10445,7 +10502,7 @@ msgstr ""
"Количество запросов на чтение предыдущей строки при ниспадающей сортировке "
"индекса. Обычно используется при оптимизации: ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10458,7 +10515,7 @@ msgstr ""
"требующих полного сканирования таблиц, наличием объединений не использующих "
"индексы надлежащим образом."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10470,39 +10527,39 @@ msgstr ""
"что таблицы не проиндексированы надлежащим образом или запросы не используют "
"преимущества индексов."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Количество внутренних команд ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Количество запросов на обновление строк в таблице."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Количество запросов на вставку строк в таблицу."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
"Количество страниц содержащих данные ("грязные" или ""
"чистые")."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Текущее количество "грязных" страниц."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
"Количество страниц буферного пула, над которыми был осуществлен процесс "
"очистки (FLUSH)."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Количество свободных страниц."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10512,7 +10569,7 @@ msgstr ""
"страницами осуществляется процесс чтения или записи, либо они не могут быть "
"очищены или удалены по какой-либо другой причине."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10524,11 +10581,11 @@ msgstr ""
"Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Общий размер буферного пула (в страницах)."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10536,7 +10593,7 @@ msgstr ""
"Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это "
"происходит, когда запрос сканирует большую часть таблицы в случайном порядке."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10545,11 +10602,11 @@ msgstr ""
"происходит, когда InnoDB выполняет полное последовательное сканирование "
"таблицы."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Количество последовательных запросов на чтение, выполненных InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10557,7 +10614,7 @@ msgstr ""
"Количество последовательных запросов на чтение, которые InnoDB не смог "
"выполнить из буферного пула и использовал постраничное чтение."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10571,55 +10628,55 @@ msgstr ""
"ожиданий. Если размер буферного пула был установлен должным образом, "
"значение будет небольшим."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Количество записей, выполненных в буферный пул InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Количество операций fsync(), выполненных на данный момент."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Текущее количество незавершенных операций fsync()."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Текущее количество незавершенных операций чтения."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Текущее количество незавершенных операций записи."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Сумма данных (в байтах), прочитанных на данный момент."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Общее количество операций чтения данных."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Общее количество операций записи данных."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Сумма данных (в байтах), записанных на данный момент."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Количество записей в буфер doublewrite, и количество созданных для этого "
"страниц."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10627,36 +10684,36 @@ msgstr ""
"Количество ожиданий очистки журнального буфера, вследствие малого его "
"размера."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Количество запросов на запись в журнал."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Количество физических записей в файл журнала."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Количество записей с помощью fsync(), сделанных в файл журнала."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
"Количество незавершенных попыток синхронизации с помощью операции fsync."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Количество незавершенных запросов на запись в журнал."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Объем данных в байтах, записанных в файл журнала."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Количество созданных страниц."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10665,51 +10722,51 @@ msgstr ""
"приводятся в страницах, но зная объем страницы, можно перевести эти значения "
"в байты."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Количество прочитанных страниц."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Количество записанных страниц."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Текущее количество ожиданий блокировок строк."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Среднее время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Общее время, ожидания блокировок строк (в миллисекундах)."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Общее количество ожиданий блокировки строк."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Количество строк, удаленных из таблиц InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Количество строк, добавленных в таблицы InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Количество строк, прочитанных из таблиц InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Количество строк, обновленных в таблицах InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10717,7 +10774,7 @@ msgstr ""
"Количество блоков в кеше индекса, которые были изменены, но еще не записаны "
"на диск. Данный параметр также известен как Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10725,7 +10782,7 @@ msgstr ""
"Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет "
"определить как полно используется кеш индекса."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10734,16 +10791,16 @@ msgstr ""
"Количество используемых блоков в кеше индекса. Данное значение - "
"максимальное количество блоков, использованных одновременно."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
"Процентное соотношение использованного кеша ключей (подсчитанное значение)"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "Количество запросов на чтение блока из кеша индексов."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10754,7 +10811,7 @@ msgstr ""
"key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан "
"как: Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10762,22 +10819,22 @@ msgstr ""
"Промахи кеша ключей рассчитываются, как соотношение физических чтений "
"сравнительно к запросам чтения (подсчитанное значение)"
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Количество запросов на запись блока в кеш индекса."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Количество физических операций записи блока индексов на диск."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Процентное соотношение физических процессов записи сравнительно к запросам "
"записи (подсчитанное значение)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10788,7 +10845,7 @@ msgstr ""
"одного запроса. Изначальное нулевое значение, означает, что процесса "
"компиляции запроса еще не было."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10796,11 +10853,11 @@ msgstr ""
"Максимальное количество соединений использованных одновременно начиная с "
"запуска сервера."
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10808,20 +10865,20 @@ msgstr ""
"Общее количество открывавшихся таблиц. При большом значении переменной "
"рекомендуется увеличить размер кеша таблиц (table_cache)."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Количество открытых файлов."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Количество открытых потоков (в основном применяется к файлам журналов)."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Количество открытых таблиц."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10831,21 +10888,21 @@ msgstr ""
"указывать на фрагментацию, проблема которой решается выполнением запроса "
"FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Объем свободной памяти для кеша запросов."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
"Количество "попаданий" в кеш запросов, т.е. сколько запросов было "
"удовлетворено запросами, находящимися в кеше."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Количество запросов, добавленных в кеш запросов."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10858,7 +10915,7 @@ msgstr ""
"не использующиеся страницы заменяются новыми) при принятии решения об "
"удаления запроса из кеша."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10866,19 +10923,19 @@ msgstr ""
"Количество запросов, которые оказались некешируемыми или для которых "
"кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Количество запросов, зарегистрированных в кеше."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Состояние отказоустойчивой репликации (пока не реализовано)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10886,13 +10943,13 @@ msgstr ""
"Количество запросов-объединений, выполненных без использования индексов. "
"Если значение переменной не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием поиска по "
"диапазону в таблице, на которую делается ссылка."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10901,7 +10958,7 @@ msgstr ""
"диапазону для выборки строк из вторичной таблицы. Если значение переменной "
"не равно 0, рекомендуется проверить индексы таблиц."
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10910,18 +10967,18 @@ msgstr ""
"диапазону в первой таблице. Обычно значение этой переменной не критично, "
"даже если оно велико."
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Количество запросов-объединений, выполненных с использованием полного поиска "
"по первой таблице."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
"Количество временных таблиц, открытых в настоящий момент подчиненным потоком."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10929,13 +10986,13 @@ msgstr ""
"Общее количество повторов транзакций подчиненным потоком репликации с "
"момента запуска."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Присваивается значение ON, если данный сервер функционирует как подчиненный, "
"подключенный к главному."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10943,12 +11000,12 @@ msgstr ""
"Количество потоков, на создание которых потребовалось более чем "
"slow_launch_time секунд."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Количество запросов, выполнявшихся более long_query_time секунд."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10957,28 +11014,28 @@ msgstr ""
"Количество проходов, сделанных алгоритмом сортировки. При большом значении "
"следует увеличить значение переменной sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
"Количество операций сортировки, выполненных с использованием диапазона."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Количество отсортированных строк."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Количество операций сортировки, выполненных с использованием полного "
"сканирования таблицы."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
"Количество запросов на блокировку таблицы, которые были удовлетворены "
"немедленно."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10990,7 +11047,7 @@ msgstr ""
"производительностью, необходимо сначала оптимизировать свои запросы, а затем "
"разбить свою таблицу (или таблицы) или использовать репликацию."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11000,11 +11057,11 @@ msgstr ""
"вычислить по формуле Threads_created/Connections. Если это значение окрашено "
"в красный цвет - вам следует увеличить thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Количество открытых текущих соединений."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11016,47 +11073,47 @@ msgstr ""
"thread_cache_size (это не даст существенного выигрыша в производительности, "
"при хорошей реализации потоков)."
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Соотношение обращений в кеш потока (подсчитанное значение)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Количество процессов, находящихся в активном состоянии."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Запустить монитор"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Инструкции/Настройки"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Завершено редактирование графиков"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Добавить график"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Упорядочить/отредактировать графики"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Частота обновления"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Столбцы графика"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Расположение гарфика"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -11064,15 +11121,15 @@ msgstr ""
"Расположения графиков сохраняются в локальном хранилище браузера. При "
"наличии сложной настройки, вы можете осуществить ее экспорт."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Восстановить изначальное значение"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Инструкции мониторинга"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11086,7 +11143,7 @@ msgstr ""
"general_log. Будьте внимательны, включение general_log производит увеличение "
"хранимых данных и увеличивает нагрузку на сервер до 15%."
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11098,11 +11155,11 @@ msgstr ""
"phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. "
"Однако, вы все еще можете использовать функции графиков сервера."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Использование мониторинга:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11113,7 +11170,7 @@ msgstr ""
"настройках, или удалить график используя соответствующую иконку на каждом из "
"них."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11125,11 +11182,11 @@ msgstr ""
"будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на "
"любые выражения SELECT, для их последующего анализа."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Примечание:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11142,79 +11199,79 @@ msgstr ""
"небольшие промежутки времени, а так же отключать general_log и очищать его "
"таблицу, когда мониторинг больше не требуется."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Заготовки графиков"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Переменные состояния"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Выберите серии:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Частый мониторинг"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "или задайте имя переменной:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Отобразить в виде значения разницы"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Применить делитель"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Добавить к значениям единицу измерения"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Добавить данные серии"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Очистить серии"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Серии в графике:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Статистика журналов"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Выбранный диапазон времени:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Выберите из какого журнала должна генерироваться статистика."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Результаты сгруппированы по тексту запроса."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Анализ запроса"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -11222,7 +11279,7 @@ msgstr[0] "%d секунда"
msgstr[1] "%d секунды"
msgstr[2] "%d секунд"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11357,7 +11414,7 @@ msgstr "Значение сессии"
msgid "Global value"
msgstr "Глобальное значение"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Скачать"
@@ -11433,39 +11490,39 @@ msgstr "Отсутствуют настроенные сервера"
msgid "New server"
msgstr "Новый сервер"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Язык по умолчанию"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "Предоставить выбор пользователю"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- не выбран -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Сервер по умолчанию"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Конец строки"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Показать"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Загрузить"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Домашняя страница phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Пожертвование"
@@ -11636,8 +11693,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"При необходимости используйте дополнительные настройки безопасности - "
-"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
+"При необходимости используйте дополнительные настройки безопасности - %"
+"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@@ -11703,51 +11760,42 @@ msgstr "Ключ должен содержать символы алфавита
msgid "Wrong data"
msgstr "Ошибочные данные"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Обзор внешних значений"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Для обзора данных использован запрос из закладки \"%s\"."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Вы действительно хотите выполнить данный запрос?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Идентификатор вставленной строки: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Отображает как PHP-код"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Отображает SQL-запрос"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "SQL синтаксис проверен"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Результат SQL-запроса"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Создан"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Метка"
@@ -11760,58 +11808,6 @@ msgstr "Таблица %1$s была успешно изменена"
msgid "The columns have been moved successfully."
msgstr "Поля были успешно перемещены."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Из-за большого количества данных изменение поля невозможно"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Двоичные данные - не редактируются"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Вставить запись"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Отобразить запрос вставки"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "и затем"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Вернуться на предыдущую страницу"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Добавить новую запись"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Вернуться к данной странице"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Редактировать следующую строку"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Для перемещения между полями значения, используйте клавишу TAB, либо CTRL"
-"+клавиши со стрелками - для свободного перемещения"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Продолжить вставку с %s строки"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12397,32 +12393,38 @@ msgstr "Отслеживать выражения изменяющие данн
msgid "Create version"
msgstr "Создать версию"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Выполнить \"запрос по образцу\" (символ шаблона: \"%\") для двух различных "
"столбцов"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Добавочный критерий поиска"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Использовать данное поле для обозначения каждой точки"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Максимальное количество строк для построения"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Обзор/Редакция точек"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Как использовать"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Сбросить"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Другие темы!"
@@ -12817,8 +12819,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Текущее соотношение свободного кеша запросов по отношению к полному кешу "
"запросов составляет %s%%. Значение должно быть выше 80%%"
@@ -12975,8 +12977,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% сортировок вызывает создание временных таблиц, данное значение должно "
"быть ниже 10%%."
@@ -13753,6 +13755,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert установлен в 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Используйте колесо мышки для увеличения или уменьшения участка."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Кликните и перетащите мышкой для перемещения участка."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Для построения графиков, строки конвертируются в числа"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14170,9 +14181,6 @@ msgstr "concurrent_insert установлен в 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Не найден триггер с именем %s"
-#~ msgid "rows"
-#~ msgstr "Обзор"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "строки начиная от"
diff --git a/po/si.po b/po/si.po
index cc78edf03c..039fa18a9d 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-11 19:33+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
-"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: si\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "සියල්ල පෙන්වන්න"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "සියල්ල පෙන්වන්න"
msgid "Page number:"
msgstr "පිටු අංකය:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"ඉලක්කගත බ්රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්රව්සරයේ "
"ආරක්ෂක සැකසුම් අන්තර් කවුළු යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "සෙවීම"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "සෙවීම"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "යන්න"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "යතුරු නම"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "විස්තරය"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "මෙම අගය භාවිතා කරන්න"
@@ -119,12 +119,12 @@ msgstr "වගු විස්තර"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "තීර"
@@ -133,6 +133,7 @@ msgstr "තීර"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "තීර"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "වර්ගය"
@@ -150,12 +151,12 @@ msgstr "වර්ගය"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -194,13 +195,13 @@ msgstr "විස්තරය"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "නැත"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +355,7 @@ msgstr "වගුව"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "පේළි"
@@ -405,28 +406,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%sදෘශ්ය ගොඩනංවනය%s වෙත යන්න"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "සුබෙදන්න"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ආරෝහන"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "අවරෝහන"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "පෙන්වන්න"
@@ -447,8 +448,8 @@ msgid "Del"
msgstr "ඉවත්"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "හෝ"
@@ -517,8 +518,8 @@ msgstr[0] "%2$s වගුව තුල ගැලපීම් %1$s කි"
msgstr[1] "%2$s වගුව තුල ගැලපීම් %1$s කි"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "පිරික්සන්න"
@@ -527,14 +528,14 @@ msgstr "පිරික්සන්න"
msgid "Delete the matches for the %s table?"
msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "ඉවත් කරන්න"
@@ -602,11 +603,11 @@ msgstr "අවධානය සක්රීයයි."
msgid "Tracking is not active."
msgstr "අවධානය අක්රීයයි."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
@@ -617,7 +618,7 @@ msgstr "දසුන"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "අනුරූ කරණය"
@@ -631,20 +632,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s මෙම සේවාදායකයේ පෙරනිමි ගබඩා යන්ත්රයයි."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "තෝරාගත්:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -656,27 +657,27 @@ msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "අපනයනය"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "මුද්රණ දර්ශනය"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "හිස් කරන්න"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -702,11 +703,11 @@ msgstr "වගුව විශ්ලේෂණය කරන්න"
msgid "Add prefix to table"
msgstr "වගුවට නාම මූලයක් එක් කරන්න"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "වගු නාම මූලය ප්රතිස්ථාපනය කරන්න"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න"
@@ -725,8 +726,8 @@ msgstr "අවධානය සක්රීය වගු"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "දත්තගබඩාව"
@@ -744,7 +745,7 @@ msgstr "යාවත්කාලීන කරන ලදි"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "තත්වය"
@@ -845,45 +846,45 @@ msgstr "මූලික ස්ථරය ලෙස OpenStreetMaps භාවිත
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "ජ්යාමිතිය"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "ලක්ෂ්යය"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "%dවන ලක්ෂ්යය"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "ලක්ෂ්යයක් එක් කරන්න"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "රේඛාව"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "පිටත කවය"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "ඇතුලත කවය"
@@ -891,15 +892,15 @@ msgstr "ඇතුලත කවය"
msgid "Add a linestring"
msgstr "රේඛාවක් එක් කරන්න"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "ඇතුල් කවයක් එක් කරන්න"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "බහු අස්රය"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "බහු අස්රයක් එක් කරන්න"
@@ -922,11 +923,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්රම සඳහා කරුණාකර %sලියකියවිලි"
-"%s බලන්න."
+"ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්රම සඳහා කරුණාකර %sලියකියවිලි%"
+"s බලන්න."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -968,7 +969,7 @@ msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තක
msgid "Could not load import plugins, please check your installation!"
msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "%s පොත් සලකුණ සාදන ලදි"
@@ -995,7 +996,7 @@ msgstr ""
"සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1010,7 +1011,7 @@ msgstr "ආපසු"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "frame සහය ඇති බ්රව්සර සමග phpMyAdmin වඩා හොඳින් ක්රියා කරයි."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇත."
@@ -1019,7 +1020,7 @@ msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇ
msgid "Do you really want to execute \"%s\"?"
msgstr "\"%s\" ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
@@ -1105,21 +1106,21 @@ msgstr "වසන්න"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "සජීවී දත්ත හුවමාරු ප්රස්තාරය"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "සජීවී සබඳතා/ක්රියාවලි ප්රස්තාරය"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "සජීවී විමසුම් ප්රස්තාරය"
@@ -1130,23 +1131,23 @@ msgstr "ස්ථිතික දත්ත"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "මුළු එකතුව"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "අනෙකුත්"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1166,7 +1167,7 @@ msgstr "සේවාදායකයේ තදබදය (KiB වලින්)"
msgid "Connections since last refresh"
msgstr "අවසන් යාවත්කාලින කිරීමේ සිට සබැඳුම්"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "ක්රියාවලි"
@@ -1184,7 +1185,7 @@ msgstr "අවසන් යාවත්කාලින කිරීමේ සි
msgid "Questions (executed statements by the server)"
msgstr "ප්රශ්න (සේවාදායකය විසින් ක්රියාත්මක කරන ලද ප්රකාශ)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "විමසුම් සංඛ්යාලේඛන"
@@ -1225,14 +1226,14 @@ msgid "System swap"
msgstr "පද්ධතියේ swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1284,32 +1285,32 @@ msgstr "යැවුණු බයිට ගණන"
msgid "Bytes received"
msgstr "ලැබුණු බයිට ගණන"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "සම්බන්ධතා"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1323,11 +1324,11 @@ msgstr "වගු %d"
msgid "Questions"
msgstr "ප්රශ්න"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "තදබදය"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "සිටුවම්"
@@ -1348,10 +1349,10 @@ msgid "Please add at least one variable to the series"
msgstr "කරුණාකර ශ්රේණියට අවම වශයෙන් එක විචල්යයක්වත් ඇතුලත් කරන්න"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "කිසිවක් නැත"
@@ -1451,7 +1452,7 @@ msgstr "සිටුවම් වෙනස් කිරීම"
msgid "Current settings"
msgstr "වර්තමාන සිටුවම්"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "ප්රස්තාර මාතෘකාව"
@@ -1527,9 +1528,9 @@ msgstr "විශ්ලේෂණය..."
msgid "Explain output"
msgstr "ප්රතිදානය පහදන්න"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "කාලය"
@@ -1625,7 +1626,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "ආනයනය"
@@ -1747,15 +1748,15 @@ msgstr "සුචි සඟවන්න"
msgid "Show indexes"
msgstr "සුචි පෙන්වන්න"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "අන්ය මූල පරීක්ෂාව:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(සක්රිය)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(අක්රිය)"
@@ -1822,7 +1823,7 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න"
msgid "No rows selected"
msgstr "පේළි කිසිවක් තෝරගෙන නැත"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "වෙනස් කරන්න"
@@ -1831,17 +1832,18 @@ msgstr "වෙනස් කරන්න"
msgid "Query execution time"
msgstr "විමසුම ක්රියාත්මක කිරීමේ කාලය"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d වලංගු පේළි අංකයක් නොවේ."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "සුරකින්න"
@@ -1866,77 +1868,69 @@ msgid "Hovering over a point will show its label."
msgstr "ලක්ෂ්යයක් මතින් ගමන් කරන විට එහි ලේබලය පෙන්නුම් කරයි."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "ප්රස්ථාරය ලොකු/කුඩා කර බැලීමට මූසිකයේ රෝදය භාවිතා කරන්න."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "ප්රස්ථාරය මත එහා මෙහා යාමට මූසිකය භාවිතා කර අදින්න."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "පේළියක දත්ත පරීකෂා කිරීමට හා සමහරක් දත්ත වෙනස් කිරීමට ලක්ෂ්යයක් මත ක්ලික් කරන්න."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "ප්රස්තාරයෙහි විශාලත්වය පහළ දකුණු කොණෙන් ඇදීමෙන් වෙනස් කල හැක."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "තීර දෙකක් තෝරන්න"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "එකිනෙකට වෙනස් තීර දෙකක් තෝරන්න"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "විමසුම් ප්රථිඵල"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "ලක්ෂයට අදාල දත්ත"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "නොසලකන්න"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "පිටපත් කරන්න"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "තීරයන් එක් කරන්න"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "සම්බන්දිත මූලය තෝරන්න"
# ප්රාථමික මූලය = Primary key. Source: Glossary of Information Technology
# Terms - ICTA
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "අන්ය මූලය තෝරන්න"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "කරුණාකර ප්රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "පෙන්වීම සඳහා තීරය තෝරාගන්න"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1945,41 +1939,41 @@ msgstr ""
"යන්න?"
# අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "ක්ෂේත්රයට අභිරුචියක් එක් කරන්න "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "සංස්කරණය අවලංගු කිරීමට escape ඔබන්න"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr "ඔබ සංස්කරණය කල දත්ත සුරැකී නැත. දත්ත සුරැකීමෙන් තොරව මෙම පිටුවෙන් ඉවත් වීමට අවශ්යද?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "අනුපිලිවෙල නැවත සකස් කිරීමට අදින්න"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "අනුපිළිවෙල අනුව සැකසීමට ක්ලික් කරන්න"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "තීර පෙන්වීමට/සැඟවීමට ඊතලය ක්ලික් කරන්න"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -1987,44 +1981,44 @@ msgstr ""
"මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ "
"ඇඳීම් ක්රියා විරහිත වනු ඇත."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "සබැඳීම වෙත යන්න"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "තීර නම් පිටපත් කරන්න"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "දත්ත පේළි(ය) පෙන්වන්න"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "මුරපදය උත්පාදනය කරන්න"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "උත්පාදනය කරන්න"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "මුරපදය වෙනස් කරන්න"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "තවත්"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2034,266 +2028,266 @@ msgstr ""
"අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", නවතම ස්ථායි අනුවාදය:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "යාවත්කාලීන"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "තෝරන්න"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "පෙර"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "මීලඟ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "අද දින"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "ජනවාරි"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "පෙබරවාරි"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "මාර්තු"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "අප්රේල්"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "මැයි"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "ජුනි"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "ජූලි"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "අගෝස්තු"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "සැප්තැම්බර්"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "ඔක්තෝම්බර්"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "නොවැම්බර්"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "දෙසැම්බර්"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "ජුනි"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "දෙසැම්බර්"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "ඉරිදා"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "සඳුදා"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "අඟහරුවදා"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "බදාදා"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "බ්රහස්පතින්දා"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "සිකුරාදා"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "සෙනසුරාදා"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "සඳුදා"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "අඟහ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "බ්රහස්"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "සිකුරා"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "සෙනසු"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "ඉරි"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "සඳු"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "අඟ"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "බදා"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "බ්රහ"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "සිකු"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "සෙන"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "සති"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "දින දර්ශන-මාස-වසර"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "කිසිවක් නැත"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "පැය"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "මිනිත්තු"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "තත්පර"
@@ -2344,16 +2338,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "තප්පරයකට"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "මිනිත්තුවකට"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "පැයකට"
@@ -2480,15 +2474,15 @@ msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එ
msgid "Databases"
msgstr "දත්තගබඩා"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "සේවාදායකය"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2500,20 +2494,20 @@ msgid "Structure"
msgstr "සැකිල්ල"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "ඇතුල් කරන්න"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "මෙහෙයුම්"
@@ -2571,12 +2565,12 @@ msgstr "භාවිතා කරන්නන්"
msgid "Synchronize"
msgstr "සමමුහුර්ත කරන්න"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "ද්වීමය ලොගය"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "විචල්යනයන්"
@@ -2593,8 +2587,9 @@ msgid "Engines"
msgstr "යන්ත්රයන්"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "දෝෂය"
@@ -2710,35 +2705,35 @@ msgstr ""
"අතුරුමුහුණත් විචල්යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු "
"ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "පූර්වදර්ශනයක් නොමැත."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "ලබාගන්න"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "%s තේමාව හමු නොවිණි!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "%s තේමාව සඳහා තේමාව ඇති තැන හමු නොවිණි!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "තේමාව"
@@ -2788,21 +2783,21 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"කුඩා දශම සංඛ්යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, "
"0, හා 1.175494351E-38 සිට 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"ද්වී-නියත දශම සංඛ්යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට "
-"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට "
-"1.7976931348623157E+308"
+"ද්වී-නියත දශම සංඛ්යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -"
+"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E"
+"+308"
#: libraries/Types.class.php:305
msgid ""
@@ -3091,8 +3086,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"ඔබ වින්යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s "
"භාවිතා කිරීම අවශ්ය විය හැකිය."
@@ -3195,7 +3190,7 @@ msgstr "හවුල්"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "වගු"
@@ -3246,44 +3241,44 @@ msgstr "විය හැකි අයුතු ප්රයෝජන ගැ
msgid "numeric key detected"
msgstr "සංඛ්යාත්මක යතුරක් අනාවරණය වුණි"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "වින්යාස ගොනුව කියවීමට අසමත් විය"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr "මෙහි සාමාන්ය අරුත වාක්ය වින්යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] සඳහා අගය ඔබගේ වින්යාස ගොනුවේ අඩංගු විය යුතුමය!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "අවලංගු සේවාදායක සුචිය: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්යාසයන් පරීකෂා කර බැලිය යුතුය."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "වින්යසයන්හි වලංගු නැති සත්යාපන ක්රමයක් සිටුවා ඇත:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය."
@@ -3318,8 +3313,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL විමසුම"
@@ -3357,7 +3352,7 @@ msgid "Create PHP Code"
msgstr "PHP කේත සාදන්න"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "අලුත් කරන්න"
@@ -3378,95 +3373,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "පේළිගත"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y දින %I:%M %p ට"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "නොමැති පරාමිතිය:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "ඇරඹුම"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "පෙර"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "මීලඟ"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "අවසන"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" දත්තගබඩාව වෙත යන්න."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "මාරු කිරීමට ක්ලික් කරන්න"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "පරිගණකය තුළ පිරික්සන්න:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "ක්රියාත්මක කරන්න"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "මුද්රණය කරන්න"
@@ -3638,9 +3633,9 @@ msgstr "පෙරනිමි අගය ප්රතිස්ථාපනය
msgid "Allow users to customize this value"
msgstr "මෙම අගය වෙනස් කිරීමට භවිතා කරන්නන්ට ඉඩ දෙන්න"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "ප්රතිසකසන්න"
@@ -3796,7 +3791,7 @@ msgid "Compress on the fly"
msgstr "එවෙලේම හකුළුවන්න"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "වින්යාස ගොනුව"
@@ -3856,7 +3851,7 @@ msgstr "වගු සැකිල්ලට අදාල ක්රියාව
msgid "Show binary contents as HEX by default"
msgstr "පෙරනිමිය ලෙස ද්වීමය දත්ත HEX ලෙස පෙන්වන්න"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න"
@@ -5675,7 +5670,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "සිටුවම් හි ක්රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්රීය කරන්න"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න"
@@ -5815,25 +5810,25 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "තොරතුරු..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5997,12 +5992,12 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්රතිස්
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6187,48 +6182,53 @@ msgstr "ආකෘති-විශේෂී තෝරා ගැනීම්:"
msgid "Language"
msgstr "භාෂාව"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "සංස්කරණය කල දත්ත සුරකින්න"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "තීර අනුපිලිවල ප්රතිෂ්ඨාපනය කරන්න"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "ආරම්භක පේළිය"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "පේළි ගණන"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "ප්රකාරය"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "තිරස්"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "තිරස් (rotated headers)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "සිරස්"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "ශීර්ෂක, පේළි %s කට වරක්"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "පිරික්සන්න"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "යතුර අනුව තෝරන්න"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6246,89 +6246,89 @@ msgstr "යතුර අනුව තෝරන්න"
msgid "Options"
msgstr "විකල්ප"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "අර්ධ පෙළ"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "පූර්ණ පෙළ"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "සබැඳි යතුර"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "සබැඳි දර්ශන තීරය"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "ද්වීමය දත්ත පෙන්වන්න"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB දත්ත පෙන්වන්න"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "බ්රව්සර රූපාන්තරනය සඟවන්න"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Well Known Text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "පේළිය ඉවත් කරන ලදි"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "නවතා දමන්න"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "විමසුම තුල"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "පේළි පෙන්වමින්"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "මුළු එකතුව"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "විමසුම් ප්රථිඵල සඳහා මෙහෙයුම්"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "මුද්රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "ප්රස්තාරගත කරන්න"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "ජ්යාමිතික දත්ත නිරූපණය"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "දසුනක් සාදන්න"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "සබැඳිය හමු නොවිණි"
@@ -6372,7 +6372,7 @@ msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ග
msgid "Buffer Pool"
msgstr "Buffer Pool"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB තත්වය"
@@ -6623,8 +6623,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6745,12 +6745,12 @@ msgstr "MIME වර්ග පෙන්වන්න"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "දායකයා"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "උත්පාදන වේලාව"
@@ -6966,8 +6966,8 @@ msgstr "ජ්යාමිතික නිරූපණයට දත්ත ක
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි."
@@ -7138,6 +7138,96 @@ msgstr "SQL ගැළපුම් ප්රකාරය:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "ශුන්ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "ශ්රිතය"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "සඟවන්න"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "ද්වීමය"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "මෙහි දිග නිසා, මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "ද්වීමය - සංස්කරණය නොකරන්න"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "සංස්කරණය/ඇතුල් කරන්න"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "අනතුරුව"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "පෙර පිටුවට ආපසු යන්න"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "නව පේළියක් එක් කරන්න"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "මෙම පිටුව වෙත ආපසු යන්න"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "මීලඟ පේළිය සංස්කරණය කරන්න"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "අගය"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL විමසුම පෙන්වමින්"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7148,32 +7238,32 @@ msgstr "නැත"
msgid "Convert to Kana"
msgstr "Kana වෙත පරිවර්තනය කරන්න"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "සිට"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "දක්වා"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "ඉදිරිපත් කරන්න"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "වගු නාම මූලයක් එක් කරන්න"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "නාම මූලයක් එක් කරන්න"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "පහත විමසුම ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "වෙනස්කම් නැත"
@@ -7181,11 +7271,6 @@ msgstr "වෙනස්කම් නැත"
msgid "Charset"
msgstr "අක්ෂර කට්ටලය"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "ද්වීමය"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "බල්ගේරියානු"
@@ -7512,18 +7597,10 @@ msgid "Slave status"
msgstr "Slave සේවාදායකයේ තත්වය"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "විචල්යය"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "අගය"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "සේවාදායකයේ හැඳුනුම් අංකය"
@@ -7845,11 +7922,6 @@ msgstr "නෛත්යකය ක්රියාත්මක කරන්
msgid "Routine parameters"
msgstr "නෛත්යක පරාමිති"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "ශ්රිතය"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "හලන ලද ප්රේරකය ප්රතිස්ථාපනය කිරීම අසමත් විය."
@@ -8169,7 +8241,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "මකන්න"
@@ -8177,11 +8249,11 @@ msgstr "මකන්න"
msgid "Columns"
msgstr "තීර"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
@@ -8205,10 +8277,6 @@ msgstr "මෙම විමසුම මෙහි නැවත පෙන්ව
msgid "View only"
msgstr "දර්ශනය කිරීම පමණි"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8392,10 +8460,6 @@ msgstr "මෙහෙයවනය"
msgid "Table Search"
msgstr "වගුව තුල සෙවීම"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "සංස්කරණය/ඇතුල් කරන්න"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8546,8 +8610,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
-"%sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
+"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
+"sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
#: libraries/user_preferences.lib.php:122
msgid "Could not save configuration"
@@ -8603,7 +8667,7 @@ msgstr "ප්රෝටකෝල අනුවාදය"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "භාවිතා කරන්නා"
@@ -8805,10 +8869,6 @@ msgstr "සියල්ල පෙන්වන්න/සඟවන්න"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "සඟවන්න"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "වගු ගණන"
@@ -9002,17 +9062,17 @@ msgstr "ගොනුව නොපවතියි"
msgid "Select binary log to view"
msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "ගොනු"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න"
@@ -9439,8 +9499,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්රසාද ලබාගනුයේ MySQL හි වරප්රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
@@ -9558,7 +9618,7 @@ msgstr "Master සේවාදායකය %s වෙත සාර්ථකව
msgid "This server is configured as master in a replication process."
msgstr "මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක master ලෙස සකසා ඇත."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Master හි තත්වය පෙන්වන්න"
@@ -9699,126 +9759,126 @@ msgstr ""
"මෙම සේවාදායකය අනුරූකරණ ක්රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් "
"කිරීමට ඔබ කැමතිද?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "හසුරුවනය"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "විමසුම් කෑෂ්"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "ත්රෙඩයන්"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "තාවකාලික දත්ත"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "ප්රමාදිත ඇතුළු කිරීම්"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "යතුරු කෑෂ් කිරීම"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "ඈඳුම්"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "තේරීම"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (close) all tables"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "විවෘත වගු පෙන්වන්න"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "උපදායකයන් පෙන්වන්න"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "උපතත්වයන් පෙන්වන්න"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Flush query cache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "ධාවන කාල තොරතුරු"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "සියලුම තත්ත්ව විචල්යයන්"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "අධීක්ෂකය"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "උපදේශකය"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "යාවත්කාලීන කිරීමේ ශ්රීඝ්රතාව: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "පෙරහන්"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "වචනය අඩංගු:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "වර්ගය මත පෙරන්න..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "ආකෘතික අගයන් පෙන්වන්න"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "අදාල සබැඳි:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "විශ්ලේශකය ක්රියාත්මක කරවන්න"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "උපදෙස්"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -9826,7 +9886,7 @@ msgstr ""
"සේවාදායක තත්ත්ව විචල්යයන් අධ්යයනය කිරීමෙන් සේවාදායක විචල්යයන්ට අදාල නිර්දේශ ලබා දීමට උපදේශක "
"පද්ධතියට හැකිය."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -9835,7 +9895,7 @@ msgstr ""
"කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් කරගෙන බවත් එම නිසා "
"එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් සලකන්න."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -9845,7 +9905,7 @@ msgstr ""
"වෙනස්කම් ප්රතිවර්තනය කරන්නේ කෙසේද යන්න දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය "
"තවදුරටත් නරක විය හැකිය."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9856,31 +9916,31 @@ msgstr ""
"කිරීම් ප්රතිවර්තනය කිරීමත් ය."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්රශ්න ගණන: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "ප්රකාශය"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්රමාණය: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "මෙම MySQL සේවාදායකය %1$s තිස්සේ ක්රියාත්මකයි. මෙය ඇරඹුයේ %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -9888,15 +9948,15 @@ msgstr ""
"මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master හා slave "
"ලෙස ක්රියාකරයි."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී master ලෙස ක්රියාකරයි."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්රියාවලියේදී slave ලෙස ක්රියාකරයි."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9904,71 +9964,71 @@ msgstr ""
"සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "අනුරූ කරණයේ තත්වය"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "ලබන ලද"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "යවන ලද"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "උපරිම සමගාමී සම්බන්ධතා"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "අසාර්ථක උත්සාහයන්"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "අත්හැර දමන ලදි"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "හැඳුනුම් අංකය"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "විධානය"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන."
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9976,78 +10036,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10055,7 +10115,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10063,42 +10123,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "අභ්යන්තරව සිදු කෙරුණු ROLLBACK ප්රකාශ ගණන."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්ර හෝ පවිත්ර)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "දැනට අපවිත්රව ඇති පිටු ගණන."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "නිදහස් පිටු ගණන."
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10106,33 +10166,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
msgid ""
"Normally, writes to the InnoDB buffer pool happen in the background. "
"However, if it's necessary to read or create a page and no clean pages are "
@@ -10141,251 +10201,251 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "මුළු දත්ත කියැවුම් ගණන."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "මුළු දත්ත ලියැවුම් ගණන."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "මේ දක්වා ලියැවුණු දත්ත ප්රමාණය, බයිට වලින්."
-#: server_status.php:1362
+#: server_status.php:1365
#, fuzzy
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:1363
+#: server_status.php:1366
#, fuzzy
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:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "සාදන ලද පිටු ගණන."
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "කියවන ලද පිටු ගණන."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "ලියන ලද පිටු ගණන."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්යන්ය කාලය, මිලිතත්පර වලින්."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන."
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10393,99 +10453,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10493,18 +10553,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10512,49 +10572,49 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "අවධානය අක්රීයයි."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "අධීක්ෂණය අරඹන්න"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "උපදෙස්/පිහිටුවීම"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "ප්රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "ප්රස්ථාර එක් කරන්න"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "ප්රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "යාවත්කාලීන කිරීමේ ශ්රීඝ්රතාව"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "ප්රස්ථාරයේ තීර"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "ප්රස්ථාර සැකසුම"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10562,15 +10622,15 @@ msgstr ""
"ප්රස්ථාර සැකැස්ම බ්රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය "
"කර ගැනීමට අවශ්ය විය හැකිය."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "පෙරනිමි අගයන් පිහිටුවන්න"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10584,7 +10644,7 @@ msgstr ""
"general_log ය ඉතා විශාල දත්ත ප්රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය "
"15% දක්වා ඉහල යා හැකි බව සලකන්න"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10596,11 +10656,11 @@ msgstr ""
"MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්රස්ථාර විශේෂාංග "
"භාවිතා කල හැක."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "අධීක්ෂකය භාවිතා කිරීම:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10610,7 +10670,7 @@ msgstr ""
"ප්රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්රස්ථාරය "
"මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10622,11 +10682,11 @@ msgstr ""
"පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල "
"හැක."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "කරුණාවෙන් සලකන්න:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10638,86 +10698,86 @@ msgstr ""
"මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්ය නොවන විට general_log "
"අක්රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "පෙරසැදි ප්රස්ථාර"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "තත්ව විචල්ය(ය)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "ශ්රේණිය තෝරන්න:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "සාමාන්යයෙන් අධීක්ෂණය කරනු ලබන"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "හෝ විචල්ය නාමය යතුරු කරන්න:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "භාජකයක් භාවිතා කරන්න"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "මෙම ශ්රේණිය එක් කරන්න"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "ශ්රේණිය ඉවත් කරන්න"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "ප්රස්ථාරයේ ශ්රේණි:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "ලොග සංඛ්යලේඛන"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "තෝරාගත් කාල පරාසය:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්රකාශ පමණක් ලබාගන්න"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්රකාශ වල අඩංගු විචල්ය දත්ත ඉවත් කරන්න"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "සංඛ්යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "ප්රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "විමසුම් විශ්ලේශකය"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "තත්පර %dක්"
msgstr[1] "තත්පර %dක්"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10851,7 +10911,7 @@ msgstr "සැසි අගය"
msgid "Global value"
msgstr "ගෝලීය අගය"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "බාගත කරන්න"
@@ -10917,39 +10977,39 @@ msgstr "සකස් කෙරුණු සේවාදායක කිසිව
msgid "New server"
msgstr "නව සේවාදායකය"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "පෙරනිමි භාෂාව"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "භාවිත කරන්නාට තෝරා ගෙනීමට ඉඩ දෙන්න"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- කිසිවක් නොමැත -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "පෙරනිමි සේවාදායකය"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "පේළියේ අවසානය"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "පෙන්වන්න"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "පූරණය කරන්න"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin මුල් පිටුව"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "පරිත්යාග කරන්න"
@@ -11143,51 +11203,42 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em]
msgid "Wrong data"
msgstr "වැරදි දත්ත"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "අන්ය අගයන් පිරික්සන්න"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "පහත විමසුම ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP කේත ලෙස පෙන්වමින්"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL විමසුම පෙන්වමින්"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "තහවුරු කරන ලද SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL ප්රතිළුල"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "උත්පාදනය කරන ලද්දේ"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "ලේබලය"
@@ -11202,56 +11253,6 @@ msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලද
msgid "The columns have been moved successfully."
msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "මෙහි දිග නිසා, මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "ද්වීමය - සංස්කරණය නොකරන්න"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "අනතුරුව"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "පෙර පිටුවට ආපසු යන්න"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "නව පේළියක් එක් කරන්න"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "මෙම පිටුව වෙත ආපසු යන්න"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "මීලඟ පේළිය සංස්කරණය කරන්න"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11834,30 +11835,36 @@ msgstr ""
msgid "Create version"
msgstr "අනුවාදය සාදන්න"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "තීර දෙකක් සඳහා \"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "අමතර සෙවීම් නිර්ණායක"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "ලක්ෂ්ය ලේබල ගත කිරීමට මෙම තීරය භාවිත කරන්න"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "උපරිම තීර ගණන"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "ලක්ෂ්ය පිරික්සීම/සංස්කරණය"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "භාවිතා කරන අයුරු"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "ප්රතිසකසන්න"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "තවත් තේමාවන් ලබා ගන්න!"
@@ -12207,8 +12214,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12337,8 +12344,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13044,6 +13051,12 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "ප්රස්ථාරය ලොකු/කුඩා කර බැලීමට මූසිකයේ රෝදය භාවිතා කරන්න."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "ප්රස්ථාරය මත එහා මෙහා යාමට මූසිකය භාවිතා කර අදින්න."
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13294,9 +13307,6 @@ msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත"
#~ msgid "No trigger with name %s found"
#~ msgstr "No valid image path for theme %s found!"
-#~ msgid "rows"
-#~ msgstr "පිරික්සන්න"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "row(s) starting from record #"
diff --git a/po/sk.po b/po/sk.po
index ef6fe156bf..946e0cf95a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 14:52+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: slovak \n"
-"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Zobraziť všetko"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Zobraziť všetko"
msgid "Page number:"
msgstr "Číslo stránky:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"nadradené okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu "
"bezpečnostných nastavení."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Hľadať"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Hľadať"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Vykonaj"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Kľúčový názov"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Popis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Použiť túto hodnotu"
@@ -122,12 +122,12 @@ msgstr "Komentár k tabuľke"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Stĺpec"
@@ -136,6 +136,7 @@ msgstr "Stĺpec"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Stĺpec"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -153,12 +154,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Nulový"
@@ -197,13 +198,13 @@ msgstr "Komentáre"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Nie"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -359,7 +360,7 @@ msgstr "Tabuľka"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Riadkov"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Prepnúť do %svizuálneho návrhára%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Triediť"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Vzostupne"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Zostupne"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Ukázať"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "Zmazať"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Alebo"
@@ -526,8 +527,8 @@ msgstr[1] "%s výskyty v tabuľke %s"
msgstr[2] "%s výskytov v tabuľke %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Prechádzať"
@@ -536,14 +537,14 @@ msgstr "Prechádzať"
msgid "Delete the matches for the %s table?"
msgstr "Odstrániť nájdené záznamy z tabuľky %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Zmazať"
@@ -612,11 +613,11 @@ msgstr "Sledovanie je aktívne."
msgid "Tracking is not active."
msgstr "Sledovanie nie je aktívne."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
@@ -627,7 +628,7 @@ msgstr "Pohľad"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikácia"
@@ -641,20 +642,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Výber:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Označiť všetko"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -666,27 +667,27 @@ msgstr "Zvoliť neoptimálne"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportovať"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Náhľad k tlači"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Vyprázdniť"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -712,11 +713,11 @@ msgstr "Analyzovať tabuľku"
msgid "Add prefix to table"
msgstr "Pridať predponu k tabuľke"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Nahradiť predponu tabuľky"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Skopírovať tabuľku s predponou"
@@ -735,8 +736,8 @@ msgstr "Sledované tabuľky"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databáza"
@@ -754,7 +755,7 @@ msgstr "Aktualizované"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stav"
@@ -854,45 +855,45 @@ msgstr "Použíť OpenStreetMap ako základnú vrstvu"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometria"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Bod"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Bod %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Pridať bod"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linka"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Vonkajší obrys"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Vnútorný obrys"
@@ -900,15 +901,15 @@ msgstr "Vnútorný obrys"
msgid "Add a linestring"
msgstr "Pridať linku"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Pridať vnútorný obrys"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygón"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Pridať polygón"
@@ -931,8 +932,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@@ -981,7 +982,7 @@ msgstr ""
"Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu "
"inštaláciu!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Príkaz %s bol zaradený medzi obľúbené"
@@ -1009,7 +1010,7 @@ msgstr ""
"časový limit behu skriptu v php."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1024,7 +1025,7 @@ msgstr "Späť"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
@@ -1034,7 +1035,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
msgid "Do you really want to execute \"%s\"?"
msgstr "Skutočne chcete vykonať príkaz "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Chystáte sa ZMAZAŤ celú databázu!"
@@ -1121,21 +1122,21 @@ msgstr "Zavrieť"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Upraviť"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Živý graf prevádzky"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Živý graf spojení/procesov"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Živý graf dopytov"
@@ -1146,23 +1147,23 @@ msgstr "Statické data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Celkom"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Ostatné"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1182,7 +1183,7 @@ msgstr "Sieťová prevádzka (v KiB)"
msgid "Connections since last refresh"
msgstr "Spojení od posledného obnovenia"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesy"
@@ -1200,7 +1201,7 @@ msgstr "Dotazov od posledného obnovenia"
msgid "Questions (executed statements by the server)"
msgstr "Dopyty (príkazy vykonané na serveri)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Štatistika dopytov"
@@ -1244,14 +1245,14 @@ msgid "System swap"
msgstr "Stránkovacia oblasť"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1303,32 +1304,32 @@ msgstr "Odoslaných bajtov"
msgid "Bytes received"
msgstr "Prijatých bajtov"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Spojenia"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1342,11 +1343,11 @@ msgstr "%d tabuliek"
msgid "Questions"
msgstr "Dopyty"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Vyťaženie"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Nastavenia"
@@ -1367,10 +1368,10 @@ msgid "Please add at least one variable to the series"
msgstr "Pridajte prosím aspoň jednu hodnotu do série"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Žiadny"
@@ -1470,7 +1471,7 @@ msgstr "Zmeniť nastavenia"
msgid "Current settings"
msgstr "Aktuálne nastavenia"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Názov grafu"
@@ -1559,9 +1560,9 @@ msgstr "Analyzujem..."
msgid "Explain output"
msgstr "Vysvetliť výstup"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Čas"
@@ -1662,7 +1663,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Import"
@@ -1786,19 +1787,19 @@ msgstr "Skryť indexy"
msgid "Show indexes"
msgstr "Zobraziť indexy"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Vypnúť kontrolu cudzích kľúčov"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Zapnuté"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1868,7 +1869,7 @@ msgstr "Zobrazit vyhľadávacie pole"
msgid "No rows selected"
msgstr "Nebol vybraný žiadny riadok"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Zmeniť"
@@ -1877,17 +1878,18 @@ msgstr "Zmeniť"
msgid "Query execution time"
msgstr "Čas behu dopytu"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nie je platné číslo riadku."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Uložiť"
@@ -1912,75 +1914,67 @@ msgid "Hovering over a point will show its label."
msgstr "Pohybom myši nad bodom zobrazíte jeho názov."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Použite koliesko myši na priblíženie alebo oddialenie grafu."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Kliknutím a ťahaním myši sa môžete pohybovať po grafe."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Kliknite na tlačidlo Obnoviť zoom na návrat do pôvodného stavu."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Kliknite na dátový bod pre zobrazenie a prípadnú úpravu dát."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "Graf môžete zvúčšiť potiahnutím za pravý dolný roh."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Reťazce boli pre vykreslenie prevedené na čísla"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Zvoľte dva stĺpce"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Zvoľte dva rôzne stĺpce"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Výsledky dopytu"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Obsah datového bodu"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorovať"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopírovať"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Pridať stĺpce"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Zvoliť odkazovaný kľúč"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Zvoliť cudzí kľúč"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Zoľte, prosím, primárny alebo unikátny kľúč"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Zvoľte, ktoré polia zobraziť"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1988,88 +1982,88 @@ msgstr ""
"Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. "
"Chcete pokračovať?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Pridať voľbu pre stĺpec "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Klávesou ESC ukončíte upravovanie"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr "Na stránke sú neuložené zmeny. Naozaj ju chcete opustiť?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Usporiadajte pretiahnutím"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Kliknite pre zoradenie"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Kliknite pre označenie/odznačenie"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Kliknite na šípku pre zmenu viditeľnosti stĺpca"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "Väčšinu stĺpcov môžete upraviť>br />kliknutím na ich obsah."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Prejsť na odkaz"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Názvy stĺpcov"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Upraviť riadky"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Vytvoriť heslo"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Vytvoriť"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Zmeniť heslo"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Viac"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2079,266 +2073,266 @@ msgstr ""
"Najnovšia verzia je %s a bola vydaná %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", posledná stabilná verzia:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "aktuálne"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Hotovo"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Predchádzajúci"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Ďalší"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Dnes"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Január"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Február"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Marec"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Apríl"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Máj"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Jún"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Júl"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "August"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "September"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Október"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "November"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Nedeľa"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Pondelok"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Utorok"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Streda"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Štvrtok"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Piatok"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ut"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Št"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Pi"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Týž"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "žiadny"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minúty"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekundy"
@@ -2389,16 +2383,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "za sekundu"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "za minútu"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "za hodinu"
@@ -2533,15 +2527,15 @@ msgstr ""
msgid "Databases"
msgstr "Databázy"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2553,20 +2547,20 @@ msgid "Structure"
msgstr "Štruktúra"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vložiť"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operácie"
@@ -2626,12 +2620,12 @@ msgstr "Používateľ"
msgid "Synchronize"
msgstr "Synchronizovať"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binárny log"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Premenné"
@@ -2648,8 +2642,9 @@ msgid "Engines"
msgstr "Systémy"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Chyba"
@@ -2768,35 +2763,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Náhľad nie je dostupný."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "zvoliť"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Predvolený vzhľad %s nebol nájdený!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Vzhľad %s nebol nájdený!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Vzhľad"
@@ -2837,14 +2832,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3104,8 +3099,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@@ -3211,7 +3206,7 @@ msgstr "zdieľaný"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabuľky"
@@ -3262,11 +3257,11 @@ msgstr "možný pokus o exploit"
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Nepodarilo sa načítať konfiguračný súbor"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3274,12 +3269,12 @@ msgstr ""
"Toto je často spôsobené syntaktickou chybou v súbore, prosím skontrolujte "
"chyby vypísané nižšie."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3291,21 +3286,21 @@ msgstr ""
"Direktíva $cfg['PmaAbsoluteUri'] MUSÍ byť nastavená v "
"konfiguračnom súbore!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Chybný index servera: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
@@ -3340,8 +3335,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL dopyt"
@@ -3379,7 +3374,7 @@ msgid "Create PHP Code"
msgstr "Vytvoriť PHP kód"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Obnoviť"
@@ -3400,95 +3395,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Upraviť tu"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilovanie"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ne"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%a %d.%B %Y, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Chýbajúci parameter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Začiatok"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Predchádzajúci"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Ďalší"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Koniec"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Prejsť na databázu "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Kliknite pre prepnutie"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Prechádzať váš počítač:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Žiadny súbor pre nahrávanie"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Spustiť"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Vytlačiť"
@@ -3660,9 +3655,9 @@ msgstr "Obnoviť východziu hodnotu"
msgid "Allow users to customize this value"
msgstr "Povoliť užívateľom prispôsobiť túto hodnotu"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Vynulovať"
@@ -3826,7 +3821,7 @@ msgid "Compress on the fly"
msgstr "Komprimovať za behu"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfiguračný súbor"
@@ -3888,7 +3883,7 @@ msgstr "Navrhnúť štruktúru 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:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Zobraziť binárny obsah v HEX formáte"
@@ -5789,7 +5784,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Povoliť záložku Pre vývojára v nastaveniach"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Skontrolovať najnovšiu verziu"
@@ -5933,7 +5928,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP."
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5941,19 +5936,19 @@ msgstr ""
"Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne "
"nastavený)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Server neodpovedá."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Podrobnosti..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6114,8 +6109,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@@ -6313,50 +6308,55 @@ msgstr ""
msgid "Language"
msgstr "Jazyk"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Adresár pre ukladanie"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Obnoviť poradie stĺpcov"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Prvý riadok"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Počet riadkov"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Režim"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontálnom"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vodorovnom (otočené hlavičky)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikálnom"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Opakovať hlavičku každých %s riadkov"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Prechádzať"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Zoradiť podľa kľúča"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6374,92 +6374,92 @@ msgstr "Zoradiť podľa kľúča"
msgid "Options"
msgstr "Nastavenia"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Čiastočné texty"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Plné texty"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relačný kľúč"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relačné zobrazenie stĺpcov"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Zobraziť binárny obsah"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Zobraziť obsah BLOBu"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Transformácia pri prehliadaní"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Text (Well Known Text)"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
#, fuzzy
msgid "Well Known Binary"
msgstr "Well Known Binary"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Zabiť"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "v dopyte"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Zobrazené riadky"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "celkovo"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dopyt zabral %01.4f s"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operácie s výsledkami dopytu"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Náhľad tlače (s kompletnými textami)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Zobraziť graf"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Zobraziť GIS data"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Vytvoriť pohľad"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Linka nebola nájdená"
@@ -6506,7 +6506,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Vyrovnávacia Pamäť"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stav InnoDB"
@@ -6778,8 +6778,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6904,12 +6904,12 @@ msgstr "Zobraziť MIME typy"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Hostiteľ"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Vygenerované"
@@ -7113,8 +7113,8 @@ msgstr "Neboli nájdené žiadne dáta pre graf."
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)."
@@ -7282,6 +7282,101 @@ msgstr "Režim kompatibility SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcia"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Skryť"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binárny"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Kvôli dĺžke poľa, toto pole sa nemusí dať upraviť"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binárny - neupravujte"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "upload adresár web serveru"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Vložiť"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "a potom"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Vložiť ako nový riadok"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Zobrazujem SQL dotaz"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Späť"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Vložiť nový záznam"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Späť na túto stránku"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Upraviť nasledujúci riadok"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými "
+"smermi klávesy CTRL+šípky"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Hodnota"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Zobrazujem SQL dotaz"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7292,35 +7387,35 @@ msgstr "Žiadny"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Z"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Odošli"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
msgid "Add prefix"
msgstr "Odstrániť index/indexy"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Skutočne chcete vykonať príkaz "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Žiadna zmena"
@@ -7328,11 +7423,6 @@ msgstr "Žiadna zmena"
msgid "Charset"
msgstr "Znaková sada"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binárny"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulharsky"
@@ -7666,18 +7756,10 @@ msgid "Slave status"
msgstr "Zobraziť stav podriadených hostov"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Premenná"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Hodnota"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID servra"
@@ -8036,11 +8118,6 @@ msgstr "Spustiť rutinu"
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcia"
-
#: libraries/rte/rte_triggers.lib.php:89
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
@@ -8383,7 +8460,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Vyčistiť"
@@ -8391,11 +8468,11 @@ msgstr "Vyčistiť"
msgid "Columns"
msgstr "Stĺpce"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Pridať tento SQL dopyt do obľúbených"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Dovoliť používať túto položku všetkým používateľom"
@@ -8419,10 +8496,6 @@ msgstr "Zobraziť tento dopyt znovu"
msgid "View only"
msgstr "Iba prezrieť"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "upload adresár web serveru"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8492,8 +8565,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
-"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
-"%sdocumentation%s."
+"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
+"sdocumentation%s."
#: libraries/tbl_common.inc.php:58
#, fuzzy, php-format
@@ -8625,12 +8698,6 @@ msgstr "Operátor"
msgid "Table Search"
msgstr "Hľadať"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Vložiť"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8840,7 +8907,7 @@ msgstr "Verzia protokolu"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Používateľ"
@@ -9060,10 +9127,6 @@ msgstr "Zobraziť všetko"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Skryť"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Počet tabuliek"
@@ -9221,8 +9284,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
-"%sNastavovacieho skriptu%s."
+"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %"
+"sNastavovacieho skriptu%s."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -9262,17 +9325,17 @@ msgstr "Súbor neexistuje"
msgid "Select binary log to view"
msgstr "Vyberte binárny log na zobrazenie"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Súbory"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Zobraziť skrátene dopyty"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Zobraziť kompletné dopyty"
@@ -9718,13 +9781,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
-"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
-"%sznovunačítanie práv%s predtým ako budete pokračovať."
+"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
+"sznovunačítanie práv%s predtým ako budete pokračovať."
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -9843,7 +9906,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Zobraziť stav master replikácie"
@@ -9984,156 +10047,156 @@ msgstr ""
"Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli "
"by ste ho nakonfigurovať?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Vlákno %s bol úspešne zabité."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
"Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Manipulačná Rutina"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Vyrovnávacia pamäť príkazov"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Počet vlákien"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Dočasné dáta"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Odložené vloženia"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Vyrovnávacia pamäť kľúčov"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Zjednotenia"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Zoraďovanie"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinátor transakcií"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Vyprázdniť (uzavrieť) všetky tabuľky"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Zobraziť podriadené hosty"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Zobraziť stav podriadených hostov"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Stav serveru"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Obnovovacia frekvencia: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Filter"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Obsahujúca slovo:"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Zobraziť otvorené tabuľky"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Súvisiace odkazy:"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Typ dopytu"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Introduction"
msgid "Instructions"
msgstr "Úvod"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10141,31 +10204,31 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Dopytov od spustenia: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Údaj"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Tento MySQL server beží %1$s. Bol spustený %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10173,18 +10236,18 @@ msgstr ""
"Tento server je nakonfigurovaný ako master a slave v "
"replikačnom procese."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Tento MYSQL server pracuje ako slave v replikačnom procese."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10192,11 +10255,11 @@ msgstr ""
"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Stav replikácie"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10204,45 +10267,45 @@ msgstr ""
"Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky "
"servera môžu byť nepresné."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Prijaté"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Odoslané"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "max. súčasných pripojení"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Nepodarených pokusov"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Prerušené"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Príkaz"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10252,16 +10315,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10273,11 +10336,11 @@ msgstr ""
"hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na "
"disk."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Počet dočasných súborov vytvorených servrom mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10285,7 +10348,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10293,7 +10356,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:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10301,23 +10364,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Počet riadkov vložených príkazom INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Počet vykonaných príkazov FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Počet interných príkazov COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10327,7 +10390,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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10337,7 +10400,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10345,7 +10408,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10355,7 +10418,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10364,7 +10427,7 @@ msgstr ""
"čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... "
"DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10377,7 +10440,7 @@ msgstr ""
"kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne "
"nevyužívajú kľúče."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10389,35 +10452,35 @@ msgstr ""
"tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú "
"dostupné indexy."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Počet interných príkazov ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Počet požiadavkov na zmenu riadku v tabuľke."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky."
-#: server_status.php:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Počet nečistých stránok."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Počet voľných stránok."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10427,7 +10490,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:1346
+#: server_status.php:1349
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 "
@@ -10439,11 +10502,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10451,7 +10514,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10459,11 +10522,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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Počet požiadavkov na logické načítavanie."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10471,7 +10534,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:1352
+#: server_status.php:1355
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 "
@@ -10485,88 +10548,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Počet vykonaných fsync() operácií."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Aktuálny počet prebiehajúcich fsync() operácií."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Počet aktuálne prebiehajúcich načítavaní."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Počet aktuálne prebiehajúcich zápisov."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Množstvo už načítaných dát, v bajtoch."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Celkový počet načítaní dát."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Celkový počet zápisov dát."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Množstvo už zapísaných dát, v bajtoch."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Počet požiadaviek na zápis do logovacieho súboru."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Počet fyzických zápisov do logovacieho súboru."
-#: server_status.php:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Počet prebiehajúcich zápisov do logovacieho súboru."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Množstvo bajtov zapísaných do logovacieho súboru."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Počet vytvorených stránok."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10575,51 +10638,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Počet načítaných stránok."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Počet zapísaných stránok."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Počet zámkov na riadky, na ktoré sa čaká."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet riadkov odstránených z InnoDB tabuliek."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet riadkov vložených do InnoDB tabuliek."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Počet načítaných riadkov z InnoDB tabuliek."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet upravených riadkov v InnoDB tabuľkách."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10628,7 +10691,7 @@ msgstr ""
"neboli zapísané na disk. Predtým sa táto hodnota nazývala "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10636,7 +10699,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:1386
+#: server_status.php:1389
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 "
@@ -10645,17 +10708,17 @@ msgstr ""
"Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje "
"najväčšie množstvo blokov, ktoré kedy naraz použité."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Formát importovaného súboru"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10666,26 +10729,26 @@ msgstr ""
"je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu "
"Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10696,17 +10759,17 @@ msgstr ""
"požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované "
"žiadne príkazy."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10714,38 +10777,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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Počet otvorených súborov."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Počet práve otvorených tabuliek."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
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:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Počet zásahov vyrovnávacej pamäti."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Počet príkazov pridaných do vyrovnávacej pamäti."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10757,7 +10820,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10765,19 +10828,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stav failsafe replikácie (zatiaľ neimplementované)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10785,12 +10848,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10799,7 +10862,7 @@ msgstr ""
"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
"vašich tabuliek.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10807,15 +10870,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10823,13 +10886,13 @@ msgstr ""
"Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o "
"znovuobnovenie transakcie."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10837,14 +10900,14 @@ msgstr ""
"Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota "
"slow_launch_time."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10854,23 +10917,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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Počet rozsahom obmedzených zoraďovaní."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Počet zoradených riadkov."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10882,7 +10945,7 @@ msgstr ""
"najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo "
"použiť replikáciu."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10892,11 +10955,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Počet momentálne otvorených spojení."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10907,75 +10970,75 @@ 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:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Sledovanie nie je aktívne."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Počet nespiacich vlákien."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Štart"
-#: server_status.php:1585
+#: server_status.php:1588
#, fuzzy
#| msgid "Introduction"
msgid "Instructions/Setup"
msgstr "Úvod"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "Odstrániť index/indexy"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Obnoviť"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "Stĺpce s textovou oblasťou"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Obnoviť východziu hodnotu"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
#| msgid "Introduction"
msgid "Monitor Instructions"
msgstr "Úvod"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10984,7 +11047,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10992,18 +11055,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11011,11 +11074,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11023,88 +11086,88 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove chart"
msgid "Preset chart"
msgstr "Odstrániť graf"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Vybrať série:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "alebo zadajte meno premennej:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Pridať nového používateľa"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "Series:"
msgid "Series in Chart:"
msgstr "Série:"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Zobraziť štatistiky"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Zvolený časový rozsah:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Typ dopytu"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -11112,7 +11175,7 @@ msgstr[0] "%d sekunda"
msgstr[1] "%d sekundy"
msgstr[2] "%d sekúnd"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11247,7 +11310,7 @@ msgstr "Hodnota sedenia"
msgid "Global value"
msgstr "Globálna hodnota"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Stiahnuť"
@@ -11310,41 +11373,41 @@ msgstr ""
msgid "New server"
msgstr "Webový server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Predvolený jazyk"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Predvolený server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Zobraziť"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokálny"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin Dokumentácia"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11535,53 +11598,44 @@ msgstr ""
msgid "Wrong data"
msgstr "Žiadne dáta"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Prejsť hodnoty cudzích kľúčov"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Skutočne chcete vykonať príkaz "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Zobrazujem ako PHP kód"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Zobrazujem SQL dotaz"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Skontrolované SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Výsledok SQL dopytu"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Vygenerované"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Názov"
@@ -11596,59 +11650,6 @@ msgstr "Tabuľka %1$s bola úspešné upravená"
msgid "The columns have been moved successfully."
msgstr "Vybraní používatelia bol úspešne odstránený."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Kvôli dĺžke poľa, toto pole sa nemusí dať upraviť"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binárny - neupravujte"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Vložiť ako nový riadok"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Zobrazujem SQL dotaz"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "a potom"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Späť"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Vložiť nový záznam"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Späť na túto stránku"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Upraviť nasledujúci riadok"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými "
-"smermi klávesy CTRL+šípky"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12269,38 +12270,44 @@ msgstr ""
msgid "Create version"
msgstr "Vytvoriť verziu"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Skryť parametre vyhľadávania"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Maximálny počet zobrazených riadkov"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Kontrolný užívateľ"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Vynulovať"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Získať viac tém!"
@@ -12662,8 +12669,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12798,8 +12805,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13510,6 +13517,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastavené na 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Použite koliesko myši na priblíženie alebo oddialenie grafu."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Kliknutím a ťahaním myši sa môžete pohybovať po grafe."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Reťazce boli pre vykreslenie prevedené na čísla"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13779,9 +13795,6 @@ msgstr "concurrent_insert je nastavené na 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
-#~ msgid "rows"
-#~ msgstr "Prechádzať"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "riadky začínajúce od riadku #"
@@ -13958,8 +13971,8 @@ msgstr "concurrent_insert je nastavené na 0"
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
-#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
-#~ "%s"
+#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
+#~ "s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"
diff --git a/po/sl.po b/po/sl.po
index a34c10a793..a14f7df9be 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 19:01+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
-"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3);\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Pokaži vse"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Pokaži vse"
msgid "Page number:"
msgstr "Številka strani:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Iskanje"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Iskanje"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Izvedi"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Ime ključa"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Opis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Uporabi to vrednost"
@@ -122,12 +122,12 @@ msgstr "Pripomba tabele"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Stolpec"
@@ -136,6 +136,7 @@ msgstr "Stolpec"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Stolpec"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Vrsta"
@@ -153,12 +154,12 @@ msgstr "Vrsta"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Pripombe"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Vrstic"
@@ -410,28 +411,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Preklopi na %svidni graditelj%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Razvrsti"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Naraščajoče"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Padajoče"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Pokaži"
@@ -452,8 +453,8 @@ msgid "Del"
msgstr "Briši"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ali"
@@ -524,8 +525,8 @@ msgstr[2] "%1$s zadetki v tabeli %2$s"
msgstr[3] "%1$s zadetkov v tabeli %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Prebrskaj"
@@ -534,14 +535,14 @@ msgstr "Prebrskaj"
msgid "Delete the matches for the %s table?"
msgstr "Izbrišem zadetke v tabeli %s?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Izbriši"
@@ -611,11 +612,11 @@ msgstr "Sledenje je aktivno."
msgid "Tracking is not active."
msgstr "Sledenje ni aktivno."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -625,7 +626,7 @@ msgstr "Pogled"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Podvojevanje"
@@ -639,20 +640,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Z označenim:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Označi vse"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -664,27 +665,27 @@ msgstr "Preveri prekoračene"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Izvozi"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Pogled za tiskanje"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Izprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -710,11 +711,11 @@ msgstr "Analiziraj tabelo"
msgid "Add prefix to table"
msgstr "Dodaj predpono tabeli"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Zamenjaj predpono tabele"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopiraj tabelo s predpono"
@@ -733,8 +734,8 @@ msgstr "Sledene tabele"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Zbirka podatkov"
@@ -752,7 +753,7 @@ msgstr "Posodobljeno"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Stanje"
@@ -852,45 +853,45 @@ msgstr "Uporabi OpenStreetMaps kot osnovni sloj"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometrija"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Točka"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Točka %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Dodaj točko"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Daljica"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Zunanji obroč"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Notranji obroč"
@@ -898,15 +899,15 @@ msgstr "Notranji obroč"
msgid "Add a linestring"
msgstr "Dodaj daljico"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Dodaj notranji obroč"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Večkotnik"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Dodaj večkotnik"
@@ -929,8 +930,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -980,7 +981,7 @@ msgid "Could not load import plugins, please check your installation!"
msgstr ""
"Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Zaznamek %s je ustvarjen"
@@ -1008,7 +1009,7 @@ msgstr ""
"povečate vaše časovne omejitve PHP."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1023,7 +1024,7 @@ msgstr "Nazaj"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
@@ -1032,7 +1033,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
msgid "Do you really want to execute \"%s\"?"
msgstr "Ali res želite izvesti \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
@@ -1118,21 +1119,21 @@ msgstr "Zapri"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Uredi"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Grafikon prometa v živo"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Grafikon povezav/procesov v živo"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Grafikon poizvedb v živo"
@@ -1143,23 +1144,23 @@ msgstr "Statični podatki"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Skupaj"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Drugo"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1179,7 +1180,7 @@ msgstr "Promet strežnika (v KiB)"
msgid "Connections since last refresh"
msgstr "Povezav od zadnje osvežitve"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesi"
@@ -1197,7 +1198,7 @@ msgstr "Vprašanja od zadnje osvežitve"
msgid "Questions (executed statements by the server)"
msgstr "Vprašanja (izvedene poizvedbe strežnika)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Statistika poizvedb"
@@ -1242,14 +1243,14 @@ msgid "System swap"
msgstr "Sistemska izmenjava"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1301,32 +1302,32 @@ msgstr "Poslanih bajtov"
msgid "Bytes received"
msgstr "Prejetih bajtov"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Povezave"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1340,11 +1341,11 @@ msgstr "%d tabel(a)"
msgid "Questions"
msgstr "Vprašanja"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Promet"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Nastavitve"
@@ -1365,10 +1366,10 @@ msgid "Please add at least one variable to the series"
msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Brez"
@@ -1468,7 +1469,7 @@ msgstr "Spremeni nastavitve"
msgid "Current settings"
msgstr "Trenutne nastavitve"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Naslov grafikona"
@@ -1551,9 +1552,9 @@ msgstr "Analiziranje ..."
msgid "Explain output"
msgstr "Razloži izhod"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Čas"
@@ -1651,7 +1652,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Uvozi"
@@ -1771,15 +1772,15 @@ msgstr "Skrij indekse"
msgid "Show indexes"
msgstr "Pokaži indekse"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Preverjanje tujih ključev:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Omogočeno)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Onemogočeno)"
@@ -1846,7 +1847,7 @@ msgstr "Prikaži polje poizvedbe"
msgid "No rows selected"
msgstr "Ni izbranih vrstic"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Spremeni"
@@ -1855,17 +1856,18 @@ msgstr "Spremeni"
msgid "Query execution time"
msgstr "Čas izvajanja poizvedbe"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d ni veljavna številka vrstice."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Shrani"
@@ -1890,77 +1892,69 @@ msgid "Hovering over a point will show its label."
msgstr "Prehod z miško čez točko bo pokazalo njeno oznako."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Uporabite miškin kolešček za povečevanje ali pomanjševanje izrisa."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Kliknite in povlecite miško za premikanje po izrisu."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Kliknite povezavo za ponastavitev povečave za vrnitev na prvotno stanje."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Kliknite podatkovno točko za ogled in morebitno urejanje podatkovne vrstice."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Nizi so pri izrisovanju pretvorjeni v cela števila"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Izberite dva stolpca"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Izberite dva različna stolpca"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Rezultati poizvedbe"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Vsebina kazalca podatkov"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Prezri"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopiraj"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Dodaj stolpce"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Izberite referenčni ključ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Izberite tuji ključ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Prosimo, izberite primarni ključ ali unikatni ključ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Izberite stolpec za prikaz"
-#: js/messages.php:345
+#: js/messages.php:341
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them. Do you want to continue?"
@@ -1968,15 +1962,15 @@ msgstr ""
"Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. "
"Želite nadaljevati?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Dodaj možnost za stolpec "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Pritisnite ubežnico (escape) za prekinitev urejanja"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1984,27 +1978,27 @@ msgstr ""
"Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da "
"želite zapustiti stran, preden shranite podatke?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Povlecite za preureditev"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Kliknite za razvrstitev"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Kliknite za označitev/opustitev"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Dvakrat kliknite za kopiranje imena stolpca"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Kliknite spustno puščico za preklop vidnosti stolpcev"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2013,47 +2007,47 @@ msgstr ""
"potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju "
"morda ne bodo delovale."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Večino stolpcev lahko urejate neposredno s klikom na njihovo vsebino."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Pojdi na povezavo"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Kopiraj ime stolpca"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
"Z desnim miškinim gumbom kliknite na ime stolpca, da ga skopirate v "
"odložišče."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Prikaži podatkovno vrstico(-e)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Ustvari geslo"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Ustvari"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Spremeni geslo"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Več"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2063,266 +2057,266 @@ msgstr ""
"Najnovejša različica je %s, izdana %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", zadnja ustaljena različica:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "posodobljeno"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Končano"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Prej"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Nasl"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Danes"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "januar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "februar"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "marec"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "april"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "maj"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "junij"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "julij"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "avgust"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "september"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "november"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "nedelja"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "ponedeljek"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "torek"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "sreda"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "četrtek"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "petek"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "sre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "sob"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "ne"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "po"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "to"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "sr"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "če"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "pe"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "so"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "ted."
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "brez"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Ura"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuta"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekunda"
@@ -2375,16 +2369,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
"Neveljaven znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2$s«"
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "na sekundo"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "na minuto"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "na uro"
@@ -2516,15 +2510,15 @@ msgstr ""
msgid "Databases"
msgstr "Zbirke podatkov"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Strežnik"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2536,20 +2530,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Vstavi"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2607,12 +2601,12 @@ msgstr "Uporabniki"
msgid "Synchronize"
msgstr "Sinhroniziraj"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Dvojiški dnevnik"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Spremenljivke"
@@ -2629,8 +2623,9 @@ msgid "Engines"
msgstr "Pogoni"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Napaka"
@@ -2754,35 +2749,35 @@ msgstr ""
"spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je "
"bila struktura tabele spremenjena."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Za temo %s ni bila najdena veljavna pot slik!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Predogled ni na voljo."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "uporabi"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Privzete teme %s nisem našel!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s ni bila najdena!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Pot teme ni bila najdena za temo %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Motiv"
@@ -2836,20 +2831,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E"
"+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od "
-"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od "
+"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -"
+"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od "
"2,2250738585072014E-308 do 1,7976931348623157E+308"
#: libraries/Types.class.php:305
@@ -3144,8 +3139,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@@ -3249,7 +3244,7 @@ msgstr "deljeno"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabele"
@@ -3300,11 +3295,11 @@ msgstr "možno izkoriščanje"
msgid "numeric key detected"
msgstr "zaznana številska tipka"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Ne morem prebrati konfiguracijske datoteke"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3312,12 +3307,12 @@ msgstr ""
"To po navadi pomeni, da ima skladenjsko napako; prosimo, preverite vse "
"spodaj prikazane napake."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3325,23 +3320,23 @@ msgstr ""
"Ukaz [code]$cfg['PmaAbsoluteUri'][/code] MORA biti določen v konfiguracijski "
"datoteki!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Neveljaven indeks strežnika: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo "
"konfiguracijo."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
@@ -3376,8 +3371,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "Poizvedba SQL"
@@ -3415,7 +3410,7 @@ msgid "Create PHP Code"
msgstr "Ustvari kodo PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Osveži"
@@ -3436,95 +3431,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "V vrstici"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profiliranje"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y ob %H.%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Manjkajoč parameter:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Začetek"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Prejšnja"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Naslednja"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Konec"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Preskoči na zbirko podatkov "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Kliknite za preklop"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Prebrskajte svoj računalnik:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Nobene datoteke ni za naložiti"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Izvedi"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Natisni"
@@ -3697,9 +3692,9 @@ msgstr "Povrni privzeto vrednost"
msgid "Allow users to customize this value"
msgstr "Dovoli uporabnikom prilagajati to vrednost"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Ponastavi"
@@ -3864,7 +3859,7 @@ msgid "Compress on the fly"
msgstr "Stisni med izvajanjem"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfiguracijska datoteka"
@@ -3924,7 +3919,7 @@ msgstr "Skrij dejanja strukture tabele"
msgid "Show binary contents as HEX by default"
msgstr "Privzeto prikaži dvojiške vsebine kot HEX"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Prikaži dvojiške vsebine kot HEX"
@@ -4651,7 +4646,6 @@ msgstr ""
"Najmanjše število tabel, potrebnih za prikaz polja za filtriranje tabel"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Najmanjše število zbirk podatkov, potrebnih za prikaz polja za filtriranje "
@@ -5819,7 +5813,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Omogoči zavihek Razvijalec v nastavitvah"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Preveri za najnovejšo različico"
@@ -5959,7 +5953,7 @@ msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP."
msgid "possible deep recursion attack"
msgstr "možen napad globoke rekurzije"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5967,19 +5961,19 @@ msgstr ""
"Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno "
"konfigurirana)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Strežnik se ne odziva."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Podrobnosti ..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6142,8 +6136,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@@ -6337,48 +6331,53 @@ msgstr "Možnosti odvisne od oblike:"
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Shrani urejene podatke"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Obnovi vrstni red stolpcev"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Začetna vrstica"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Število vrstic"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Način"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "vodoravnem"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "vodoravno (zasukani naslovi)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "navpičnem"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Glave vsakih %s vrstic"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "vrstic"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Uredi po ključu"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6396,89 +6395,89 @@ msgstr "Uredi po ključu"
msgid "Options"
msgstr "Možnosti"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Delna besedila"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Polna besedila"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Relacijski ključ"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Relacijski prikazni stolpec"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Prikaži dvojiške vsebine"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Prikaži vsebine BLOB"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Skrij pretvorbo z brskalnikom"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Dobro poznano besedilo"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Dobro poznana dvojiška datoteka"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Prekini proces"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "v poizvedbi"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Prikazujem vrstice"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "skupaj"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Poizvedba je potrebovala %01.4f s"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Dejanja rezultatov poizvedbe"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Pogled za tiskanje (s polnimi besedili)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Prikaži grafikon"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Predstavi podatke GIS"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Ustvari pogled"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Povezave ni mogoče najti"
@@ -6526,7 +6525,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Zaloga medpomnilnika"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Stanje InnoDB"
@@ -6819,8 +6818,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@@ -6945,12 +6944,12 @@ msgstr "Prikaži vrste MIME"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Gostitelj"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Čas nastanka"
@@ -7170,8 +7169,8 @@ msgstr "Za predstavitev GIS ni najdenih podatkov."
msgid "GLOBALS overwrite attempt"
msgstr "poskus prepisa GLOBALS"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)."
@@ -7348,6 +7347,98 @@ msgstr "Združljivostni način SQL:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Skrij"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Dvojiško"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Zaradi njegove dolžine stolpca morda ne bo mogoče urejati"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Dvojiško - ne urejaj"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "imenik za nalaganje datotek"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Uredi/Vstavi"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Nadaljuj vstavljanje z %s vrsticami"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "in potem"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Vstavi kot novo vrstico"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Vstavi kot novo vrstico in presliši napake"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Prikaži poizvedbo insert"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Pojdi nazaj na prejšnjo stran"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Vstavi še eno novo vrstico"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Pojdi nazaj na stran"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Uredi naslednjo vrstico"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za "
+"premik kamor koli"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vrednost"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Prikazovanje poizvedbe SQL"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Id vstavljene vrstice: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7358,32 +7449,32 @@ msgstr "Nobeno"
msgid "Convert to Kana"
msgstr "Pretvori v kano"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Od"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Za"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Pošlji"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Dodaj predpono tabele"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Dodaj predpono"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Ali res želite izvesti naslednjo poizvedbo?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Brez sprememb"
@@ -7391,11 +7482,6 @@ msgstr "Brez sprememb"
msgid "Charset"
msgstr "Nabor znakov"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Dvojiško"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bolgarsko"
@@ -7727,18 +7813,10 @@ msgid "Slave status"
msgstr "Stanje podrejenca"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Spremenljivka"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vrednost"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID strežnika"
@@ -8068,11 +8146,6 @@ msgstr "Izvedi rutino"
msgid "Routine parameters"
msgstr "Parametri rutine"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Oprostite, zavrženega sprožilca nam ni uspelo obnoviti."
@@ -8394,7 +8467,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvedi poizvedbo/poizvedbe SQL na zbirki podatkov %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Počisti"
@@ -8402,11 +8475,11 @@ msgstr "Počisti"
msgid "Columns"
msgstr "Stolpci"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Označi to poizvedbo SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
@@ -8430,10 +8503,6 @@ msgstr "Ponovno pokaži poizvedbo v tem oknu"
msgid "View only"
msgstr "Samo pogled"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "imenik za nalaganje datotek"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8629,10 +8698,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Iskanje po tabeli"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Uredi/Vstavi"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8850,7 +8915,7 @@ msgstr "Različica protokola"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Uporabnik"
@@ -8991,7 +9056,6 @@ msgid "No databases"
msgstr "Brez zbirk podatkov"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Filtriraj zbirke podatkov po imenu"
@@ -9072,10 +9136,6 @@ msgstr "Skrij/Pokaži vse"
msgid "Hide/Show Tables with no relation"
msgstr "Skrij/Pokaži tabele brez razmerij"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Skrij"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Število tabel"
@@ -9270,17 +9330,17 @@ msgstr "Datoteka ne obstaja"
msgid "Select binary log to view"
msgstr "Izberite dvojiški dnevnik za pregled"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Skrči prikazane poizvedbe"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Pokaži celotne poizvedbe"
@@ -9721,8 +9781,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
@@ -9848,7 +9908,7 @@ msgstr "Glavni strežnik je uspešno spremenjen v %s"
msgid "This server is configured as master in a replication process."
msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Pokaži stanje glavnega strežnika"
@@ -9998,126 +10058,126 @@ msgstr ""
"Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite "
"konfigurirati?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Nit %s je bila prekinjena."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Upravljavec"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Predpomnilnik poizvedb"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Niti"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Začasni podatki"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Zakasnjena vstavljanja"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Predpomnilnik ključev"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Stiki"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Razvrščanje"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinator transakcij"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Izplakni (zapri) vse tabele"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Pokaži odprte tabele"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Prikaži gostitelje podrejencev"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Prikaži stanje podrejencev"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Izplakni predpomnilnik poizvedb"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Podatki o izvajanju"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Vse spremenljivke stanja"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Nadziranje"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Svetovalec"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Hitrost osveževanja: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filtri"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Vsebuje besedo:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Prikaži samo opozorilne vrednosti"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtriraj po kategoriji ..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Prikaži neoblikovane vrednosti"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Sorodne povezave:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Zaženi analitik"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Navodila"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10125,7 +10185,7 @@ msgstr ""
"Svetovalni sistem lahko nudi priporočila o strežniških spremenljivkah tako, "
"da analizira spremenljivke stanja strežnika."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10134,7 +10194,7 @@ msgstr ""
"Kakor koli, pomnite, da sistem nudi priporočila, ki temeljijo na preprostih "
"računih in splošnih smernicah, ki morda ne ustrezajo vašemu sistemu."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10145,7 +10205,7 @@ msgstr ""
"razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen "
"učinek."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10156,31 +10216,31 @@ msgstr ""
"podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Vprašanj od zagona: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Izjave"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "Št."
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Promet omrežja od zagona: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Strežnik MySQL deluje že %1$s. Zagnal se je %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10188,18 +10248,18 @@ msgstr ""
"Strežnik MySQL deluje kot glavni strežnik in podrejenec v "
"postopku podvojevanja."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Strežnik MySQL deluje kot podrejenec v postopku podvojevanja."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10207,11 +10267,11 @@ msgstr ""
"Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite "
"razdelek o podvojevanju."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Stanje podvojevanja"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10219,35 +10279,35 @@ msgstr ""
"Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta "
"statistika, kot jo poroča strežnik MySQL, morda napačna."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Prejeto"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Poslano"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "največ sočasnih povezav"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Neuspeli poizkusi"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Prekinjeno"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Ukaz"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10255,11 +10315,11 @@ msgstr ""
"Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil "
"povezave."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Število spodletelih poskusov povezave s strežnikom MySQL."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10269,18 +10329,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10292,11 +10352,11 @@ msgstr ""
"povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile "
"na pomnilniku namesto na disku."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Koliko začasnih datotek je ustvaril mysqld."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10304,7 +10364,7 @@ msgstr ""
"Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril "
"med izvajanjem stavkov."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10312,7 +10372,7 @@ msgstr ""
"Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke "
"napake (najverjetneje podvojen ključ)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10320,23 +10380,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Število zapisanih vrstic INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Število izvedenih izjav FLUSH."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Število notranjih izjav COMMIT."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Število izbrisov vrstice iz tabele."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10346,7 +10406,7 @@ msgstr ""
"navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat "
"so bile tabele odkrite."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10356,7 +10416,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10365,7 +10425,7 @@ msgstr ""
"visoka, je to dober znak, da so vaše poizvedbe in tabele primerno "
"indeksirane."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10375,7 +10435,7 @@ msgstr ""
"povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če "
"pregledujete indeks."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10383,7 +10443,7 @@ msgstr ""
"Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek "
"branja se uporablja predvsem za optimizacijo ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10395,7 +10455,7 @@ msgstr ""
"Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih "
"tabel, ali stike, ki ne uporabljajo ključev pravilno."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10407,36 +10467,36 @@ msgstr ""
"tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo "
"prednosti indeksov, ki jih imate."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Število notranjih izjav ROLLBACK."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Število zahtev za posodobitev vrstice v tabeli."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Število zahtev za vstavitev vrstice v tabelo."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Število trenutno umazanih strani."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Število prostih strani."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10446,7 +10506,7 @@ msgstr ""
"trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga "
"ne morejo biti izplaknjene ali odstranjene."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10458,11 +10518,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Skupna velikost zaloge medpomnilnika, v straneh."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10470,7 +10530,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10478,11 +10538,11 @@ msgstr ""
"Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB "
"izvaja zaporedno pregledovanje celotne tabele."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10490,7 +10550,7 @@ msgstr ""
"Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge "
"medpomnilnika in je moral izvesti enostransko branje."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10504,52 +10564,52 @@ msgstr ""
"čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi "
"morala biti vrednost majhna."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Število dozdajšnjih posegov fsync()."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Trenutno število čakajočih posegov fsync()."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Trenutno število čakajočih branj."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Trenutno število čakajočih pisanj."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Količina do zdaj prebranih podatkov, v bajtih."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Skupno število branj podatkov."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Skupno število zapisovanj podatkov."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Količina do zdaj zapisanih podatkov, v bajtih."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10557,35 +10617,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Število zahtev pisanja v dnevnik."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Število fizičnih pisanj v dnevniško datoteko."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Število pisanj fsync() storjenih v dnevniško datoteko."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Število čakajoče dnevniške datoteke fsyncs."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Čakajoča pisanja v dnevniško datoteko."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Število bajtov zapisanih v dnevniško datoteko."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Število ustvarjenih strani."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10593,51 +10653,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Število prebranih strani."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Število zapisanih strani."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Število zaklepov vrstic, na katere se trenutno čaka."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Število čakanj na zaklepe vrstic."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Število vrstic izbrisanih iz tabel InnoDB."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Število vrstic vstavljenih v tabele InnoDB."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Število vrstic prebranih iz tabel InnoDB."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Število vrstic posodobljenih v tabelah InnoDB."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10646,7 +10706,7 @@ msgstr ""
"vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot "
"Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -10654,7 +10714,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:1386
+#: server_status.php:1389
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 "
@@ -10664,15 +10724,15 @@ msgstr ""
"dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli "
"naenkrat v uporabi."
-#: server_status.php:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10682,7 +10742,7 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10690,22 +10750,22 @@ msgstr ""
"Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v "
"primerjavi z zahtevami za branje (izračunana vrednost)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana "
"vrednost)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10716,17 +10776,17 @@ msgstr ""
"enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena "
"poizvedba."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10734,19 +10794,19 @@ msgstr ""
"Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel "
"najverjetneje premajhen."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Število odprtih datotek."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Število odprtih tabel."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10756,19 +10816,19 @@ msgstr ""
"število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z "
"izvedbo stavka FLUSH QUERY CACHE."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Količina prostega spomina za predpomnilnik poizvedb."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Število zadetkov predpomnilnika."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Število poizvedb dodanih v predpomnilnik."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10781,7 +10841,7 @@ msgstr ""
"uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere "
"poizvedbe naj odstrani iz predpomnilnika."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10789,19 +10849,19 @@ msgstr ""
"Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene "
"zaradi nastavitve query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Število zabeleženih poizvedb v predpomnilniku."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Skupno število blokov v predpomnilniku poizvedb."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10809,11 +10869,11 @@ msgstr ""
"Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno "
"preverite indekse vaših tabel."
-#: server_status.php:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10821,7 +10881,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10829,16 +10889,16 @@ msgstr ""
"Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni "
"kritično, četudi je veliko.)"
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10846,11 +10906,11 @@ msgstr ""
"Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti "
"SQL podrejenca."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10858,12 +10918,12 @@ msgstr ""
"Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time "
"sekund."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10873,23 +10933,23 @@ msgstr ""
"Če je vrednost velika, razmislite o povečanju sistemske spremenljivke "
"sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Število razvrščanj, ki so bila storjena z razponi."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Število razvrščenih vrstic."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Koliko krat je bil zaklep tabele pridobljen takoj."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10901,7 +10961,7 @@ msgstr ""
"optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele "
"ali uporabite podvojevanje."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10911,11 +10971,11 @@ msgstr ""
"izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, "
"povečajte svoj thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Število trenutno odprtih povezav."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10926,47 +10986,47 @@ 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:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Število niti, ki ne spijo."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Začni nadziranje"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Navodila/Namestitev"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Preurejanje/urejanje grafikonov je končano"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Dodaj grafikon"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Preuredi/uredi grafikone"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Hitrost osveževanja"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Stolpci grafikona"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Razvrstitev grafikonov"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10974,15 +11034,15 @@ msgstr ""
"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate "
"zapleteno nastavitev, jo boste morda želeli izvoziti."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Povrni na privzeto"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Navodila nadziranja"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10996,7 +11056,7 @@ msgstr ""
"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in "
"poveča obremenitev strežnika do 15 %"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11008,11 +11068,11 @@ msgstr ""
"tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate "
"strežniške zmožnosti izrisa grafikonov."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Uporaba monitorja:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11023,7 +11083,7 @@ msgstr ""
"pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem "
"grafikonu."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11035,11 +11095,11 @@ msgstr ""
"grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko "
"kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Prosimo, pomnite:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11052,79 +11112,79 @@ msgstr ""
"časovni razpon ter onemogočite general_log in počistite njene tabele, ko "
"nadziranja ne potrebujete več."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Prednastavljeni grafikon"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Spremenljivke stanja"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Izberite serije:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Pogosto nadzirano"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "ali vnesite ime spremenljivke:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Prikaži kot vrednost razlike"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Uporabi delitelja"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Pripni enoto k vrednostim podatkov"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Dodaj serijo"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Počisti serije"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Serije v grafikonu:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Statistika dnevnikov"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Izbrano časovno območje:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Rezultati so združeni po besedilu poizvedbe."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Analitik poizvedb"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
@@ -11133,7 +11193,7 @@ msgstr[1] "%d sekundi"
msgstr[2] "%d sekunde"
msgstr[3] "%d sekund"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11270,7 +11330,7 @@ msgstr "Vrednost seje"
msgid "Global value"
msgstr "Skupna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Prenesi"
@@ -11344,39 +11404,39 @@ msgstr "Ni konfiguriranih strežnikov"
msgid "New server"
msgstr "Nov strežnik"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Privzet jezik"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "naj uporabnik izbere"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- noben -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Privzet strežnik"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Konec vrstice"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Prikaži"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Naloži"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "Domača stran phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Daruj"
@@ -11600,51 +11660,42 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
msgid "Wrong data"
msgstr "Napačni podatki"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Prebrskaj tuje vrednosti"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Ali res želite izvesti naslednjo poizvedbo?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Id vstavljene vrstice: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Prikazovanje kot koda PHP"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Prikazovanje poizvedbe SQL"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Preverjen SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Rezultat SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Ustvaril"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Oznaka"
@@ -11657,58 +11708,6 @@ msgstr "Tabela %1$s je bila uspešno spremenjena"
msgid "The columns have been moved successfully."
msgstr "Stolpce sem uspešno premaknil."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Zaradi njegove dolžine stolpca morda ne bo mogoče urejati"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Dvojiško - ne urejaj"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Vstavi kot novo vrstico"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Vstavi kot novo vrstico in presliši napake"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Prikaži poizvedbo insert"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "in potem"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Pojdi nazaj na prejšnjo stran"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Vstavi še eno novo vrstico"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Pojdi nazaj na stran"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Uredi naslednjo vrstico"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za "
-"premik kamor koli"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Nadaljuj vstavljanje z %s vrsticami"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12294,31 +12293,37 @@ msgstr "Sledi tem stavkom upravljanja s podatki:"
msgid "Create version"
msgstr "Ustvari različico"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Dodatni iskalni pogoji"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Uporabite ta stolpec za označevanje vsake točke"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Največje število vrstic za izris"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Prebrskaj/Uredi točke"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Kako uporabljati"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Ponastavi"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Dobi več preoblek!"
@@ -12701,8 +12706,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s "
"skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%"
@@ -12857,8 +12862,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja "
"od 10 %%."
@@ -13613,6 +13618,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert je nastavljeno na 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Uporabite miškin kolešček za povečevanje ali pomanjševanje izrisa."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Kliknite in povlecite miško za premikanje po izrisu."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Nizi so pri izrisovanju pretvorjeni v cela števila"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -14045,9 +14059,6 @@ msgstr "concurrent_insert je nastavljeno na 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Najti ni mogoče nobenega sprožilca z imenom %s"
-#~ msgid "rows"
-#~ msgstr "vrstic"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "vrstic naprej od vrstice #"
diff --git a/po/sq.po b/po/sq.po
index b154e596e5..962a0aafbf 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: albanian \n"
-"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Shfaqi të gjithë"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Shfaqi të gjithë"
msgid "Page number:"
msgstr "Numri i faqes:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të "
"ndalojnë përditësimet nëpërmjet dritareve."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Kërko"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Kërko"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Zbato"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Emri i kyçit"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Përshkrimi"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Përdor këtë vlerë"
@@ -120,12 +120,12 @@ msgstr "Komentet e tabelës"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -136,6 +136,7 @@ msgstr "Emrat e kollonave"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Emrat e kollonave"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Lloji"
@@ -153,12 +154,12 @@ msgstr "Lloji"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Komente"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Jo"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -367,7 +368,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "rreshta"
@@ -420,28 +421,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Kalo tek tabela e kopjuar"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Renditja"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Në ngjitje"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Në zbritje"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Shfaq"
@@ -462,8 +463,8 @@ msgid "Del"
msgstr "Fshi"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ose"
@@ -537,8 +538,8 @@ msgstr[0] "%s korrispondon(jnë) tek tabela %s"
msgstr[1] "%s korrispondon(jnë) tek tabela %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Shfleto"
@@ -548,14 +549,14 @@ msgstr "Shfleto"
msgid "Delete the matches for the %s table?"
msgstr "Dump i të dhënave për tabelën"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Fshi"
@@ -632,11 +633,11 @@ msgstr "Gjurmimi është aktiv."
msgid "Tracking is not active."
msgstr "Gjurmimi nuk është aktiv."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -646,7 +647,7 @@ msgstr "Paraqitje"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikimi"
@@ -661,20 +662,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "N.q.s. të zgjedhur:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Zgjidh gjithçka"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -686,27 +687,27 @@ msgstr "Zgjidh të mbingarkuarit"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksporto"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Shfaq për printim"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Zbraz"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -732,13 +733,13 @@ msgstr "Analizo tabelën"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, 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:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -760,8 +761,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databazat"
@@ -780,7 +781,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Gjendja"
@@ -888,48 +889,48 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
msgid "Add a point"
msgstr "Shto një fushë të re"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Rreshta që mbarojnë me"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -939,17 +940,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Shto një përdorues të ri"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Shto një përdorues të ri"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
msgid "Add a polygon"
msgstr "Shto një fushë të re"
@@ -972,8 +973,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1013,7 +1014,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1036,7 +1037,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1051,7 +1052,7 @@ msgstr "Mbrapa"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames"
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
@@ -1061,7 +1062,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
msgid "Do you really want to execute \"%s\"?"
msgstr "Konfermo: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
@@ -1165,23 +1166,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Ndrysho"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Zgjedhja e serverit"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "query SQL"
@@ -1193,23 +1194,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Gjithsej"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr "."
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1231,7 +1232,7 @@ msgstr "Zgjedhja e serverit"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Proceset"
@@ -1251,7 +1252,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statistikat e rreshtave"
@@ -1296,14 +1297,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1361,32 +1362,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Marrë"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Lidhje"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1402,11 +1403,11 @@ msgstr "%s tabela(at)"
msgid "Questions"
msgstr "Operacione"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafiku"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1431,10 +1432,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Asnjë lloj"
@@ -1534,7 +1535,7 @@ msgstr "Karakteristikat e përgjithshme të relacionit"
msgid "Current settings"
msgstr "Karakteristikat e përgjithshme të relacionit"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Import files"
msgid "Chart Title"
@@ -1618,9 +1619,9 @@ msgstr ""
msgid "Explain output"
msgstr "Shpjego SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Koha"
@@ -1730,7 +1731,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
#, fuzzy
msgid "Import"
msgstr "Eksporto"
@@ -1876,19 +1877,19 @@ msgstr "Tregues"
msgid "Show indexes"
msgstr "Shfaq rrjetën"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Aktiv"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1968,7 +1969,7 @@ msgstr "query SQL"
msgid "No rows selected"
msgstr "Nuk ka rreshta të zgjedhur"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ndrysho"
@@ -1977,17 +1978,18 @@ msgstr "Ndrysho"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Ruaj"
@@ -2016,178 +2018,170 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Shto/Fshi kollonat e fushës"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL result"
msgid "Query results"
msgstr "Rezultati SQL"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Tabela e përmbajtjes"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Shpërfill"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
msgid "Add columns"
msgstr "Shto një fushë të re"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Zgjidh fushën që dëshiron të shohësh"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Emrat e kollonave"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Shfaqja e regjistrimeve "
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
#, fuzzy
msgid "Generate"
msgstr "Gjeneruar nga"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Ndrysho fjalëkalimin"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Hën"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2195,30 +2189,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Asnjë databazë"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Asnjë lloj"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Paraardhësi"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2226,96 +2220,96 @@ msgid "Next"
msgstr "Në vazhdim"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gjithsej"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Pri"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Maj"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Qer"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Kor"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Gsh"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Tet"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2323,78 +2317,78 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dhj"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Djl"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Hën"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pre"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2402,113 +2396,113 @@ msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sht"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Djl"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Hën"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mër"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Enj"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pre"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sht"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Asnjë lloj"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "në përdorim"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2560,16 +2554,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "në sekondë"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "në minutë"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "në orë"
@@ -2695,15 +2689,15 @@ msgstr ""
msgid "Databases"
msgstr "Databazat"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Serveri"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2715,20 +2709,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Shto"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacione"
@@ -2788,13 +2782,13 @@ msgstr "Përdorues"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "Binar"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Të ndryshueshmet"
@@ -2811,8 +2805,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Gabim"
@@ -2930,35 +2925,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "merre"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2999,14 +2994,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3263,8 +3258,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3368,7 +3363,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabela"
@@ -3422,22 +3417,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3449,21 +3444,21 @@ msgstr ""
"Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file "
"i konfigurimit!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Duhet të instaloni %s %s ose superior."
@@ -3498,8 +3493,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "query SQL"
@@ -3537,7 +3532,7 @@ msgid "Create PHP Code"
msgstr "Krijo kodin PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Rifresko"
@@ -3558,41 +3553,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Djl"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Fillim"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3600,8 +3595,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Paraardhësi"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3609,53 +3604,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Në vazhdim"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Fund"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Kalo tek databaza "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Printo"
@@ -3840,9 +3835,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Rinis"
@@ -3991,7 +3986,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4053,7 +4048,7 @@ msgstr "Propozo strukturën e tabelës"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5890,7 +5885,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6028,27 +6023,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Serveri nuk përgjigjet"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6230,8 +6225,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6425,56 +6420,61 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Shto/Fshi kollonat e fushës"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sht"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "regjistrime për faqe"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Hën"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontal (headers të rrotulluar)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Zbaton query nga libërshënuesi"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Shfleto"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Rendit sipas kyçit"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6493,101 +6493,101 @@ msgstr "Rendit sipas kyçit"
msgid "Options"
msgstr "Operacione"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Tekst i pjesëshëm"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Teksti i plotë"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Skema relacionale"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Skema relacionale"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Transformimi i Shfletuesit"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "rreshti u fshi"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Hiq"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "tek query"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Shfaqja e regjistrimeve"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "Gjithsej"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query ka zgjatur %01.4f sec"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Shfaq për printim (me full text)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Shfaq skemën PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Versioni i MySQL"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Lidhja nuk u gjet"
@@ -6633,7 +6633,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Gjëndja InnoDB"
@@ -6885,8 +6885,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7036,12 +7036,12 @@ msgstr "Lloje MIME në dispozicion"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Gjeneruar më"
@@ -7256,8 +7256,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
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)."
@@ -7422,6 +7422,100 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksioni"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binar"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Për shkak të gjatësisë saj, kjo fushë nuk mund të ndryshohet "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Të dhëna të tipit binar - mos ndrysho"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "directory e upload të server-it web"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Shto"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Shto një rresht të ri"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Mbrapa"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Shto një regjistrim të ri"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Kthehu mbrapa tek kjo faqe"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vlerë"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7434,36 +7528,36 @@ msgstr "Asnjë lloj"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Pre"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Dërgoje"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Konfermo: "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Asnjë ndryshim"
@@ -7471,11 +7565,6 @@ msgstr "Asnjë ndryshim"
msgid "Charset"
msgstr "Familje gërmash"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binar"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bullgarisht"
@@ -7807,18 +7896,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "E ndryshueshme"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vlerë"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -8166,11 +8247,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksioni"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8530,7 +8606,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Zbato query SQL tek databaza %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Kalendari"
@@ -8541,11 +8617,11 @@ msgstr "Kalendari"
msgid "Columns"
msgstr "Emrat e kollonave"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Shtoja të preferuarve këtë query SQL"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
@@ -8569,10 +8645,6 @@ msgstr "Tregoje përsëri këtë query"
msgid "View only"
msgstr "Shfaq vetëm"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "directory e upload të server-it web"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8787,12 +8859,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Kërko"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Shto"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9040,7 +9106,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Përdorues"
@@ -9261,10 +9327,6 @@ msgstr "Shfaqi të gjithë"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9484,18 +9546,18 @@ msgstr "Tabela \"%s\" nuk ekziston!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Fusha"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Shkurton (ndërpret) Queries e Shfaqura"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Shfaq të gjitha kërkesat"
@@ -9958,8 +10020,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@@ -10082,7 +10144,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10221,12 +10283,12 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Thread %s u përfundua me sukses."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
@@ -10234,149 +10296,149 @@ msgstr ""
"phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë "
"përfunduar më parë."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "Lloji i query"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "Përdor shtimet me vonesë"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "Shfaq tabelat"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informacione mbi Runtime"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Rifresko"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Mos ndrysho fjalëkalim"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "Shfaq tabelat"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "Shfaq tabelat"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacione"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Lloji i query"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funksioni"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10384,118 +10446,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Instruksione"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ky server MySQL po punon që prej %s. U nis më %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Marrë"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Dërguar"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Përpjekje të dështuara"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Dështoi"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komanda"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10503,78 +10565,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10582,7 +10644,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10590,42 +10652,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10633,33 +10695,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10668,243 +10730,243 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
msgid "Percentage of used key cache (calculated value)"
msgstr "Familja gërmave të file:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10912,99 +10974,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11012,18 +11074,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11031,69 +11093,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Gjurmimi nuk është aktiv."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sht"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
msgid "Add chart"
msgstr "Shto një fushë të re"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Rifresko"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Shto/Fshi kollonat e fushës"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11102,7 +11164,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11110,18 +11172,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11129,11 +11191,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11141,90 +11203,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Ndysho emrin e databazës në"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Zgjidh Tabelat"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Shto një përdorues të ri"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "query SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statistikat e rreshtave"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Zgjidh Tabelat"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Lloji i query"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11232,7 +11294,7 @@ msgid_plural "%d seconds"
msgstr[0] "në sekondë"
msgstr[1] "në sekondë"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11368,7 +11430,7 @@ msgstr "Vlera seancës"
msgid "Global value"
msgstr "Vlerë Globale"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11432,41 +11494,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokal"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "Dokumente të phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11656,55 +11718,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Asnjë databazë"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Shfleto opcionet e huaja"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Konfermo: "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Vleftëso SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "Rezultati SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Gjeneruar nga"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiketë"
@@ -11719,58 +11772,6 @@ msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
msgid "The columns have been moved successfully."
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Për shkak të gjatësisë saj, kjo fushë nuk mund të ndryshohet "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Të dhëna të tipit binar - mos ndrysho"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Shto një rresht të ri"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Mbrapa"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Shto një regjistrim të ri"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Kthehu mbrapa tek kjo faqe"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12411,33 +12412,39 @@ msgstr ""
msgid "Create version"
msgstr "Versioni i MySQL"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "query SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Rinis"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12801,8 +12808,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12930,8 +12937,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13694,9 +13701,6 @@ msgstr ""
#~ msgid "Export of event \"%s\""
#~ msgstr "Nuk ka rreshta të zgjedhur"
-#~ msgid "rows"
-#~ msgstr "Shfleto"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rreshta duke filluar nga"
@@ -13750,8 +13754,8 @@ msgstr ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar "
-#~ "%s queries."
+#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %"
+#~ "s queries."
#~ msgid "Chart generated successfully."
#~ msgstr "Të drejtat u përditësuan me sukses."
diff --git a/po/sr.po b/po/sr.po
index a22562423b..6ec2b68559 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:20+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: serbian_cyrillic \n"
-"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Прикажи све"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Прикажи све"
msgid "Page number:"
msgstr "Број странице:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"затворили матични прозор, или ваш претраживач онемогућава ажурирање међу "
"прозорима због сигурносних подешавања"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Претраживање"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Претраживање"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Крени"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Име кључа"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Опис"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Користи ову вредност"
@@ -121,12 +121,12 @@ msgstr "Коментари табеле"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Колона"
@@ -135,6 +135,7 @@ msgstr "Колона"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Колона"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -152,12 +153,12 @@ msgstr "Тип"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Коментари"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Не"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -361,7 +362,7 @@ msgstr "Табела"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Редова"
@@ -415,28 +416,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Пређи на копирану табелу"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Сортирање"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Растући"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Опадајући"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Прикажи"
@@ -457,8 +458,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "или"
@@ -533,8 +534,8 @@ msgstr[1] "%s погодака унутар табеле %s"
msgstr[2] "%s погодака унутар табеле %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Преглед"
@@ -544,14 +545,14 @@ msgstr "Преглед"
msgid "Delete the matches for the %s table?"
msgstr "Приказ података табеле"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Обриши"
@@ -629,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -643,7 +644,7 @@ msgstr "Поглед"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Репликација"
@@ -657,20 +658,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s је подразумевани погон складиштења на овом MySQL серверу."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Означено:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Означи све"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -682,27 +683,27 @@ msgstr "Провери табеле које имају прекорачења"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Извоз"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "За штампу"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Испразни"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -729,13 +730,13 @@ msgstr "Анализирај табелу"
msgid "Add prefix to table"
msgstr "База не постоји"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Замени податке у табели са подацима из датотеке"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -757,8 +758,8 @@ msgstr "Провери табелу"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "База података"
@@ -778,7 +779,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -888,49 +889,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add new field"
msgid "Add a point"
msgstr "Додај ново поље"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Линије се завршавају са"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -940,17 +941,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Додај новог корисника"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Додај новог корисника"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -974,11 +975,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
-"%sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
+"sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1022,7 +1023,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Направљен маркер %s"
@@ -1050,7 +1051,7 @@ msgstr ""
"повећате временска ограничења у PHP-у"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1065,7 +1066,7 @@ msgstr "Назад"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin преферира читаче који подржавају оквире."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" команда је онемогућена."
@@ -1075,7 +1076,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена."
msgid "Do you really want to execute \"%s\"?"
msgstr "Да ли стварно хоћете да "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
@@ -1180,23 +1181,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Промени"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Избор сервера"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL упит"
@@ -1208,23 +1209,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Укупно"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1246,7 +1247,7 @@ msgstr "Избор сервера"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процеси"
@@ -1266,7 +1267,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Статистике реда"
@@ -1316,14 +1317,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1385,32 +1386,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Примљено"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Конекције"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "бајтова"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЕБ"
@@ -1426,11 +1427,11 @@ msgstr "%s табела"
msgid "Questions"
msgstr "Персијски"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Саобраћај"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1457,10 +1458,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "нема"
@@ -1560,7 +1561,7 @@ msgstr "Опште особине релација"
msgid "Current settings"
msgstr "Опште особине релација"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1646,9 +1647,9 @@ msgstr ""
msgid "Explain output"
msgstr "Објасни SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Време"
@@ -1758,7 +1759,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Увоз"
@@ -1907,19 +1908,19 @@ msgstr "Додај ново поље"
msgid "Show indexes"
msgstr "Прикажи мрежу"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Искључи провере страних кључева"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Омогућено"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1999,7 +2000,7 @@ msgstr "SQL упит"
msgid "No rows selected"
msgstr "Нема одабраних редова"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Промени"
@@ -2008,17 +2009,18 @@ msgstr "Промени"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d није исправан број реда."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Сачувај"
@@ -2047,179 +2049,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Додај/обриши колону"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Операције на резултатима упита"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Величина показивача података"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Игнориши"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Копирај"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Додај %s поља"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Изаберите референцирани кључ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Изабери страни кључ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Молимо изаберите примарни или јединствени кључ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Изабери поља за приказ"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "База не постоји"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Имена колона"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Приказ записа"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Направи лозинку"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Направи"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Промени лозинку"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Пон"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2227,30 +2221,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Направи релацију"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "База не постоји"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "Подаци"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Претходна"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2258,96 +2252,96 @@ msgid "Next"
msgstr "Следећи"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Укупно"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарни"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "мај"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2355,78 +2349,78 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "дец"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Уто"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2434,113 +2428,113 @@ msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Уто"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "нема"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2593,16 +2587,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "у секунди"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "у минуту"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "на сат"
@@ -2732,15 +2726,15 @@ msgstr ""
msgid "Databases"
msgstr "Базе"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2752,20 +2746,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Нови запис"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операције"
@@ -2826,12 +2820,12 @@ msgstr "Корисник"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Бинарни дневник"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Променљиве"
@@ -2848,8 +2842,9 @@ msgid "Engines"
msgstr "Складиштења"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Грешка"
@@ -2973,35 +2968,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Нема исправне путање до слика за тему %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Преглед не постоји."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "преузми"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Није пронађена подразумевана тема %s!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Није пронађена тема %s!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Није пронађена путања до теме за тему %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3042,14 +3037,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3308,8 +3303,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@@ -3415,7 +3410,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Табеле"
@@ -3469,25 +3464,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3499,22 +3494,22 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у "
"конфигурационој датотеци!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Неисправан индекс сервера: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Неисправан метод аутентикације је задат у конфигурацији:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
@@ -3549,8 +3544,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL упит"
@@ -3588,7 +3583,7 @@ msgid "Create PHP Code"
msgstr "Направи PHP код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Освежи"
@@ -3611,43 +3606,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Складиштења"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Профилисање"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. у %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s дана, %s сати, %s минута и %s секунди"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Рутине"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Почетак"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3655,8 +3650,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Претходна"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3664,53 +3659,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Следећи"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Крај"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Пређи на базу "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Ова функционалност %s је погођена познатом грешком, видите %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "директоријум за слање веб сервера "
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Директоријум који сте изабрали за слање није доступан"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Штампај"
@@ -3894,9 +3889,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Поништи"
@@ -4045,7 +4040,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4109,7 +4104,7 @@ msgstr "Предложи структуру табеле"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5978,7 +5973,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6116,7 +6111,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6124,21 +6119,21 @@ msgid ""
"configured)."
msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер не одговара"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6329,8 +6324,8 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -6544,56 +6539,59 @@ msgstr ""
msgid "Language"
msgstr "Језик"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Основни директоријум података"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Додај/обриши колону"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
msgid "Start row"
msgstr "Статус"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Број поља"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Пон"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "хоризонталном"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "хоризонталном (ротирана заглавља)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикалном"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Преглед"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Сортирај по кључу"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6611,101 +6609,101 @@ msgstr "Сортирај по кључу"
msgid "Options"
msgstr "Опције"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Део текста"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Пун текст"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Релациона схема"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Релациона схема"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Транформације читача"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Ред је обрисан"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Обустави"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "у упиту"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Приказ записа"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "укупно"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Упит је трајао %01.4f секунди"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Операције на резултатима упита"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Поглед за штампу (са пуним текстом)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Прикажи PDF схему"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Направи релацију"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Веза није пронађена"
@@ -6754,7 +6752,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Скуп прихватника"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB статус"
@@ -7021,8 +7019,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7174,12 +7172,12 @@ msgstr "Доступни MIME-типови"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Домаћин"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Време креирања"
@@ -7392,8 +7390,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
@@ -7562,6 +7560,104 @@ msgstr "Мод SQL компатибилности"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функција"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Сакриј"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Бинарни"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Због њехове величине, поље можда нећете моћи да измените"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Бинарни - не мењај"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "директоријум за слање веб сервера"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Нови запис"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Поново покрени уношење са %s редова"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "и онда"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Унеси као нови ред"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Приказ као SQL упит"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Назад на претходну страну"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Додај још један нови ред"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Врати се на ову страну"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Уреди следећи ред"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за "
+"слободно померање"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Вредност"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Приказ као SQL упит"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7574,38 +7670,38 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Пет"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Пошаљи"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "Додај ново поље"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Да ли стварно хоћете да "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Нема измена"
@@ -7613,11 +7709,6 @@ msgstr "Нема измена"
msgid "Charset"
msgstr "Карактер сет"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Бинарни"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Бугарски"
@@ -7950,18 +8041,10 @@ msgid "Slave status"
msgstr "Прикажи статус подређених сервера"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Променљива"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Вредност"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ИД сервера"
@@ -8316,11 +8399,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Рутине"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функција"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8688,7 +8766,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Изврши SQL упит(е) на бази %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Календар"
@@ -8699,11 +8777,11 @@ msgstr "Календар"
msgid "Columns"
msgstr "Имена колона"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Запамти SQL-упит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
@@ -8727,10 +8805,6 @@ msgstr "Прикажи поново овај упит"
msgid "View only"
msgstr "Види само"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "директоријум за слање веб сервера"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8942,12 +9016,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Претраживање"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Нови запис"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9210,7 +9278,7 @@ msgstr "Верзија протокола"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Корисник"
@@ -9436,10 +9504,6 @@ msgstr "Сакриј/прикажи све"
msgid "Hide/Show Tables with no relation"
msgstr "Сакриј/прикажи табеле без релација"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Сакриј"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Број табела"
@@ -9660,17 +9724,17 @@ msgstr "Табела \"%s\" не постоји!"
msgid "Select binary log to view"
msgstr "Изаберите бинарни дневник за преглед"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Датотеке"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Прикажи скраћене упите"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Прикажи комплетне упите"
@@ -10122,8 +10186,8 @@ msgstr "Одбаци базе које се зову исто као корис
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
@@ -10246,7 +10310,7 @@ msgstr "Привилегије су успешно поново учитане."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Прикажи статус подређених сервера"
@@ -10387,161 +10451,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процес %s је успешно прекинут."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Руковалац"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Кеш упита"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Нити"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Привремени подаци"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Одложена уметања"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Кеш кључева"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Спојеви"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Сортирање"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Координатор трансакција"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Очисти (затвори) све табеле"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Прикажи отворене табеле"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Прикажи подређене сервер"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Прикажи статус подређених сервера"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Очисти кеш упита"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Информације о току рада"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Освежи"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Датотеке"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Немој да мењаш лозинку"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Прикажи отворене табеле"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Прикажи отворене табеле"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Релације"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Врста упита"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функције"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10549,57 +10613,57 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Име"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Овај MySQL сервер ради већ %s. Покренут је %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Репликација"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10607,47 +10671,47 @@ msgstr ""
"На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да "
"те статистике, онако како их пријављује MySQL сервер, могу бити нетачне."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Примљено"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Послато"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "макс. истовремених веза"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Неуспелих покушаја"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Прекинуто"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Наредба"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10657,16 +10721,16 @@ msgstr ""
"превазишле вредност у binlog_cache_size и користиле привремену датотеку да "
"сместе изразе из трансакције."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Број трансакција које су користиле кеш привременог бинарног дневника."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10678,11 +10742,11 @@ msgstr ""
"повећате вредност tmp_table_size како би учинили да привремене табеле буду "
"базиране у меморији уместо на диску."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Колико привремених датотека је mysqld направио."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10690,7 +10754,7 @@ msgstr ""
"Број привремених табела које је сервер аутоматски креирао у меморији док је "
"извршавао изразе."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10698,7 +10762,7 @@ msgstr ""
"Број редова уписаних са INSERT DELAYED за које је јављена нека грешка "
"(вероватно дуплирани кључ)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10706,23 +10770,23 @@ msgstr ""
"Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над "
"којом се користи INSERT DELAYED добија своју нит."
-#: server_status.php:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Број уписаних INSERT DELAYED редова."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Број извршених FLUSH израза."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Број интерних COMMIT израза."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Број брисања неког реда табеле."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10732,7 +10796,7 @@ msgstr ""
"одређеног имена. То се назива откривањем (discovery). Handler_discover "
"означава број пута када је откривена табела."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10742,7 +10806,7 @@ msgstr ""
"може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT "
"кол1 FROM нешто, под претпоставком да је кол1 индексирано."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10750,7 +10814,7 @@ msgstr ""
"Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то "
"је добар показатељ да су ваши упити и табеле прописно индексирани."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10760,7 +10824,7 @@ msgstr ""
"када радите упит по колони индекса са ограничењем опсега или ако радите "
"скенирање индекса."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10768,7 +10832,7 @@ msgstr ""
"Број захтева за читањем претходног реда у поретку кључева. Ова метода читања "
"се углавном користи за оптимизацију ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10780,7 +10844,7 @@ msgstr ""
"много упита који захтевају да MySQL скенира целе табеле или имате спојеве "
"који не користе кључеве прописно."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10792,35 +10856,35 @@ msgstr ""
"прописно индексиране или да ваши упити нису написани да искористе већ "
"постојеће индексе."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Број интерних ROLLBACK израза."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Број захтева за ажурирање реда у табели."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Број захтева за уписивање реда у табелу."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Број страна које садрже податке (чистих или прљавих)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Број страна које су тренутно прљаве."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Број страна у остави бафера за које је тражено да буду очишћене."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Број слободних страна."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10830,7 +10894,7 @@ msgstr ""
"чита или се у њих уписује или из неког другог разлога не могу бити очишћене "
"нити уклоњене."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10842,11 +10906,11 @@ msgstr ""
"такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Пуна величина оставе бафера, у странама."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10854,7 +10918,7 @@ msgstr ""
"Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када "
"упит треба да скенира велики део табеле али насумичним редоследом."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10862,11 +10926,11 @@ msgstr ""
"Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када "
"InnoDB ради секвенцијално скенирање целе табеле."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Број логичких захтева за читање које је InnoDB урадио."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10874,7 +10938,7 @@ msgstr ""
"Број логичких читања која InnoDB није могао да задовољи из оставе бафера те "
"је морао да ради читање појединачне стране."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10888,55 +10952,55 @@ msgstr ""
"дешавања ових чекања. Ако је величина оставе бафера постављена како треба, "
"ова вредност ви требало да је ниска."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Број уписа учињених у InnoDB оставу бафера."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Број fsync() операција до сада."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Тренутни број fsync() операција на чекању."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Тренутни број читања на чекању."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Тренутни број уписа на чекању."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Количина података прочитаних до сада, у бајтовима."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Укупан број читања података."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Укупан број уписа података."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Количина података уписаних до сада, у бајтовима"
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
"Број извршених двоуписних (doublewrite) уписа и број страна које су уписане "
"у ову сврху."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10944,35 +11008,35 @@ msgstr ""
"Број чекања која смо имали зато што је бафер дневника био премали те смо "
"морали да сачекамо да буде очишћен пре наставка."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Број захтева за упис у дневник."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Број физичких уписа у датотеку дневника."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Број fsyncs уписа начињених у датотеку дневника."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Број fsync-ова за датотеку дневника на чекању."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Број уписа у датотеку дневника на чекању."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Број бајтова уписаних у датотеку дневника."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Број направљених страна."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10981,51 +11045,51 @@ msgstr ""
"вредности се рачунају у странама; величина стране омогућава да се оне лако "
"конвертују у бајтове."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Број прочитаних страна."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Број записаних страна."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Број брава за редове које се тренутно чекају."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Просечно време за добављање браве за ред, у милисекундама."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Најдуже време за добављање браве за ред, у милисекундама."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Број пута када се морала чекати брава за ред."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Број редова обрисаних из InnoDB табела."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Број редова уметнутих у InnoDB табеле."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Број редова прочитаних из InnoDB табела."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Број редова ажурираних у InnoDB табелама."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11033,7 +11097,7 @@ msgstr ""
"Број блокова кључева у кешу кључева који су измењени али још нису послати на "
"диск. Ово је раније било познато као Not_flushed_key_blocks."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -11041,7 +11105,7 @@ msgstr ""
"Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите "
"да утврдите колики део кеша кључева је у употреби."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -11051,17 +11115,17 @@ msgstr ""
"водостаја“ која показује највећи икада број блокова који је био у употреби у "
"исто време."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Формат датотека за увоз"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "Број захтева за читање блока кључева из кеша."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -11071,26 +11135,26 @@ msgstr ""
"је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша "
"се може израчунати као Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Број захтева за уписивање блока кључева у кеш."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Број физичких уписа блока кључева на диск."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11100,17 +11164,17 @@ msgstr ""
"упита. Корисно за упоређивање цене различитих планова упита за исти упит. "
"Подразумевана вредност 0 значи да још није био компајлиран ниједан упит."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11118,39 +11182,39 @@ msgstr ""
"Број табела које су биле отваране. Ако је број велики, ваш кеш табела је "
"вероватно премали."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Број отворених датотека."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Број отворених токова (користи се првенствено за вођење дневника (logging))."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Број отворених табела."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Количина слободне меморије за кеш упита."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Број погодака из кеша."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Број упита додатих у кеш."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11162,7 +11226,7 @@ msgstr ""
"упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least "
"recently used , LRU) да би одлучио које упите да уклони из кеша."
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11170,19 +11234,19 @@ msgstr ""
"Број некешираних упита (који се не могу кеширати или нису кеширани због "
"подешавања query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Број упита регистрованих у кешу."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Укупан број блокова у кешу за упите."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Статус репликације отпорне на грешке (није још имплементирано)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11190,11 +11254,11 @@ msgstr ""
"Број спојева који не користе индексте. Ако ова вредност није 0, требало би "
"пажљиво да проверите индексе ваших табела."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr "Број спојева који су користили претрагу опсега на референтној табели."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -11202,7 +11266,7 @@ msgstr ""
"Број спојева без кључева који проверавају употребу кључа после сваког реда. "
"(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11210,15 +11274,15 @@ msgstr ""
"Број спојева који су користили опсеге на првој табели. (Обично није критично "
"чак ни када је ово велико)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "Број спојева који су урадили пуно скенирање прве табеле."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11226,11 +11290,11 @@ msgstr ""
"Укупан број пута (од покретања) када је помоћна SQL нит за репликацију "
"покушала трансакције."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11238,12 +11302,12 @@ msgstr ""
"Број нити за које је требало више од slow_launch_time секудни да би биле "
"покренуте."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "Број упита за које је требало више од long_query_time секудни."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11253,23 +11317,23 @@ msgstr ""
"је ова вредност велика, требало би да размислите о повећању вредности "
"системске променљиве sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Број сортирања која су урађена са опсегом."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Број сортираних редова."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "Број сортирања до којих је дошло скенирањем табеле."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Број пута када је брава за табелу одмах добављена."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11281,7 +11345,7 @@ msgstr ""
"би требало да оптимизујете своје упите а потом да или поделите табелу или "
"табеле или да користите репликацију."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11291,11 +11355,11 @@ msgstr ""
"Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате "
"ваш thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Број тренутно отворених веза."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11307,69 +11371,69 @@ msgstr ""
"имплементацију нити, ово обично не доноси приметна побољшања у "
"перформансама.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Кеш кључева"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Број нити које нису успаване."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
msgid "Start Monitor"
msgstr "Статус"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "Додај ново поље"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Освежи"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Додај/обриши колону"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11378,7 +11442,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11386,18 +11450,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11405,11 +11469,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11417,92 +11481,92 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Уклони базу"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Изабери табеле"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Неисправан назив табеле"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Додај новог корисника"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL упит"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Статистике реда"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "Изабери све"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Врста упита"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11511,7 +11575,7 @@ msgstr[0] "у секунди"
msgstr[1] "у секунди"
msgstr[2] "у секунди"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11650,7 +11714,7 @@ msgstr "Вредност сесије"
msgid "Global value"
msgstr "Глобална вредност"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11714,41 +11778,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Локални"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin документација"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Подаци"
@@ -11939,55 +12003,46 @@ msgstr ""
msgid "Wrong data"
msgstr "База не постоји"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Прегледај стране вредности"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Да ли стварно хоћете да "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Приказ као PHP код"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Приказ као SQL упит"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Провери SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL резултат"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Генерисао"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Назив"
@@ -12002,62 +12057,6 @@ msgstr "Изабрани корисници су успешно обрисани
msgid "The columns have been moved successfully."
msgstr "Изабрани корисници су успешно обрисани."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Због њехове величине, поље можда нећете моћи да измените"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Бинарни - не мењај"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Унеси као нови ред"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Приказ као SQL упит"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "и онда"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Назад на претходну страну"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Додај још један нови ред"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Врати се на ову страну"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Уреди следећи ред"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за "
-"слободно померање"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Поново покрени уношење са %s редова"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12703,34 +12702,40 @@ msgstr ""
msgid "Create version"
msgstr "Направи релацију"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Направи \"упит по примеру\" (џокер: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL упит"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "верзија PHP-a"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Поништи"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13098,8 +13103,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13233,8 +13238,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14089,9 +14094,6 @@ msgstr "макс. истовремених веза"
#~ msgid "No trigger with name %s found"
#~ msgstr "Нема исправне путање до слика за тему %s!"
-#~ msgid "rows"
-#~ msgstr "Преглед"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "редова почев од реда"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index f94a124370..0979cbbf88 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,25 +3,25 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: serbian_latin \n"
-"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Prikaži sve"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Prikaži sve"
msgid "Page number:"
msgstr "Broj strane:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među "
"prozorima zbog sigurnosnih podešavanja"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Pretraživanje"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kreni"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Ime ključa"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Opis"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Koristi ovu vrednost"
@@ -121,12 +121,12 @@ msgstr "Komentari tabele"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolona"
@@ -135,6 +135,7 @@ msgstr "Kolona"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Kolona"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tip"
@@ -152,12 +153,12 @@ msgstr "Tip"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Komentari"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Ne"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -361,7 +362,7 @@ msgstr "Tabela"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Redova"
@@ -414,28 +415,28 @@ msgid "Switch to %svisual builder%s"
msgstr "vizuelni kreator"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortiranje"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Opadajući"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Prikaži"
@@ -456,8 +457,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ili"
@@ -528,8 +529,8 @@ msgstr[1] "%s pogodaka unutar tabele %s"
msgstr[2] "%s pogodaka unutar tabele %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Pregled"
@@ -539,14 +540,14 @@ msgstr "Pregled"
msgid "Delete the matches for the %s table?"
msgstr "Prikaz podataka tabele"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Obriši"
@@ -621,11 +622,11 @@ msgstr "Praćenje je aktivno."
msgid "Tracking is not active."
msgstr "Praćenje nije aktivno."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -635,7 +636,7 @@ msgstr "Pogled"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikacija"
@@ -649,20 +650,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -674,27 +675,27 @@ msgstr "Proveri tabele koje imaju prekoračenja"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Izvoz"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Za štampu"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Isprazni"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -721,13 +722,13 @@ msgstr "Analiziraj tabelu"
msgid "Add prefix to table"
msgstr "Baza ne postoji"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Zameni podatke u tabeli sa podacima iz datoteke"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -749,8 +750,8 @@ msgstr "Proveri tabelu"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Baza podataka"
@@ -770,7 +771,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -880,49 +881,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a point"
msgstr "Dodaj %s polja"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Linije se završavaju sa"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -932,17 +933,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Dodaj novog korisnika"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -966,11 +967,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
-"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
+"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
+"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1014,7 +1015,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Napravljen marker %s"
@@ -1042,7 +1043,7 @@ msgstr ""
"povećate vremenska ograničenja u PHP-u"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1057,7 +1058,7 @@ msgstr "Nazad"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin preferira čitače koji podržavaju okvire."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" komanda je onemogućena."
@@ -1067,7 +1068,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena."
msgid "Do you really want to execute \"%s\"?"
msgstr "Da li stvarno hoćete da "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
@@ -1172,23 +1173,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Promeni"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Izbor servera"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL upit"
@@ -1200,23 +1201,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Ukupno"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1238,7 +1239,7 @@ msgstr "Izbor servera"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Procesi"
@@ -1258,7 +1259,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Statistike reda"
@@ -1308,14 +1309,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1377,32 +1378,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Primljeno"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Konekcije"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "bajtova"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1419,11 +1420,11 @@ msgstr "%s tabela"
msgid "Questions"
msgstr "Persijski"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Saobraćaj"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1450,10 +1451,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "nema"
@@ -1553,7 +1554,7 @@ msgstr "Opšte osobine relacija"
msgid "Current settings"
msgstr "Opšte osobine relacija"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1639,9 +1640,9 @@ msgstr ""
msgid "Explain output"
msgstr "Objasni SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Vreme"
@@ -1751,7 +1752,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Uvoz"
@@ -1900,19 +1901,19 @@ msgstr "Ključevi"
msgid "Show indexes"
msgstr "Prikaži mrežu"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Isključi provere stranih ključeva"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Omogućeno"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1992,7 +1993,7 @@ msgstr "SQL upit"
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Promeni"
@@ -2001,17 +2002,18 @@ msgstr "Promeni"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d nije ispravan broj reda."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Sačuvaj"
@@ -2040,179 +2042,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "Dodaj/obriši kolone"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Operacije na rezultatima upita"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Veličina pokazivača podataka"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignoriši"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "Dodaj %s polja"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Izaberite referencirani ključ"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Izaberi strani ključ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Molimo izaberite primarni ili jedinstveni ključ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Izaberi polja za prikaz"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "Baza ne postoji"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Imena kolona"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Prikaz zapisa"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Napravi lozinku"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Napravi"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Promeni lozinku"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Pon"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2220,30 +2214,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Napravi relaciju"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Baza ne postoji"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "Podaci"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Prethodna"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2251,96 +2245,96 @@ msgid "Next"
msgstr "Sledeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "maj"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "avg"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2348,78 +2342,78 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2427,113 +2421,113 @@ msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sre"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "nema"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2586,16 +2580,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "u sekundi"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "u minutu"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "na sat"
@@ -2725,15 +2719,15 @@ msgstr ""
msgid "Databases"
msgstr "Baze"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2745,20 +2739,20 @@ msgid "Structure"
msgstr "Struktura"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Novi zapis"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operacije"
@@ -2819,12 +2813,12 @@ msgstr "Korisnik"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binarni dnevnik"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Promenljive"
@@ -2841,8 +2835,9 @@ msgid "Engines"
msgstr "Skladištenja"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Greška"
@@ -2966,35 +2961,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Nema ispravne putanje do slika za temu %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Pregled ne postoji."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "preuzmi"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Nije pronađena podrazumevana tema %s!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Nije pronađena tema %s!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Nije pronađena putanja do teme za temu %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3035,14 +3030,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3301,8 +3296,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@@ -3408,7 +3403,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabele"
@@ -3462,25 +3457,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3492,22 +3487,22 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u "
"konfiguracionoj datoteci!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Neispravan indeks servera: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
@@ -3542,8 +3537,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL upit"
@@ -3581,7 +3576,7 @@ msgid "Create PHP Code"
msgstr "Napravi PHP kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Osveži"
@@ -3604,43 +3599,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Skladištenja"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilisanje"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d. %B %Y. u %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Rutine"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Početak"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3648,8 +3643,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Prethodna"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3657,53 +3652,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Sledeći"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Kraj"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Pređi na bazu "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Direktorijum koji ste izabrali za slanje nije dostupan"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Štampaj"
@@ -3887,9 +3882,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Poništi"
@@ -4039,7 +4034,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4103,7 +4098,7 @@ msgstr "Predloži strukturu tabele"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5970,7 +5965,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6108,7 +6103,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid " the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6116,21 +6111,21 @@ msgid ""
"configured)."
msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server ne odgovara"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6321,8 +6316,8 @@ msgstr ""
#| "will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -6536,57 +6531,62 @@ msgstr ""
msgid "Language"
msgstr "Jezik"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Osnovni direktorijum podataka"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Dodaj/obriši kolonu"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Sub"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Broj polja"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Pon"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horizontalnom"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horizontalnom (rotirana zaglavlja)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikalnom"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Izvrši upamćen upit"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Pregled"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sortiraj po ključu"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6604,101 +6604,101 @@ msgstr "Sortiraj po ključu"
msgid "Options"
msgstr "Opcije"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Deo teksta"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Pun tekst"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Relaciona shema"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Tranformacije čitača"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operacije na rezultatima upita"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Pogled za štampu (sa punim tekstom)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Prikaži PDF shemu"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Napravi relaciju"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -6747,7 +6747,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Skup prihvatnika"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB status"
@@ -7014,8 +7014,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7163,12 +7163,12 @@ msgstr "Dostupni MIME-tipovi"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Domaćin"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Vreme kreiranja"
@@ -7381,8 +7381,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
@@ -7551,6 +7551,104 @@ msgstr "Mod SQL kompatibilnosti"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funkcija"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Sakrij"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binarni"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "ause of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Zbog njehove veličine, polje možda nećete moći da izmenite"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binarni - ne menjaj"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "direktorijum za slanje veb servera"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Novi zapis"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Ponovo pokreni unošenje sa %s redova"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "i onda"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Unesi kao novi red"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+#, fuzzy
+msgid "Show insert query"
+msgstr "Prikaz kao SQL upit"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Nazad na prethodnu stranu"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Dodaj još jedan novi red"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Vrati se na ovu stranu"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Uredi sledeći red"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za "
+"slobodno pomeranje"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Vrednost"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Prikaz kao SQL upit"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7563,36 +7661,36 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Pet"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Pošalji"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Da li stvarno hoćete da "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Nema izmena"
@@ -7600,11 +7698,6 @@ msgstr "Nema izmena"
msgid "Charset"
msgstr "Karakter set"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binarni"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bugarski"
@@ -7937,18 +8030,10 @@ msgid "Slave status"
msgstr "Prikaži status podređenih servera"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Promenljiva"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Vrednost"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID servera"
@@ -8303,11 +8388,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Rutine"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funkcija"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8675,7 +8755,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Izvrši SQL upit(e) na bazi %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Kalendar"
@@ -8686,11 +8766,11 @@ msgstr "Kalendar"
msgid "Columns"
msgstr "Imena kolona"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Zapamti SQL-upit"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
@@ -8714,10 +8794,6 @@ msgstr "Prikaži ponovo ovaj upit"
msgid "View only"
msgstr "Vidi samo"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "direktorijum za slanje veb servera"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8930,12 +9006,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Pretraživanje"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Novi zapis"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9199,7 +9269,7 @@ msgstr "Verzija protokola"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Korisnik"
@@ -9426,10 +9496,6 @@ msgstr "Sakrij/prikaži sve"
msgid "Hide/Show Tables with no relation"
msgstr "Sakrij/prikaži tabele bez relacija"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Sakrij"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Broj tabela"
@@ -9650,17 +9716,17 @@ msgstr "Tabela \"%s\" ne postoji!"
msgid "Select binary log to view"
msgstr "Izaberite binarni dnevnik za pregled"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Datoteke"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Prikaži skraćene upite"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Prikaži kompletne upite"
@@ -10112,8 +10178,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -10236,7 +10302,7 @@ msgstr "Privilegije su uspešno ponovo učitane."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
#, fuzzy
msgid "Show master status"
msgstr "Prikaži status podređenih servera"
@@ -10377,161 +10443,161 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Proces %s je uspešno prekinut."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Rukovalac"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Keš upita"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Niti"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Privremeni podaci"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Odložena umetanja"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Keš ključeva"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Spojevi"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortiranje"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Koordinator transakcija"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Očisti (zatvori) sve tabele"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Prikaži podređene server"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Prikaži status podređenih servera"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Očisti keš upita"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Informacije o toku rada"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Osveži"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Datoteke"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nemoj da menjaš lozinku"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Prikaži otvorene tabele"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Relacije"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Vrsta upita"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funkcije"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10539,57 +10605,57 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Ime"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "s MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Replikacija"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10597,47 +10663,47 @@ msgstr ""
"Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da "
"te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Primljeno"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Poslato"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "maks. istovremenih veza"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Neuspelih pokušaja"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Prekinuto"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Naredba"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10647,16 +10713,16 @@ msgstr ""
"prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da "
"smeste izraze iz transakcije."
-#: server_status.php:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10668,11 +10734,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Koliko privremenih datoteka je mysqld napravio."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10680,7 +10746,7 @@ msgstr ""
"Broj privremenih tabela koje je server automatski kreirao u memoriji dok je "
"izvršavao izraze."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10688,7 +10754,7 @@ msgstr ""
"Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška "
"(verovatno duplirani ključ)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10696,23 +10762,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Broj upisanih INSERT DELAYED redova."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Broj izvršenih FLUSH izraza."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Broj internih COMMIT izraza."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Broj brisanja nekog reda tabele."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10722,7 +10788,7 @@ msgstr ""
"tabelu određenog imena. To se naziva otkrivanjem (discovery). "
"Handler_discover označava broj puta kada je otkrivena tabela."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10732,7 +10798,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10740,7 +10806,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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10750,7 +10816,7 @@ msgstr ""
"kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite "
"skeniranje indeksa."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10758,7 +10824,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10770,7 +10836,7 @@ msgstr ""
"mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve "
"koji ne koriste ključeve propisno."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10782,35 +10848,35 @@ msgstr ""
"nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već "
"postojeće indekse."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Broj internih ROLLBACK izraza."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Broj zahteva za ažuriranje reda u tabeli."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Broj zahteva za upisivanje reda u tabelu."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Broj strana koje su trenutno prljave."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Broj slobodnih strana."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10820,7 +10886,7 @@ msgstr ""
"čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene "
"niti uklonjene."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10832,11 +10898,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Puna veličina ostave bafera, u stranama."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10844,7 +10910,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10852,11 +10918,11 @@ msgstr ""
"Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada "
"InnoDB radi sekvencijalno skeniranje cele tabele."
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10864,7 +10930,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:1352
+#: server_status.php:1355
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 "
@@ -10878,55 +10944,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:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Broj upisa učinjenih u InnoDB ostavu bafera."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Broj fsync() operacija do sada."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Trenutni broj fsync() operacija na čekanju."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Trenutni broj čitanja na čekanju."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Trenutni broj upisa na čekanju."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Količina podataka pročitanih do sada, u bajtovima."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Ukupan broj čitanja podataka."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Ukupan broj upisa podataka."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Količina podataka upisanih do sada, u bajtovima"
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10934,35 +11000,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Broj zahteva za upis u dnevnik."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Broj fizičkih upisa u datoteku dnevnika."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Broj fsync-ova za datoteku dnevnika na čekanju."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Broj upisa u datoteku dnevnika na čekanju."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Broj bajtova upisanih u datoteku dnevnika."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Broj napravljenih strana."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10971,52 +11037,52 @@ msgstr ""
"vrednosti se računaju u stranama; veličina strane omogućava da se one lako "
"konvertuju u bajtove."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Broj pročitanih strana."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Broj zapisanih strana."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Broj brava za redove koje se trenutno čekaju."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Broj redova obrisanih iz InnoDB tabela."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Broj redova umetnutih u InnoDB tabele."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Broj redova pročitanih iz InnoDB tabela."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Broj redova ažuriranih u InnoDB tabelama."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11024,7 +11090,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:1385
+#: server_status.php:1388
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."
@@ -11032,7 +11098,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:1386
+#: server_status.php:1389
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 "
@@ -11042,17 +11108,17 @@ msgstr ""
"vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u "
"isto vreme."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Format datoteka za uvoz"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -11062,26 +11128,26 @@ msgstr ""
"je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša "
"se može izračunati kao Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11091,17 +11157,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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11109,39 +11175,39 @@ msgstr ""
"Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je "
"verovatno premali."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Broj otvorenih datoteka."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Broj otvorenih tabela."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Količina slobodne memorije za keš upita."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Broj pogodaka iz keša."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Broj upita dodatih u keš."
-#: server_status.php:1405
+#: server_status.php:1408
msgid ""
"The number of queries that have been removed from the cache to free up "
"memory for caching new queries. This information can help you tune the query "
@@ -11153,7 +11219,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11161,19 +11227,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:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Broj upita registrovanih u kešu."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Ukupan broj blokova u kešu za upite."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status replikacije otporne na greške (nije još implementirano)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11181,11 +11247,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11194,7 +11260,7 @@ msgstr ""
"reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših "
"tabela.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11202,15 +11268,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11218,11 +11284,11 @@ msgstr ""
"Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju "
"pokušala transakcije."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11230,12 +11296,12 @@ msgstr ""
"Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile "
"pokrenute."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11245,23 +11311,23 @@ msgstr ""
"Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti "
"sistemske promenljive sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Broj sortiranja koja su urađena sa opsegom."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Broj sortiranih redova."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11273,7 +11339,7 @@ msgstr ""
"bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili "
"tabele ili da koristite replikaciju."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11283,11 +11349,11 @@ msgstr ""
"Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate "
"vaš thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Broj trenutno otvorenih veza."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11299,70 +11365,70 @@ msgstr ""
"implementaciju niti, ovo obično ne donosi primetna poboljšanja u "
"performansama.)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Praćenje nije aktivno."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Broj niti koje nisu uspavane."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Sub"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "Dodaj %s polja"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Osveži"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Dodaj/obriši kolonu"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11371,7 +11437,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11379,18 +11445,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11398,11 +11464,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11410,92 +11476,92 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Ukloni bazu"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Izaberi tabele"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Neispravan naziv tabele"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Dodaj novog korisnika"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL upit"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Statistike reda"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Izaberi tabele"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Vrsta upita"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -11504,7 +11570,7 @@ msgstr[0] "u sekundi"
msgstr[1] "u sekundi"
msgstr[2] "u sekundi"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11643,7 +11709,7 @@ msgstr "Vrednost sesije"
msgid "Global value"
msgstr "Globalna vrednost"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11707,41 +11773,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Lokalni"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin dokumentacija"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Podaci"
@@ -11932,55 +11998,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Baza ne postoji"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Pregledaj strane vrednosti"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Da li stvarno hoćete da "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Prikaz kao PHP kod"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Prikaz kao SQL upit"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Proveri SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL rezultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Generisao"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Naziv"
@@ -11995,62 +12052,6 @@ msgstr "Izabrani korisnici su uspešno obrisani."
msgid "The columns have been moved successfully."
msgstr "Izabrani korisnici su uspešno obrisani."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "ause of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Zbog njehove veličine, polje možda nećete moći da izmenite"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binarni - ne menjaj"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Unesi kao novi red"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-#, fuzzy
-msgid "Show insert query"
-msgstr "Prikaz kao SQL upit"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "i onda"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Nazad na prethodnu stranu"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Dodaj još jedan novi red"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Vrati se na ovu stranu"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Uredi sledeći red"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za "
-"slobodno pomeranje"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Ponovo pokreni unošenje sa %s redova"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12693,34 +12694,40 @@ msgstr ""
msgid "Create version"
msgstr "Napravi relaciju"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Napravi \"upit po primeru\" (džoker: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL upit"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "verzija PHP-a"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Poništi"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -13088,8 +13095,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13223,8 +13230,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14091,9 +14098,6 @@ msgstr "maks. istovremenih veza"
#~ msgid "No trigger with name %s found"
#~ msgstr "Nema ispravne putanje do slika za temu %s!"
-#~ msgid "rows"
-#~ msgstr "Pregled"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "redova počev od reda"
diff --git a/po/sv.po b/po/sv.po
index 962732b947..c5ed5a0d11 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-20 21:47+0200\n"
"Last-Translator: ProUser \n"
"Language-Team: swedish \n"
-"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Visa alla"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Visa alla"
msgid "Page number:"
msgstr "Sida:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"fönstret, eller så är din webbläsares säkerhetsinställningar konfigurerade "
"för att blockera flerfönster uppdateringar."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Sök"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Sök"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Kör"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Nyckelnamn"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Beskrivning"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Använd detta värde"
@@ -122,12 +122,12 @@ msgstr "Tabellkommentarer"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Kolumn"
@@ -136,6 +136,7 @@ msgstr "Kolumn"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Kolumn"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Typ"
@@ -153,12 +154,12 @@ msgstr "Typ"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Kommentarer"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Nej"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -356,7 +357,7 @@ msgstr "Tabell"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Rader"
@@ -407,28 +408,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Växla till %sgrafisk modellerare%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortera"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Stigande"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Fallande"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Visa"
@@ -449,8 +450,8 @@ msgid "Del"
msgstr "Ta bort"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Eller"
@@ -519,8 +520,8 @@ msgstr[0] "%1$s träff i tabell %2$s"
msgstr[1] "%1$s träffar i tabell %2$s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Bläddra"
@@ -529,14 +530,14 @@ msgstr "Bläddra"
msgid "Delete the matches for the %s table?"
msgstr "Ta bort resultat som matchar %s tabellen?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Radera"
@@ -604,11 +605,11 @@ msgstr "Spårning är aktiv."
msgid "Tracking is not active."
msgstr "Spårning är inaktiv."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -618,7 +619,7 @@ msgstr "Vy"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikering"
@@ -632,20 +633,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s är standardmotorn för denna MySQL server."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Med markerade:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Markera alla"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -657,27 +658,27 @@ msgstr "Kontrollera tabeller med overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Exportera"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Utskriftsvänlig visning"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Töm"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -703,11 +704,11 @@ msgstr "Analysera tabell"
msgid "Add prefix to table"
msgstr "Lägg till prefix till tabellen"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Ersätt tabellprefix"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Kopiera tabell med prefix"
@@ -726,8 +727,8 @@ msgstr "Spårade tabeller"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Databas"
@@ -745,7 +746,7 @@ msgstr "Uppdaterad"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Status"
@@ -845,45 +846,45 @@ msgstr "Använd OpenStreetMaps som baslager"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometri"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Punkt"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Punkt %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Lägg till en punkt"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linestring"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Yttre ringen"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Inre ringen"
@@ -891,15 +892,15 @@ msgstr "Inre ringen"
msgid "Add a linestring"
msgstr "Lägg till ny linestring"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Lägg till ny inre ring"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Polygon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Addera polygon"
@@ -922,8 +923,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för att gå runt denna begränsning."
@@ -972,7 +973,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Bokmärket %s har skapats"
@@ -1000,7 +1001,7 @@ msgstr ""
"tidsbegränsningar."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1015,7 +1016,7 @@ msgstr "Föregående"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin fungerar bättre med en webbläsare som hanterar ramar."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" satserna är inaktiverade."
@@ -1024,7 +1025,7 @@ msgstr "\"DROP DATABASE\" satserna är inaktiverade."
msgid "Do you really want to execute \"%s\"?"
msgstr "Vill du verkligen exekvera \"%s\"?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Du är på väg att RADERA en hel databas!"
@@ -1110,21 +1111,21 @@ msgstr "Stäng"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Redigera"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Live trafik diagram"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Live anslutning/process diagram"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Live sökfrågediagram"
@@ -1135,23 +1136,23 @@ msgstr "Statisk data"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Totalt"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Annan"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1171,7 +1172,7 @@ msgstr "Server trafik (i Kb)"
msgid "Connections since last refresh"
msgstr "Anslutningar sedan senaste uppdatering"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Processer"
@@ -1189,7 +1190,7 @@ msgstr "Frågor sedan senaste uppdatering"
msgid "Questions (executed statements by the server)"
msgstr "Frågor (utförda kommandon från servern)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Visa statistik"
@@ -1234,14 +1235,14 @@ msgid "System swap"
msgstr "System swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "Mb"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "kB"
@@ -1293,32 +1294,32 @@ msgstr "Antal bitar som skickats"
msgid "Bytes received"
msgstr "Antal mottagna bital"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Anslutningar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "bytes"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1332,11 +1333,11 @@ msgstr "%d tabell(er)"
msgid "Questions"
msgstr "Frågor"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Inställningar"
@@ -1357,10 +1358,10 @@ msgid "Please add at least one variable to the series"
msgstr "Lägg till minst en variabel till serien"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Inget"
@@ -1460,7 +1461,7 @@ msgstr "Ändra inställningar"
msgid "Current settings"
msgstr "Nuvarande inställningar"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Diagramtitel"
@@ -1541,9 +1542,9 @@ msgstr "Analyserar..."
msgid "Explain output"
msgstr "Förklara utdata"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Tid"
@@ -1640,7 +1641,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Importera"
@@ -1760,15 +1761,15 @@ msgstr "Dölj index"
msgid "Show indexes"
msgstr "Visa index"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Kontroll av sekundärnyckel:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Aktiverad)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Inaktiverad)"
@@ -1837,7 +1838,7 @@ msgstr "Visa frågerutan"
msgid "No rows selected"
msgstr "Inga rader valda"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ändra"
@@ -1846,17 +1847,18 @@ msgstr "Ändra"
msgid "Query execution time"
msgstr "Exekveringstid för frågor"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d är inte ett giltigt radnummer."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Spara"
@@ -1881,77 +1883,69 @@ msgid "Hovering over a point will show its label."
msgstr "Hovra över en punkt kommer visa etiketten."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Använd mushjulet för att zooma in eller ut."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Klicka och dra musen för att navigera."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Klicka på återställ zooma länken för att komma tillbaka till ursprungligt "
"värde.."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Klicka på en datapunkt för att visa och eventuellt redigera dataraden."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "Kan ändra storlek genom att dra den längs nedre högra hörnet."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Strängar omvandlas till heltal för plottning"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Välj två kolumner"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Välj två olika kolumner"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Frågeresultat"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Innehåll för datapunkt"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ignorera"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopiera"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Addera kolumn"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Välj refererad nyckel"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Välj främmande nyckel"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Välj den primära nyckeln eller en unik nyckel"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Välj kolumn att visa"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1959,15 +1953,15 @@ msgstr ""
"Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte "
"sparar dem. Vill du fortsätta?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Lägg till ett alternativ för kolumn "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Tryck Escape för att avbryta redigeringen"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1975,27 +1969,27 @@ msgstr ""
"Du har redigerat en del data och de har inte sparats. Är du säker på att du "
"vill lämna denna sida innan du sparar uppgifterna?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Dra för att ändra ordning"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Klicka för att sortera"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Klicka för att markera/avmarkera"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Dubbelklicka för att kopiera kolumnnamn"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "Klicka på pilen för att växla kolumnens synlighet"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2004,46 +1998,46 @@ msgstr ""
"nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte "
"fungerar när du har sparat."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Du kan även redigera de flesta kolumner genom att klicka direkt på "
"deras innehåll."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Gå till länk"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Kopiera kolumnnamn"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Högerklicka på kolumnnamnet för att kopiera det till urklipp."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Visa datarad(er)"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Skapa lösenord"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generera"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Ändra lösenord"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Mera"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2053,266 +2047,266 @@ msgstr ""
"senaste versionen är %s, publicerad den %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr "senaste stabila version:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "aktuell"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Klart"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Föregående"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Idag"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "januari"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "februari"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "mars"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "april"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "maj"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "juni"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "juli"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "augusti"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "september"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "oktober"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "november"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "dec"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Söndag"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Måndag"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Tisdag"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Lördag"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Sö"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Må"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "On"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Lö"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Vecka"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "kalender-månad-år"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "Ingen"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Timmar"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Minuter"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Sekunder"
@@ -2364,16 +2358,16 @@ msgstr "Oväntade tecken på rad %s"
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr "Oväntat tecken på rad %1$s. Förväntad tab, men fann \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "per sekund"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "per minut"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "per timme"
@@ -2504,15 +2498,15 @@ msgstr ""
msgid "Databases"
msgstr "Databaserna"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2524,20 +2518,20 @@ msgid "Structure"
msgstr "Struktur"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Lägg till"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operationer"
@@ -2595,12 +2589,12 @@ msgstr "Användarna"
msgid "Synchronize"
msgstr "Synkronisera"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binär logg"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Variabler"
@@ -2617,8 +2611,9 @@ msgid "Engines"
msgstr "Motorer"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Fel"
@@ -2737,35 +2732,35 @@ msgstr ""
"efter att du uppdaterar denna sida. Kontrollera om tabellens struktur har "
"förändrats."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Ingen giltig sökväg för tema %s hittades!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Ingen förhandsgranskning tillgänglig."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "använd detta"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Standardtema %s hittades inte!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Tema %s hittades inte!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Temats sökväg för tema %s hittades inte!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2819,16 +2814,16 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, "
"0, och 1.175494351E-38 till 3.402823466E+38"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
"Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 "
@@ -3125,11 +3120,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
-"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
-"%1$suppsättningsskript%2$s för att skapa denna."
+"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
+"$suppsättningsskript%2$s för att skapa denna."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -3232,7 +3227,7 @@ msgstr "delad"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tabeller"
@@ -3283,11 +3278,11 @@ msgstr "möjlig exploatering"
msgid "numeric key detected"
msgstr "numerisk tangent upptäckt"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Kunde inte läsa konfigurationsfilen"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3295,12 +3290,12 @@ msgstr ""
"Detta betyder oftast att det finns ett syntaxfel i det, kontrollera "
"eventuella fel som visas nedan."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Kunde inte ladda standardkonfiguration från: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3308,21 +3303,21 @@ msgstr ""
"Direktivet[code]$cfg['PmaAbsoluteUri'][/code] MÅSTE definieras i "
"konfigurationsfilen!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Ogiltigt serverindex: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Ogiltig metod för verifiering angiven i konfiguration:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Du bör uppgradera till %s %s eller senare."
@@ -3357,8 +3352,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-fråga"
@@ -3396,7 +3391,7 @@ msgid "Create PHP Code"
msgstr "Skapa PHP-kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Uppdatera"
@@ -3417,95 +3412,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Infogad"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profilering"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Sön"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y kl %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Saknade parametrar:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Starta"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Föregående"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Nästa"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Slut"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Hoppa till databas "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Klicka för att växla"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Gå igenom din dator:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Det finns inga filer att ladda upp"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Utför"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Skriv ut"
@@ -3679,9 +3674,9 @@ msgstr "Återställ standardvärde"
msgid "Allow users to customize this value"
msgstr "Tillåt användare att anpassa detta värde"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Återställ"
@@ -3845,7 +3840,7 @@ msgid "Compress on the fly"
msgstr "Komprimera i farten"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfigurationsfil"
@@ -3905,7 +3900,7 @@ msgstr "Dölj åtgärder för tabellstruktur"
msgid "Show binary contents as HEX by default"
msgstr "Visa binärt innehåll som HEX som standard"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Visa binärt innehåll som HEX"
@@ -4629,7 +4624,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Minsta antal tabeller för att visa tabellen filter box"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr "Minsta antal databaser för att visa databasens filter box"
@@ -5794,7 +5788,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Aktivera fliken Utvecklare i inställningar"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Sök efter senaste version"
@@ -5934,7 +5928,7 @@ msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration."
msgid "possible deep recursion attack"
msgstr "möjlig djupgående rekursiv attack"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5942,19 +5936,19 @@ msgstr ""
"Servern svarar inte (eller den lokala serverns socket är inte korrekt "
"konfigurerad)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Servern svarar inte."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Kontrollera privilegierna för katalogen som innehåller databasen."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Detaljer..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6114,8 +6108,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@@ -6308,48 +6302,53 @@ msgstr "Format-specifika alternativ:"
msgid "Language"
msgstr "Språk"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Spara editerade data"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Återställ ordningen på kolumner"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Starta rad"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Antal rader"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Läge"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "horisontell"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "horisontell (roterade rubriker)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "Sidhuvud var %s rad"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Visa"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Sortera efter nyckel"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6367,89 +6366,89 @@ msgstr "Sortera efter nyckel"
msgid "Options"
msgstr "Alternativ"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Förkortade texter"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Kompletta texter"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Besläktad nyckel"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Kolumn för besläktad nyckel"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Visa binärt innehåll"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "Visa BLOB-innehåll"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Dölj webbläsarens transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Välkänd text"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Välkänd binär"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Raden har raderats"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Döda"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "i fråga"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Visar rader"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Frågan tog %01.4f sek"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Operationer för frågeresultat"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Utskriftsvänlig version (med fullständiga texter)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Visa diagram"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "Visualisera GIS-data"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Skapa vy"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Länken hittades inte"
@@ -6497,7 +6496,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Buffertutrymme"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB-status"
@@ -6787,11 +6786,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
-"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
-"%s."
+"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
+"s."
#: libraries/engines/pbxt.lib.php:130
msgid "Related Links"
@@ -6911,12 +6910,12 @@ msgstr "Visa MIME-typer"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Värd"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Skapad"
@@ -7136,8 +7135,8 @@ msgstr "Inga data finns för GIS visualisering."
msgid "GLOBALS overwrite attempt"
msgstr "Globals överskrivningsförsök"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
@@ -7313,6 +7312,98 @@ msgstr "SQL kompatibilitetsläge:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Använd inte AUTO_INCREMENT för nollvärden"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funktion"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Dölj"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binär"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "På grund av sin längd, är denna kolumn kanske inte redigerbar"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binär - ändra inte"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Uppladdningskatalog på webbserver"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Redigera / Infoga"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "Fortsätt inmatning med %s rader"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "och sedan"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Lägg till som ny rad"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Infoga som ny rad och ignorera fel"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Visa insert fråga"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Gå tillbaka till föregående sida"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Lägg till ytterligare en ny rad"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Gå tillbaka till denna sida"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Ändra nästa rad"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil "
+"för att flytta vart som helst"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Värde"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "Visar SQL-fråga"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Infogade rad id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7323,32 +7414,32 @@ msgstr "Inget"
msgid "Convert to Kana"
msgstr "Konvertera till Kana"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Från"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Till"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Sänd"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Lägg till tabellprefix"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Lägg till prefix"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Vill du verkligen exekvera följande fråga?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ingen förändring"
@@ -7356,11 +7447,6 @@ msgstr "Ingen förändring"
msgid "Charset"
msgstr "Teckenuppsättning"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binär"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarisk"
@@ -7694,18 +7780,10 @@ msgid "Slave status"
msgstr "Slav-status"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Variabel"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Värde"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID"
@@ -8034,11 +8112,6 @@ msgstr "Utför rutin"
msgid "Routine parameters"
msgstr "Rutinparametrar"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funktion"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Tyvärr lyckades vi inte återställa den släppta triggern."
@@ -8360,7 +8433,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Kör SQL-fråga/frågor i databasen %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Rensa"
@@ -8368,11 +8441,11 @@ msgstr "Rensa"
msgid "Columns"
msgstr "Kolumn"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Skapa bokmärke för den här SQL-frågan"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Låt varje användare få tillgång till detta bokmärke"
@@ -8396,10 +8469,6 @@ msgstr "Visa denna fråga här igen"
msgid "View only"
msgstr "Visa endast"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Uppladdningskatalog på webbserver"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8596,10 +8665,6 @@ msgstr "Aktör"
msgid "Table Search"
msgstr "Tabellsök"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Redigera / Infoga"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8821,7 +8886,7 @@ msgstr "Protokollversion"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Användare"
@@ -8943,8 +9008,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
-"%s. Detta kan orsaka oförutsägbara beteenden."
+"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
+"s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:380
#, php-format
@@ -8958,7 +9023,6 @@ msgid "No databases"
msgstr "Inga databaser"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Filtrera databaser efter namn"
@@ -9039,10 +9103,6 @@ msgstr "Dölj/Visa alla"
msgid "Hide/Show Tables with no relation"
msgstr "Dölj/visa tabeller utan relationer"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Dölj"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Antal tabeller"
@@ -9236,17 +9296,17 @@ msgstr "Filen finns inte"
msgid "Select binary log to view"
msgstr "Välj binär logg att visa"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Filer"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Korta av visade frågor"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Visa fullständiga frågor"
@@ -9683,8 +9743,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas behörigheter direkt från MySQL's "
"behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de "
@@ -9810,7 +9870,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Visa master-status"
@@ -9957,127 +10017,127 @@ msgstr ""
"Denna server är inte konfigurerad som slav i en replikering process. Vill du "
"konfigurera den?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Tråden %s dödades med framgång."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Hanterare"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Frågecache"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Trådar"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Temporära data"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Fördröjda infogningar"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Nyckelcache"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Kopplingar"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortering"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Transaktionssamordnare"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Flush (stäng) alla tabeller"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Visa öppna tabeller"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Visa slav-värdar"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Visa slav-status"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Rensa frågecache"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Körningsinformation"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Alla statusvariabler"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "Övervaka"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Handledare"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Uppdateringsfrekvens: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Filter"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "Innehåller ordet:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Visa endast varnings värden"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Filtrera efter kategori ..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Visa oformaterade värden"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "Liknande länkar:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Kör analysator"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Instruktioner"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10085,7 +10145,7 @@ msgstr ""
"Advisor systemet kan ge rekommendationer på server variabler genom att "
"analysera server status variablerna."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10094,7 +10154,7 @@ msgstr ""
"Observera att detta system ger rekommendationer baserat på enkla beräkningar "
"och genom tumregler som inte nödvändigtvis gäller för ditt system."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10104,7 +10164,7 @@ msgstr ""
"ändra (genom att läsa dokumentation) och hur du kan ångra ändringen. Fel "
"inställning kan ha en mycket negativ inverkan på prestandan."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10115,31 +10175,31 @@ msgstr ""
"inte fanns någon tydligt mätbar förbättring."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Frågor sedan start: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Uppgifterna"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Nätverkstrafik sedan start:%s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Denna MySQL-servern har varit igång i %1$s. Den startade den %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10147,17 +10207,17 @@ msgstr ""
"Denna MySQL-server fungerar sommaster ochslave i "
"replicerings process."
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
"Denna MySQL server arbetar som master in replication process."
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
"Denna MySQL server arbetar som slave in replication process."
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10165,11 +10225,11 @@ msgstr ""
"För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replikeringsstatus"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10177,35 +10237,35 @@ msgstr ""
"På en upptagen server kan byte-räknare spåra ur, så statistiken som "
"rapporteras av MySQL-servern kan vara fel."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Mottagna"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Skickade"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Max. samtidiga förbindelser"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Misslyckade försök"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Avbrutna"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Kommando"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10213,11 +10273,11 @@ msgstr ""
"Antalet anslutningar som avbröts eftersom klienten dog utan att stänga "
"anslutningen ordentligt."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Antalet misslyckade försök att ansluta till MySQL-servern."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10227,16 +10287,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:1320
+#: server_status.php:1323
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:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10248,11 +10308,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:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Antalet temporära filer som mysqld har skapat."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10260,7 +10320,7 @@ msgstr ""
"Antalet temporära tabeller i minne skapade automatiskt av servern under "
"utförande av satser."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10268,7 +10328,7 @@ msgstr ""
"Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod "
"(förmodligen dubblerad nyckel)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10276,23 +10336,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "Antalet skrivna rader med INSERT DELAYED."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Antalet utförda FLUSH-satser."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Antalet interna COMMIT-satser."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10302,7 +10362,7 @@ msgstr ""
"tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar "
"antalet gånger tabeller har upptäckts."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10312,7 +10372,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10321,7 +10381,7 @@ msgstr ""
"är högt är det en bra indikation på att dina frågor och tabeller är riktigt "
"indexerade."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10331,7 +10391,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10339,7 +10399,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10351,7 +10411,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:1337
+#: server_status.php:1340
msgid ""
"The number of requests to read the next row in the data file. This is high "
"if you are doing a lot of table scans. Generally this suggests that your "
@@ -10363,35 +10423,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Antalet interna ROLLBACK-satser."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Antalet sidor innehållande data (orena eller rena)."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Antalet sidor för närvarande orena."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Antalet tomma sidor."
-#: server_status.php:1345
+#: server_status.php:1348
msgid ""
"The number of latched pages in InnoDB buffer pool. These are pages currently "
"being read or written or that can't be flushed or removed for some other "
@@ -10401,7 +10461,7 @@ msgstr ""
"läses eller skrivs eller som inte kan rensas eller tas bort av någon annan "
"anledning."
-#: server_status.php:1346
+#: server_status.php:1349
msgid ""
"The number of pages busy because they have been allocated for administrative "
"overhead such as row locks or the adaptive hash index. This value can also "
@@ -10413,11 +10473,11 @@ msgstr ""
"också beräknas som Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Total storlek på buffert, i antal sidor."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10425,7 +10485,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10433,11 +10493,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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10445,7 +10505,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:1352
+#: server_status.php:1355
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 "
@@ -10459,51 +10519,51 @@ msgstr ""
"fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta "
"värde vara litet."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "Antalet skrivningar gjorda till InnoDB-bufferten."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Antalet fsync()-operationer hittills."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Nuvarande antal väntande fsync()-operationer."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Nuvarande antal väntande läsningar."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Nuvarande antal väntande skrivningar."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Mängden data läst hittills, i bytes."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Totalt antal läsningar av data."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Totalt antal skrivningar av data."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Mängden data skriven hittills, i bytes."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Antalet doublewrite transaktioner som har utförts.."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -10511,35 +10571,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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Antalet skriv-begäran att skriva till logg."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Antalet fysiska skrivningar till loggfilen."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Antalet fsync()-skrivningar gjorda till loggfilen."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Antalet väntande fsync() av loggfil."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Väntande skrivningar till loggfil."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Antalet bytes skrivna till loggfilen."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Antalet skapade sidor."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10547,51 +10607,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Antalet lästa sidor."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Antalet skrivna sidor."
-#: server_status.php:1375
+#: server_status.php:1378
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:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "Antalet rader borttagna från InnoDB-tabeller."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "Antalet rader tillagda i InnoDB-tabeller."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "Antalet rader lästa från InnoDB-tabeller."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "Antalet rader uppdaterade i InnoDB-tabeller."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10599,7 +10659,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:1385
+#: server_status.php:1388
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."
@@ -10607,7 +10667,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:1386
+#: server_status.php:1389
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 "
@@ -10616,15 +10676,15 @@ 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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Andel av använd nyckelcache (beräknat värde)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10634,7 +10694,7 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10642,20 +10702,20 @@ msgstr ""
"Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med "
"läsbegaäran (beräknat värde)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10666,7 +10726,7 @@ msgstr ""
"av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats "
"ännu."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10674,11 +10734,11 @@ msgstr ""
"Det maximala antalet anslutningar som har använts samtidigt sedan servern "
"startade."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10686,19 +10746,19 @@ msgstr ""
"Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är "
"förmodligen ditt tabellcache-värde för litet."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Antalet filer som är öppna."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Antalet tabeller som är öppna."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10707,19 +10767,19 @@ msgstr ""
"Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, "
"vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Mängden fritt minne för frågecache."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Antalet cache-träffar."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Antalet förfrågningar tillagda i cachen."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10731,7 +10791,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10739,19 +10799,19 @@ msgstr ""
"Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga "
"inställningen query_cache_type)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Antalet frågor registrerade i cachen."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Totala antalet block i frågecachen."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Status för felsäker replikering (ännu inte implementerat)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10759,11 +10819,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10772,7 +10832,7 @@ msgstr ""
"varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för "
"dina tabeller.)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10780,17 +10840,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10798,25 +10858,25 @@ msgstr ""
"Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har "
"omprövat transaktioner."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
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:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10826,23 +10886,23 @@ msgstr ""
"detta värde är stort bör du överväga att öka värdet i systemvariabeln "
"sort_buffer_size."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Antalet sorteringar som gjordes med intervall."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Antalet sorterade rader."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10854,7 +10914,7 @@ msgstr ""
"du först optimera dina frågor och antingen dela upp din tabell eller "
"tabeller eller använda replikering."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10864,11 +10924,11 @@ msgstr ""
"Threads_created/Connections. Om detta värde är rött bör du öka värdet "
"thread_cache_size."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Antalet öppna förbindelser."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10880,47 +10940,47 @@ msgstr ""
"(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra "
"trådimplementering.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "Trådad cache träffrekvens (beräknat värde)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Antalet trådar som inte är vilande."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "Starta Monitor"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Instruktioner/Setup"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Klar ändra/editera diagram"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Lägg till diagram"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Ordna/editera diagram"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Uppdateringsfrekvens"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Visa kolumner"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Diagram arrangemang"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10928,15 +10988,15 @@ msgstr ""
"Arrangemanget av diagrammen lagras lokalt i webbläsarens. Du kanske vill "
"exportera den om du har en komplicerad inställning."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Återställ till standardinställningen"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "Övervaka instruktioner"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10950,7 +11010,7 @@ msgstr ""
"Observera att general_log producerar mycket data och ökar lasten på servern "
"med upp till 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10962,11 +11022,11 @@ msgstr ""
"stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda "
"serverfunktionernas diagramfunktioner."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "Använda monitorn:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10977,7 +11037,7 @@ msgstr ""
"\"Inställningar\", eller ta bort diagram med cog-ikonen vid respektive "
"diagram."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10989,11 +11049,11 @@ msgstr ""
"bekräftat kommer detta ladda en tabell över grupperade frågor, Där kan du "
"klicka på de förekommande SELECT-satser för att ytterligare analysera dessa."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Vänligen notera:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11006,86 +11066,86 @@ msgstr ""
"samt att inaktivera \"general_log\" och tömma tabellen när övervakningen "
"inte behövs längre."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Förinställt diagram"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Statusvariabler"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Välj serie:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Vanligtvis övervakade"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "eller skriv variabelnamn:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Visa som skillnadsvärde"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Tillämpa en dividend"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Lägg till enhet till datavärdena"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Lägg till denna serie"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Rensa serie"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Serie i diagram:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Logga statistik"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Välj tidsintervall:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Ta bort variabeldata i INSERT kommandon för bättre gruppering"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "Välj från vilken logg du vill att statistiken ska genereras från."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Resultaten grupperas efter frågetext."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Frågeanalyserare"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d sekund"
msgstr[1] "%d sekunder"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11219,7 +11279,7 @@ msgstr "Sessionsvärde"
msgid "Global value"
msgstr "Globalt värde"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Ladda ner"
@@ -11292,39 +11352,39 @@ msgstr "Det finns inga konfigurerade servrar"
msgid "New server"
msgstr "Ny server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Förvalt språk"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "låt användaren välja"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ingen -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Förvald server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Radslut"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Visa"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Ladda"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin:s hemsida"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Donera"
@@ -11490,8 +11550,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Om du känner att det är nödvändigt, använd extra skyddsinställningar - "
-"%shost autentisering%s inställningar och %strusted proxies listan%s. Dock "
+"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %"
+"shost autentisering%s inställningar och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till."
@@ -11552,51 +11612,42 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
msgid "Wrong data"
msgstr "Felaktigt data"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Bläddra bland främmande värden"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga."
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Vill du verkligen exekvera följande fråga?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Infogade rad id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "Visar som PHP-kod"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "Visar SQL-fråga"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Validerad SQL-kod"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL-resultat"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Genererad av"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etikett"
@@ -11609,58 +11660,6 @@ msgstr "Tabell %1$s har ändrats"
msgid "The columns have been moved successfully."
msgstr "Kolumnerna har flyttats framgångsrikt."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "På grund av sin längd, är denna kolumn kanske inte redigerbar"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binär - ändra inte"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Lägg till som ny rad"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Infoga som ny rad och ignorera fel"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Visa insert fråga"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "och sedan"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Gå tillbaka till föregående sida"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Lägg till ytterligare en ny rad"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Gå tillbaka till denna sida"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Ändra nästa rad"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil "
-"för att flytta vart som helst"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "Fortsätt inmatning med %s rader"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12247,31 +12246,37 @@ msgstr "Spåra dessa datahanterings kommandon:"
msgid "Create version"
msgstr "Skapa version"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
"Utför en \"Query By Example\" (jokertecken: \"%\") för två olika kolumner"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "Ytterligare sökkriterier"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Använd denna kolumn för att markera varje punkt"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Maximalt antal rader att visa"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Bläddra / Redigera punkter"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Hur du använder"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Återställ"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Hämta fler teman!"
@@ -12649,8 +12654,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge "
"cache-storlek är %s%%. Det bör vara över 80%%"
@@ -12803,8 +12808,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"%s%% av alla sorter orsakar tillfälliga tabeller, detta värde bör vara lägre "
"än 10%%."
@@ -13506,12 +13511,12 @@ msgstr ""
"InnoDB buffer poolen har stor inverkan på prestandan för InnoDB tabeller. "
"Tilldela allt ditt återstående minne till denna buffert. För databasservrar "
"som uteslutande använder InnoDB som lagrings motor och har inga andra "
-"tjänster (t.ex. en webbserver) som kör, kan du ställa in detta så hög som "
-"80%% av ditt tillgängliga minne. Om så inte är fallet, måste du noggrant "
-"bedöma minnesåtgången för dina andra tjänster och icke-InnoDB-tabeller och "
-"ställa in denna variabel därefter. Om den är för hög, kommer ditt system "
-"börja swappa, vilket minskar prestandan avsevärt. se även denna artikel"
#: libraries/advisory_rules.txt:448
@@ -13549,6 +13554,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert är satt till 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Använd mushjulet för att zooma in eller ut."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Klicka och dra musen för att navigera."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Strängar omvandlas till heltal för plottning"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13963,9 +13977,6 @@ msgstr "concurrent_insert är satt till 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "Ingen trigger med namn %s hittad"
-#~ msgid "rows"
-#~ msgstr "Visa"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "rad(er) med start från rad #"
diff --git a/po/ta.po b/po/ta.po
index ee12ff148d..df9879a05f 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,24 +6,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2011-12-28 11:44+0200\n"
"Last-Translator: any anonymous user <>\n"
"Language-Team: Tamil \n"
-"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.1.6\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "அனைத்தையும் காட்டு"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -31,7 +31,7 @@ msgstr "அனைத்தையும் காட்டு"
msgid "Page number:"
msgstr "பக்க எண்"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -41,21 +41,22 @@ msgstr ""
"மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர "
"மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "தேடு"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -71,28 +72,27 @@ msgstr "தேடு"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "செல் "
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "முக்கியபெயர்"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "விளக்கம்"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "இந்த மதிப்பை பயன்படுத்துக"
@@ -123,12 +123,12 @@ msgstr "அட்டவணைக் கருத்துரைகள்"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "நிரல்"
@@ -137,6 +137,7 @@ msgstr "நிரல்"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "நிரல்"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "வகை"
@@ -154,12 +155,12 @@ msgstr "வகை"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "வெற்று"
@@ -198,13 +199,13 @@ msgstr "கருத்துரைகள்"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "இல்லை"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -360,7 +361,7 @@ msgstr "அட்டவணை"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "வரிசைகள்"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%s காட்சி கட்டுனர் இற்கு %s மாற்றவும்"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "வரிசைப்படுத்து"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ஏறுவரிசை"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "இறங்குவரிசை"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "காண்பி"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "அழி"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "அல்லது"
@@ -525,8 +526,8 @@ msgstr[0] "%s அட்டவணையில் பொருந்தியவ
msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "உலாவு"
@@ -535,14 +536,14 @@ msgstr "உலாவு"
msgid "Delete the matches for the %s table?"
msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "அழி"
@@ -610,11 +611,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -624,7 +625,7 @@ msgstr "நோக்கு"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "படியெடுத்தல்"
@@ -638,20 +639,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "உடன் தெரிவுசெய்யப்பட்டது:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "அனைத்தையும் தெரி"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -663,27 +664,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "ஏற்றுமதி"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "அச்சுப் பார்வை"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "வெறுமை"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -709,13 +710,13 @@ msgstr "அட்டவணையை பகுப்பாய்"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Display table filter"
msgid "Replace table prefix"
msgstr "கருதிட்குள் சேர்க்க"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -734,8 +735,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "தரவுத்தளம்"
@@ -753,7 +754,7 @@ msgstr "புதுப்பிக்கப்பட்டது"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "தகுநிலை"
@@ -855,46 +856,46 @@ msgstr ""
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "கேத்திர கணிதம்"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "புள்ளி"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, fuzzy, php-format
#| msgid "Point"
msgid "Point %d"
msgstr "புள்ளி"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "ஒரு புள்ளியை சேர்"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "உள்ப்புற வளையம்"
@@ -904,15 +905,15 @@ msgstr "உள்ப்புற வளையம்"
msgid "Add a linestring"
msgstr "கட்டுப்பாடுகளை சேர்க்க"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "உள்ப்புற வளையத்தை சேர்"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "பல்கோணி"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "ஒரு பல்கோணியை சேர்"
@@ -935,8 +936,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -976,7 +977,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -999,7 +1000,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1014,7 +1015,7 @@ msgstr "திரும்பி"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1023,7 +1024,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1114,21 +1115,21 @@ msgstr "மூடு"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "தொகு"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "நேரடி போக்குவரத்து வரைபடம்"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "நேரடி இணை./செயலாக்க வரைபடம்"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "நேரடி வினவல் வரைபடம்"
@@ -1139,23 +1140,23 @@ msgstr "நிலையான தரவு"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "மொத்தம்"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "ஏனையது"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1175,7 +1176,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "செயலாக்கங்கள்"
@@ -1193,7 +1194,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "வினவல் புள்ளிவிவரவியல்"
@@ -1234,14 +1235,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1293,32 +1294,32 @@ msgstr "துண்டுகள் அனுப்ப"
msgid "Bytes received"
msgstr "துண்டுகள் ஏற்றுக்கொள்ளப்பட்டது"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "இணைப்புகள்"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1334,11 +1335,11 @@ msgstr "%s அட்டவணை"
msgid "Questions"
msgstr "வினாக்கள்"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "போக்குவரத்து"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "அமைப்புகள்"
@@ -1359,10 +1360,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "எதுவுமில்லை"
@@ -1455,7 +1456,7 @@ msgstr "அமைப்புக்களை மாற்று"
msgid "Current settings"
msgstr "நடப்பு அமைப்புக்கள்"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "வரைபடத் தலைப்பு"
@@ -1540,9 +1541,9 @@ msgstr "ஆரய்தல்"
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1647,7 +1648,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "இறக்குமதி"
@@ -1771,17 +1772,17 @@ msgstr "சுட்டுகளை மறை"
msgid "Show indexes"
msgstr "சுட்டுகளை காட்டு"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enable %s"
msgid "(Enabled)"
msgstr "இயலச்செய் %s"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disable %s"
msgid "(Disabled)"
@@ -1852,7 +1853,7 @@ msgstr "வினவல் பெட்டியை காண்பி"
msgid "No rows selected"
msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "மாற்று"
@@ -1861,17 +1862,18 @@ msgstr "மாற்று"
msgid "Query execution time"
msgstr "வினவல் நிறைவேற்றுகை நேரம்"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "சேமி"
@@ -1896,162 +1898,154 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Hide search results"
msgid "Query results"
msgstr "தேடல் முடிவுகளை மறை"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "புறக்கணி"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "நகல்"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "நெடுக்கைகளை சேர்"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "இணைப்புக்கு செல்"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "கடவுச்சொல்லை இயற்று"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "இயற்று"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "கடவுச்சொல்லை மாற்று"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "மேலும்"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2059,110 +2053,110 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "முடிந்த"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "பின்"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "அடுத்த"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "இன்று"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "ஜனவரி"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "பெப்ரவரி"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "மார்ச்"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "ஏப்ரல்"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "மே"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "ஜூன்"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "ஜூலை"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "ஆகஸ்ட்"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "செப்டம்பர்"
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "அக்டோபர்"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "நவம்பர்"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "டிசம்பர்"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2170,78 +2164,78 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "மார்கழி"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "புதன்"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "வியாழன்"
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "சனி"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2249,97 +2243,97 @@ msgid "Sun"
msgstr "ஞாயி"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "திங்"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "செவ்"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "புத"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "வியா"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "வெள்"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "ஞாயி"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "திங்"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "செவ்"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "புத"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "வியா"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "வெள்"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "கிழமை"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "எதுவுமில்லை"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "மணித்தியாலம்"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "நிமிடம்"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "வினாடிகள்"
@@ -2389,16 +2383,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "ஒரு வினாடிக்கு"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "ஒரு நிமிடத்திற்கு "
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "ஒரு மணி நேரத்திற்கு "
@@ -2523,15 +2517,15 @@ msgstr ""
msgid "Databases"
msgstr "தரவுத்தளங்கள்"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "சேவையன்"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2543,20 +2537,20 @@ msgid "Structure"
msgstr "கட்டமைப்பு"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "செருகு"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "செயல்பாடுகள்"
@@ -2616,12 +2610,12 @@ msgstr "பாவனையளவு"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2638,8 +2632,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "வலு"
@@ -2752,35 +2747,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "அதை ஏற்றுக்கொள்"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2821,14 +2816,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3086,8 +3081,8 @@ msgstr "வரவேற்கிறது %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@@ -3190,7 +3185,7 @@ msgstr "பகிரப்பட்டது"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "அட்டவணைகள்"
@@ -3241,42 +3236,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3311,8 +3306,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "ஆங்"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL வினவல்"
@@ -3350,7 +3345,7 @@ msgid "Create PHP Code"
msgstr "PHP குறிமுறை உருவாக்கு"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "புதுப்பி"
@@ -3371,95 +3366,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "உள்வரிசை"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "ஆரம்பம்"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "முந்தைய"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "அடுத்து"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "முடிவு"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "உனது கணினியை உலாவு"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "நிறைவேற்று"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "அச்சிடு"
@@ -3631,9 +3626,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3777,7 +3772,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3837,7 +3832,7 @@ msgstr "தரவுத்தளங்கள்"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5587,7 +5582,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
@@ -5725,25 +5720,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5901,8 +5896,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6080,52 +6075,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "திங்கள்"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Browse"
+msgid "rows"
+msgstr "உலாவு"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6143,91 +6143,91 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Add into comments"
msgid "Display chart"
msgstr "கருதிட்குள் சேர்க்க"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6271,7 +6271,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6522,8 +6522,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6646,12 +6646,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6855,8 +6855,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7019,6 +7019,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7029,34 +7119,34 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "வெள்ளி"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7064,11 +7154,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7395,18 +7480,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7732,11 +7809,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8070,7 +8142,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8078,11 +8150,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8106,10 +8178,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8288,10 +8356,6 @@ msgstr ""
msgid "Table Search"
msgstr "தேடு"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8469,7 +8533,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8666,10 +8730,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8862,17 +8922,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9307,8 +9367,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9423,7 +9483,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9556,146 +9616,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "வடிகட்டிகள்"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9703,115 +9763,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "நிறுத்தப்பட்டுள்ளது"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9819,78 +9879,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9898,7 +9958,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9906,42 +9966,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -9949,33 +10009,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -9984,242 +10044,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10227,99 +10287,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10327,18 +10387,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10346,65 +10406,65 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s களத்தை சேர்க்க"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "கள நிரல்களை சேர்க்க/ நீக்குக"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10413,7 +10473,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10421,18 +10481,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10440,11 +10500,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10452,88 +10512,88 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10665,7 +10725,7 @@ msgstr "அமர்வு மதிப்பு"
msgid "Global value"
msgstr "முழுதளாவிய மதிப்பு"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "பதிவிறக்கம்"
@@ -10727,39 +10787,39 @@ msgstr ""
msgid "New server"
msgstr "புதிய சேவையகம்"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "முன்னிருப்பு மொழி"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ஒன்றுமில்லை -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "முன்னிருப்பு சேவையகம்"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "முடிவுக்கோடு"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "திரை"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "ஏற்று"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin அகப்பக்கம்"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "நன்கொடை"
@@ -10947,51 +11007,42 @@ msgstr ""
msgid "Wrong data"
msgstr "தரவு இல்லை"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "சிட்டை"
@@ -11006,56 +11057,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -11662,30 +11663,34 @@ msgstr ""
msgid "Create version"
msgstr "பதிப்பை உருவாக்கு"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "எப்படி பயன்படுத்துவது"
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12037,8 +12042,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12165,8 +12170,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/te.po b/po/te.po
index 520d42ac79..96307ae522 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,24 +6,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Telugu \n"
-"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "అన్నీ చూపించు"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -31,7 +31,7 @@ msgstr "అన్నీ చూపించు"
msgid "Page number:"
msgstr "పుట సంఖ్య:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgid ""
msgstr ""
# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "శోధించు"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "శోధించు"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "వెళ్ళు"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "కీలకపదం"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "వివరణ"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "ఈ విలువని ఉపయోగించు"
@@ -122,12 +122,12 @@ msgstr "పట్టిక వ్యాఖ్యలు"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "వరుస"
@@ -136,6 +136,7 @@ msgstr "వరుస"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "వరుస"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "రకం"
@@ -153,12 +154,12 @@ msgstr "రకం"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr ""
@@ -197,13 +198,13 @@ msgstr "వ్యాఖ్యలు"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "కాదు"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -360,7 +361,7 @@ msgstr "పట్టిక"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
@@ -414,29 +415,29 @@ msgstr "దృశ్య కల్పకం"
# మొదటి అనువాదము
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "క్రమంలో పేర్చు"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ఆరోహణ"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "అవరోహణ"
# మొదటి అనువాదము
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "చూపించు"
@@ -458,8 +459,8 @@ msgstr "తొలగించు"
# మొదటి అనువాదము
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "లేదా"
@@ -528,8 +529,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -538,14 +539,14 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "తొలగించు"
@@ -616,11 +617,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
# మొదటి అనువాదము
@@ -631,7 +632,7 @@ msgstr "చూపుము"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -646,20 +647,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr ""
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -671,28 +672,28 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "ఎగుమతి"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
# మొదటి అనువాదము
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "ఖాళీ"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -718,13 +719,13 @@ msgstr ""
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Display table filter"
msgid "Replace table prefix"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -744,8 +745,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "డేటాబేస్"
@@ -763,7 +764,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "స్థితి"
@@ -862,46 +863,46 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
# మొదటి అనువాదము
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "బిందువును చేర్చు"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -911,16 +912,16 @@ msgstr ""
msgid "Add a linestring"
msgstr "కొత్త వాడుకరిని చేర్చు"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
# మొదటి అనువాదము
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add into comments"
msgid "Add a polygon"
@@ -945,8 +946,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -986,7 +987,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -1009,7 +1010,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1024,7 +1025,7 @@ msgstr "వెనుకకి"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1033,7 +1034,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1132,21 +1133,21 @@ msgstr "మూసివేయి"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "మార్చు"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1157,23 +1158,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "మొత్తం"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1193,7 +1194,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1213,7 +1214,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
@@ -1258,14 +1259,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "మెబై"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "కిబై"
@@ -1321,32 +1322,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "అనుసంధానాలు"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "బై"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "గిబై"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "టెబై"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "పిబై"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ఎబై"
@@ -1364,11 +1365,11 @@ msgstr "%s పట్టిక"
msgid "Questions"
msgstr "సంబంధాలు"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "అమరికలు"
@@ -1392,10 +1393,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "ఏమీలేదు"
@@ -1494,7 +1495,7 @@ msgstr "ప్రాధమిక అమరికలు"
msgid "Current settings"
msgstr "మరిన్ని అమరికలు"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Default title"
msgid "Chart Title"
@@ -1585,9 +1586,9 @@ msgstr "విశదీకరించు"
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "సమయం"
@@ -1697,7 +1698,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "దిగుమతి"
@@ -1844,17 +1845,17 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Tables"
msgid "(Enabled)"
msgstr "పట్టికలు"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disable Statistics"
msgid "(Disabled)"
@@ -1931,7 +1932,7 @@ msgid "No rows selected"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "మార్చుము"
@@ -1940,17 +1941,18 @@ msgstr "మార్చుము"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "భద్రపరచు"
@@ -1978,171 +1980,163 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Show statistics"
msgid "Query results"
msgstr "గణాంకాలను చూపించు"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "విషయ సూచిక"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add into comments"
msgid "Add columns"
msgstr "స్పందనలకు చేర్చు"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Comments"
msgid "Copy column name"
msgstr "వ్యాఖ్యలు"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Start"
msgid "Show data row(s)"
msgstr "మొదలుపెట్టు"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "సంకేతపదాన్ని మార్చు"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "మరిన్ని"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2150,21 +2144,21 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
@@ -2172,7 +2166,7 @@ msgid "Prev"
msgstr "గత"
# మొదటి అనువాదము
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2180,149 +2174,149 @@ msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "ఈరోజు"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "జనవరి"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "ఫిబ్రవరి"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "మార్చి"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "ఏప్రిల్"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "మే"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "జూన్"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "జూలై"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "ఆగస్ట్"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "సెప్టెంబర్"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "అక్టోబర్"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "నవంబర్"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "డిసెం"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "ఆదివారం"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "సోమవారం"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "మంగళవారం"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "బుధవారం"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "గురువారం"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "శుక్రవారం"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "శనివారం"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2330,98 +2324,98 @@ msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "ఆ"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "సో"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "మం"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "బు"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "గు"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "శు"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "శ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "వారం"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "ఏమీలేదు"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "గంట"
# మొదటి అనువాదము
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "నిమిషం"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "క్షణం"
@@ -2471,16 +2465,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "క్షణానికి"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "నిమిషానికి"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "గంటకి"
@@ -2605,15 +2599,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2625,20 +2619,20 @@ msgid "Structure"
msgstr "నిర్మాణాకృతి"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2698,12 +2692,12 @@ msgstr "వాడుకరి"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2720,8 +2714,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "పొరపాటు"
@@ -2841,36 +2836,36 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
# మొదటి అనువాదము
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "తీసుకొనుము"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2911,14 +2906,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3177,8 +3172,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3279,7 +3274,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "పట్టికలు"
@@ -3330,44 +3325,44 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Server configuration"
msgid "Failed to read configuration file"
msgstr "సేవకి స్వరూపణం"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3403,8 +3398,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3442,7 +3437,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3463,34 +3458,34 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "ఆది"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y at %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
# మొదటి అనువాదము
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
@@ -3498,8 +3493,8 @@ msgid "Begin"
msgstr "మొదలు"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3508,8 +3503,8 @@ msgid "Previous"
msgstr "క్రితము"
# మొదటి అనువాదము
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3517,52 +3512,52 @@ msgctxt "Next page"
msgid "Next"
msgstr "తదుపరి"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "ముగింపు"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "ముద్రించు"
@@ -3738,9 +3733,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3884,7 +3879,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3945,7 +3940,7 @@ msgstr "డేటాబేస్"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5708,7 +5703,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5849,25 +5844,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "వివరాలు..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6031,8 +6026,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6210,54 +6205,59 @@ msgstr ""
msgid "Language"
msgstr "భాష"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Table comments"
msgid "Restore column order"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "మొదలుపెట్టు"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "మరిన్ని"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+#, fuzzy
+#| msgid "Start"
+msgid "rows"
+msgstr "మొదలుపెట్టు"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6275,96 +6275,96 @@ msgstr ""
msgid "Options"
msgstr "ఎంపికలు"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "పాక్షిక పాఠ్యాలు"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "పూర్తి పాఠ్యాలు"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Version information"
msgid "Hide browser transformation"
msgstr "సంచిక సమాచారం"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "మొత్తం"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create"
msgid "Create view"
msgstr "సృష్టించు"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6408,7 +6408,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6661,8 +6661,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6787,12 +6787,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -7000,8 +7000,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7167,6 +7167,100 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "దాచు"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "మరియు తరువాత"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "మునుపటి పుటకు వెళ్ళు"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "ఈ పుటకు తిరిగి వెళ్ళుము"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "విలువ"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7177,34 +7271,34 @@ msgstr "ఏమీలేదు"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "శు"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "దాఖలుచేయి"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7213,11 +7307,6 @@ msgstr ""
msgid "Charset"
msgstr "అక్షరమాల"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "బల్గేరియన్"
@@ -7555,18 +7644,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "విలువ"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7918,11 +7999,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8267,7 +8343,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8277,11 +8353,11 @@ msgstr ""
msgid "Columns"
msgstr "వ్యాఖ్యలు"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8305,10 +8381,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8491,10 +8563,6 @@ msgstr ""
msgid "Table Search"
msgstr "శోధించు"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8679,7 +8747,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "వాడుకరి"
@@ -8888,11 +8956,6 @@ msgstr "అన్నింటిని చూపుము/దాచుము"
msgid "Hide/Show Tables with no relation"
msgstr ""
-# మొదటి అనువాదము
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "దాచు"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9099,17 +9162,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "దస్త్రాలు"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9544,8 +9607,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9663,7 +9726,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9796,153 +9859,153 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "సంబంధాలు"
# మొదటి అనువాదము
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Analyze"
msgid "Run analyzer"
msgstr "విశదీకరించు"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "పరిపాలన"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9950,117 +10013,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "పంపించు"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "ఆజ్ఞ"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10068,78 +10131,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10147,7 +10210,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10155,42 +10218,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10198,33 +10261,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10233,245 +10296,245 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "సృష్టించబడిన పుటల సంఖ్య"
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "చదివిన పుటల సంఖ్య"
# మొదటి అనువాదము
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "వ్రాసిన పుటల సంఖ్య"
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10479,99 +10542,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10579,18 +10642,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10598,70 +10661,70 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "మొదలుపెట్టు"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add into comments"
msgid "Add chart"
msgstr "స్పందనలకు చేర్చు"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Table comments"
msgid "Chart columns"
msgstr "పట్టిక వ్యాఖ్యలు"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Leave blank for defaults"
msgid "Reset to default"
msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10670,7 +10733,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10678,18 +10741,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10697,11 +10760,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10710,85 +10773,85 @@ msgid ""
msgstr ""
# మొదటి అనువాదము
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "డేటాబేస్ తొలగించండి"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "గణాంకాలను చూపించు"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10797,7 +10860,7 @@ msgstr[0] "క్షణం"
msgstr[1] "క్షణం"
# మొదటి అనువాదము
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -10934,7 +10997,7 @@ msgid "Global value"
msgstr "సార్వత్రిక విలువ"
# మొదటి అనువాదము
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "దించుకొనుము"
@@ -10998,40 +11061,40 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "అప్రమేయ భాష"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "వాడుకరిని ఎంచుకోనివ్వు"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- ఏమీలేదు -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
# మొదటి అనువాదము
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "వాక్యాంతము"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11219,51 +11282,42 @@ msgstr ""
msgid "Wrong data"
msgstr "భోగట్టా"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11278,59 +11332,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "%s డేటాబేస్ తుడిచివేయడమైనది"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-# మొదటి అనువాదము
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "మరియు తరువాత"
-
-# మొదటి అనువాదము
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "మునుపటి పుటకు వెళ్ళు"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-# మొదటి అనువాదము
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "ఈ పుటకు తిరిగి వెళ్ళుము"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -11951,30 +11952,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr "మరిన్ని అలంకారాలను పొందండి!"
@@ -12323,8 +12328,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12445,8 +12450,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/th.po b/po/th.po
index aecc4a0906..e2149dae75 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-21 15:20+0200\n"
"Last-Translator: Setthawut Sawaengkit \n"
"Language-Team: thai
\n"
-"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 0.10\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "แสดงทั้งหมด"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "แสดงทั้งหมด"
msgid "Page number:"
msgstr "หมายเลขหน้า:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก "
"หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "ค้นหา"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "ค้นหา"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ลงมือ"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "ชื่อคีย์"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "คำอธิบาย"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "ใช้ค่านี้"
@@ -119,12 +119,12 @@ msgstr "หมายเหตุของตาราง"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "สดมภ์"
@@ -133,6 +133,7 @@ msgstr "สดมภ์"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "สดมภ์"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "ชนิด"
@@ -150,12 +151,12 @@ msgstr "ชนิด"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "ว่างเปล่า (null)"
@@ -194,13 +195,13 @@ msgstr "หมายเหตุ"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "ไม่"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +355,7 @@ msgstr "ตาราง"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "แถว"
@@ -404,28 +405,28 @@ msgid "Switch to %svisual builder%s"
msgstr "สลับไปยัง %svisual builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "เรียง"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "น้อยไปมาก"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "มากไปน้อย"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "แสดง"
@@ -446,8 +447,8 @@ msgid "Del"
msgstr "ลบ"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "หรือ"
@@ -517,8 +518,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "เปิดดู"
@@ -527,14 +528,14 @@ msgstr "เปิดดู"
msgid "Delete the matches for the %s table?"
msgstr "ลบตรงกับที่ตาราง %s หรือไม่?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "ลบ"
@@ -601,11 +602,11 @@ msgstr "การติดตามเริ่มทำงานแล้ว"
msgid "Tracking is not active."
msgstr "หยุดการติดตามแล้ว"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "การแสดงผลนี้แสดงเพียงจำนวนข้อมูลเท่านี้, ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -615,7 +616,7 @@ msgstr "ตารางจำลอง (View)"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง"
@@ -629,20 +630,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "เลือกทั้งหมด"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -654,27 +655,27 @@ msgstr "ตรวจสอบตารางที่มี overhead"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "ส่งออก"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "แสดง"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "ลบข้อมูล"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -700,11 +701,11 @@ msgstr "วิเคราะห์ตาราง"
msgid "Add prefix to table"
msgstr "เพิ่มคำนำไปยังตาราง"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "แทนที่คำนำไปยังตาราง"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "คัดลอกคำนำไปยังตาราง"
@@ -723,8 +724,8 @@ msgstr "ตารางที่ถูกติดตาม"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "ฐานข้อมูล"
@@ -742,7 +743,7 @@ msgstr "ปรับปรุงแล้ว"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "สถานะ"
@@ -840,45 +841,45 @@ msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "เรขาคณิต"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "จุด"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "จุด %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "เพิ่มจุด"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "แถวข้อความ"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "ด้านนอก"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "ด้านใน"
@@ -886,15 +887,15 @@ msgstr "ด้านใน"
msgid "Add a linestring"
msgstr "เพิ่มข้อความ"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "เพิ่มด้านใน"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "รูปหลายเหลี่ยม"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "เพิ่มรูปหลายเหลี่ยม"
@@ -915,8 +916,8 @@ msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"คุณพยายามที่จะอับโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ "
"เพื่อแก้ไขปัญหาดังกล่าวนี้ "
@@ -963,7 +964,7 @@ msgstr "ไม่สามารถแปลงไฟล์ข้อมูลช
msgid "Could not load import plugins, please check your installation!"
msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น"
@@ -988,7 +989,7 @@ msgstr ""
"ตามเวลารันสูงสุดที่กำหนดใน PHP"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1003,7 +1004,7 @@ msgstr "ย้อนกลับ"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น"
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูกปิดไว้"
@@ -1013,7 +1014,7 @@ msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูก
msgid "Do you really want to execute \"%s\"?"
msgstr "คุณแน่ใจที่ต้องการจะ"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "คุณกำลังจะทำลายฐาข้อมูลทั้งหมด!"
@@ -1099,21 +1100,21 @@ msgstr "ปิด"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "แก้ไข"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "สถานะการใช้ปัจจุบัน"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "โปรเซสที่ทำงานอยู่"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "คำสั่ง SQL ปัจจุบัน"
@@ -1124,23 +1125,23 @@ msgstr "ข้อมูลคงที่"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "รวม"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "อื่นๆ"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1160,7 +1161,7 @@ msgstr "การจราจรของเครื่องแม่ข่า
msgid "Connections since last refresh"
msgstr "การเชื่อมต่อ จากครั้งล่าสุด"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "โพรเซส"
@@ -1178,7 +1179,7 @@ msgstr "คำถามจากครั้งล่าสุด"
msgid "Questions (executed statements by the server)"
msgstr "คำสั่ง (คำสั่งที่รันโดยเครื่องแม่ข่าย)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "สถิติของคำสั่ง"
@@ -1221,14 +1222,14 @@ msgid "System swap"
msgstr "หน่วยความจำ swap ของระบบ"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "เมกกะไบต์"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "กิโลไบต์"
@@ -1280,32 +1281,32 @@ msgstr "Byte ที่ส่ง"
msgid "Bytes received"
msgstr "Byte ที่รับ"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "การเชื่อมต่อ"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "ไบต์"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "กิกะไบต์"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "เทอราไบต์"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "เพตตะไบต์"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "เอกซะไบต์"
@@ -1319,11 +1320,11 @@ msgstr "%d ตาราง"
msgid "Questions"
msgstr "คำถาม"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "การจราจร"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "การตั้งค่า"
@@ -1344,10 +1345,10 @@ msgid "Please add at least one variable to the series"
msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "ไม่มี"
@@ -1442,7 +1443,7 @@ msgstr "เปลี่ยนการตั้งค่า"
msgid "Current settings"
msgstr "ค่าที่ถูกตั้งปัจจุบัน"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "ชื่อการแสดงผล"
@@ -1526,9 +1527,9 @@ msgstr "กำลังวิเคราะห์..."
msgid "Explain output"
msgstr "อธิบายผลคำสั่ง"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "เวลา"
@@ -1625,7 +1626,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "นำเข้า"
@@ -1749,17 +1750,17 @@ msgstr "ซ่อนดัชนี"
msgid "Show indexes"
msgstr "แสดงดัชนี"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "เปิดใช้อยู่"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1828,7 +1829,7 @@ msgstr "แสดงช่องคำค้น SQL"
msgid "No rows selected"
msgstr "ยังไม่ได้เลือกแถว"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "เปลี่ยน"
@@ -1837,17 +1838,18 @@ msgstr "เปลี่ยน"
msgid "Query execution time"
msgstr "เวลาที่ทำคำสั่ง"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "บันทึก"
@@ -1872,163 +1874,155 @@ msgid "Hovering over a point will show its label."
msgstr "นำตัวชี้วางเพื่อแสดงคำกำกับ"
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "ใช้ล้อของเมาส์เพื่อขยายหรือย่อจุด"
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "คลิกและลากเมาส์เพื่อพล็อตจุด"
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "คลิก ล้างค่า เพื่อกลับไปขนาดเริ่มต้น"
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "คลิก จุดข้อมูล เพื่อดูหรือแก้ไขแถวข้อมูล"
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "ขนาดจุดสามารถเปลี่ยนได้ที่ขวาล่าง"
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "ข้อความจะถูกแปลงเป็นตัวเลขเพื่อทำการพล็อตจุด"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "เพิ่มสองสดมภ์"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "เลือกสองสดมภ์ใดๆ"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "ผลลัพธ์ SQL"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "สารบัญ"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "ข้าม"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "คัดลอก"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "เพิ่มฟิลด์ใหม่"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "เลือกคีย์อ้างอิง"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "เลือกคีย์นอก"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "กรุณาเลือกคีย์หลักหรือคียเดี่ยว"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "เลือกฟิลด์ที่ต้องการแสดง"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "เพิ่มตัวเลือกสำหรับสดมภ์"
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "กด escape เพื่อยกเลิกการแก้ไข"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr "คุณได้ทำการแก้ไขข้อมูลบางอย่าง แต่ยังไม่ได้บันทึก คุณแน่ใจว่าจะออกจากหน้านี้โดยยังไม่บันทึก?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "ลากเพื่อเปลี่ยนลำดับ"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "กดเพื่อเรียงลำดับ"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "กดเพื่อเลือก เพื่อดูสดมภ์"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
"ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้"
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "คุณสามารถแก้ไขสดมภ์ โดยเลือกไปที่ข้อมูลนั้นๆ"
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "ไปที่หน้า"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "ชื่อคอลัมน์"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "อัพเดทแถว"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "สร้างรหัสอัตโนมัติ"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "สร้างอัตโนมัติ"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "เปลี่ยนรหัสผ่าน"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "เพิ่มเติม"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2036,173 +2030,173 @@ msgid ""
msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", รุ่นเสถียรล่าสุด:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "ปัจจุบัน"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "จบ"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "ก่อนหน้า"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "ต่อไป"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "วันนี้"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "มกราคม"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "กุมภาพันธ์"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "มีนาคม"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "เมษายน"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "พฤษภาคม"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "มิถุนายน"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "กรกฎาคม"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "สิงหาคม"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "กันยายน"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "ตุลาคม"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "พฤศจิกายน"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "ธันวาคม"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "ธ.ค."
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "อาทิตย์"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "วันจันทร์"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "วันอังคาร"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "วันพุธ"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "วันพฤหัสบดี"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "วันศุกร์"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "วันเสาร์"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2210,95 +2204,95 @@ msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "ส."
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "อา."
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "จ."
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "อ."
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "พ."
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "พฤ."
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "ศ."
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "ส."
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "สัปดาห์"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "ปฎิทินแบบ เดือน/ปี"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "ไม่มี"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "ชั่วโมง"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "นาที"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "วินาที"
@@ -2350,16 +2344,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "ต่อวินาที"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "ต่อนาที"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "ต่อชั่วโมง"
@@ -2486,15 +2480,15 @@ msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอัน
msgid "Databases"
msgstr "ฐานข้อมูล"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "เซิร์ฟเวอร์"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2506,20 +2500,20 @@ msgid "Structure"
msgstr "โครงสร้าง"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "แทรก"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "กระบวนการ"
@@ -2579,13 +2573,13 @@ msgstr "ผู้ใช้"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
#, fuzzy
msgid "Binary log"
msgstr "ข้อมูลไบนารี "
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "ตัวแปร"
@@ -2602,8 +2596,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "ผิดพลาด"
@@ -2715,35 +2710,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "ไม่สามารถแสดงตัวอย่างได้"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2784,14 +2779,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3050,8 +3045,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3151,7 +3146,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "ตาราง"
@@ -3204,22 +3199,22 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3230,21 +3225,21 @@ msgid ""
msgstr ""
"ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3279,8 +3274,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "คำค้น SQL"
@@ -3318,7 +3313,7 @@ msgid "Create PHP Code"
msgstr "สร้างโค้ด PHP"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "เรียกใหม่"
@@ -3339,43 +3334,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "อา."
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y %Rน."
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Add new field"
msgid "Missing parameter:"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "จุดเริ่มต้น"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3383,8 +3378,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ก่อนหน้า"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3392,53 +3387,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "ต่อไป"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "ท้ายสุด"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "กระโดดไปที่ฐานข้อมูล "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "พิมพ์"
@@ -3623,9 +3618,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "เริ่มใหม่"
@@ -3775,7 +3770,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3837,7 +3832,7 @@ msgstr "เสนอโครงสร้างตาราง"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5675,7 +5670,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5814,27 +5809,27 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6015,8 +6010,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6210,56 +6205,59 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "ส."
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows per page"
msgid "Number of rows"
msgstr "ระเบียนต่อหน้า"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "จ."
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "แนวนอน"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "แนวนอน (หมุนหัวเรื่อง)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "แนวตั้ง"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "เปิดดู"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "เรียงโดยคีย์"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6278,100 +6276,100 @@ msgstr "เรียงโดยคีย์"
msgid "Options"
msgstr "กระบวนการ"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "ข้อความบางส่วน"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "ทั้งข้อความ"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "รีเลชันแนล สกีมา"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "รีเลชันแนล สกีมา"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
msgid "Hide browser transformation"
msgstr "การแปลงที่เรียกใช้ได้"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "ฆ่าทิ้ง"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "ในคำค้น"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "แสดงระเบียนที่ "
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "ทั้งหมด"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "คำค้นใช้เวลา %01.4f วินาที"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "แสดงสกีมาของ PDF"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "ไม่พบลิงก์"
@@ -6417,7 +6415,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "สถานะของ InnoDB"
@@ -6669,8 +6667,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6818,12 +6816,12 @@ msgstr "MIME-types ที่มีอยู่"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "โฮสต์"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "เวลาในการสร้าง"
@@ -7034,8 +7032,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
@@ -7200,6 +7198,101 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "ฟังก์ชั่น"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "ข้อมูลไบนารี "
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "เนื่องจากความยาวของมัน ฟิลด์นี้ ไม่อาจแก้ไขได้"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "ข้อมูลไบนารี - ห้ามแก้ไข "
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "แทรก"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "แทรกเป็นแถวใหม่"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "ส่งกลับ"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "แทรกระเบียนใหม่"
+
+#: libraries/insert_edit.lib.php:1333
+#, fuzzy
+msgid "Go back to this page"
+msgstr "ส่งกลับ"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "ค่า"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7212,38 +7305,38 @@ msgstr "ไม่มี"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "ศ."
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "ส่ง"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Add new field"
msgid "Add prefix"
msgstr "เพิ่มฟิลด์ใหม่"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "คุณแน่ใจที่ต้องการจะ"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "ไม่มีการเปลี่ยนแปลง"
@@ -7251,11 +7344,6 @@ msgstr "ไม่มีการเปลี่ยนแปลง"
msgid "Charset"
msgstr "ชุดตัวอักษร"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "ข้อมูลไบนารี "
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "บัลเกเรีย"
@@ -7589,18 +7677,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "ตัวแปร"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "ค่า"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
#, fuzzy
msgid "Server ID"
@@ -7947,11 +8027,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "ฟังก์ชั่น"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8308,7 +8383,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "ปฏิทิน"
@@ -8319,11 +8394,11 @@ msgstr "ปฏิทิน"
msgid "Columns"
msgstr "ชื่อคอลัมน์"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "จดคำค้นนี้ไว้"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8347,10 +8422,6 @@ msgstr "แสดงคำค้นนี้อีกที "
msgid "View only"
msgstr "ดูอย่างเดียว"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8557,12 +8628,6 @@ msgstr "กระบวนการ"
msgid "Table Search"
msgstr "ค้นหา"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "แทรก"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8746,7 +8811,7 @@ msgstr "รุ่นของโพรโทคอล"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "ผู้ใช้"
@@ -8964,10 +9029,6 @@ msgstr "แสดงทั้งหมด"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9187,18 +9248,18 @@ msgstr "ไม่มีตาราง \"%s\"!"
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "จำนวนฟิลด์"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "ตัดทอนคำค้นที่แสดง"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "แสดงคำค้นแบบเต็ม"
@@ -9646,8 +9707,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9765,7 +9826,7 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9904,160 +9965,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
#, fuzzy
msgid "Query cache"
msgstr "ชนิดคำค้น"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
#, fuzzy
msgid "Delayed inserts"
msgstr "แทรกหลายระเบียนในคราวเดียว"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
#, fuzzy
msgid "Show open tables"
msgstr "แสดงตาราง"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "ข้อมูลรันไทม์"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "เรียกใหม่"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
msgid "Show only alert values"
msgstr "แสดงตาราง"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
msgid "Show unformatted values"
msgstr "แสดงตาราง"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "รีเลชัน"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "ชนิดคำค้น"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "ฟังก์ชั่น"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10065,117 +10126,117 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "คำสั่ง"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "ได้รับ"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "ถูกส่ง"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "ความพยายามล้มเหลว"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "ยกเลิก"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "คำสั่ง"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, fuzzy
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง"
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10183,78 +10244,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10262,7 +10323,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10270,42 +10331,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10313,33 +10374,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10348,242 +10409,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10591,99 +10652,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10691,18 +10752,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10710,70 +10771,70 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "หยุดการติดตามแล้ว"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "ส."
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add new field"
msgid "Add chart"
msgstr "เพิ่มฟิลด์ใหม่"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "เรียกใหม่"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10782,7 +10843,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10790,18 +10851,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10809,11 +10870,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10821,90 +10882,90 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "เอาฐานข้อมูลออก"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "เลือกตาราง"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "คำค้น SQL"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "สถิติของแถว"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "เลือกทั้งหมด"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "ชนิดคำค้น"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
@@ -10912,7 +10973,7 @@ msgid_plural "%d seconds"
msgstr[0] "ต่อวินาที"
msgstr[1] "ต่อวินาที"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11048,7 +11109,7 @@ msgstr "ค่าเซสชั่น"
msgid "Global value"
msgstr "ค่าแบบโกลบอล"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11112,39 +11173,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "แสดง"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "โหลด"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "หน้าเว็บ phpMyAdmin"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "บริจาค"
@@ -11333,55 +11394,46 @@ msgstr ""
msgid "Wrong data"
msgstr "ไม่มีฐานข้อมูล"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "คุณแน่ใจที่ต้องการจะ"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "ตรวจสอบ SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "ผลลัพธ์ SQL"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "สร้างโดย"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "ป้ายชื่อ"
@@ -11396,59 +11448,6 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ
msgid "The columns have been moved successfully."
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "เนื่องจากความยาวของมัน ฟิลด์นี้ ไม่อาจแก้ไขได้"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "ข้อมูลไบนารี - ห้ามแก้ไข "
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "แทรกเป็นแถวใหม่"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "ส่งกลับ"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "แทรกระเบียนใหม่"
-
-#: tbl_change.php:1087
-#, fuzzy
-msgid "Go back to this page"
-msgstr "ส่งกลับ"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12087,33 +12086,39 @@ msgstr ""
msgid "Create version"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "คำค้น SQL"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "เริ่มใหม่"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12469,8 +12474,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12602,8 +12607,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13294,8 +13299,8 @@ msgid ""
"perfectly adequate for your system if you don't have much InnoDB tables or "
"other services running on the same machine."
msgstr ""
-"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า "
-"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB "
+"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%"
+"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB "
"มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน"
#: libraries/advisory_rules.txt:452
@@ -13322,6 +13327,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "ใช้ล้อของเมาส์เพื่อขยายหรือย่อจุด"
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "คลิกและลากเมาส์เพื่อพล็อตจุด"
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "ข้อความจะถูกแปลงเป็นตัวเลขเพื่อทำการพล็อตจุด"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13453,9 +13467,6 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
#~ msgid "Export of event \"%s\""
#~ msgstr "ยังไม่ได้เลือกแถว"
-#~ msgid "rows"
-#~ msgstr "เปิดดู"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "แถว เริ่มจากแถวที่"
@@ -13533,8 +13544,8 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
-#~ "%s"
+#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
+#~ "s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"
diff --git a/po/tk.po b/po/tk.po
index 9bd6f92b70..f3ca9f5805 100644
--- a/po/tk.po
+++ b/po/tk.po
@@ -7,24 +7,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-23 10:42+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Turkmen \n"
-"Language: tk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: tk\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Hemmesini görkez"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -32,7 +32,7 @@ msgstr "Hemmesini görkez"
msgid "Page number:"
msgstr "Sahypa belgisi:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -42,21 +42,22 @@ msgstr ""
"ýapdyňyz, ýada siziň brauzeriňiziň hopsuzlyk sazlamalary äpişgeler-arasy "
"täzelemäni saklaýandyr."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Gözle"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -72,28 +73,27 @@ msgstr "Gözle"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Git"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Açarsözi"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Düşündiriş"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Şu bahany ulan"
@@ -126,12 +126,12 @@ msgstr ""
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr ""
@@ -140,6 +140,7 @@ msgstr ""
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -147,9 +148,9 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr ""
@@ -157,12 +158,12 @@ msgstr ""
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr ""
@@ -201,13 +202,13 @@ msgstr ""
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -218,19 +219,19 @@ msgstr ""
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -361,7 +362,7 @@ msgstr ""
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr ""
@@ -412,28 +413,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr ""
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr ""
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr ""
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr ""
@@ -454,8 +455,8 @@ msgid "Del"
msgstr ""
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr ""
@@ -524,8 +525,8 @@ msgstr[0] ""
msgstr[1] ""
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr ""
@@ -534,14 +535,14 @@ msgstr ""
msgid "Delete the matches for the %s table?"
msgstr ""
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr ""
@@ -609,11 +610,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -623,7 +624,7 @@ msgstr ""
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr ""
@@ -637,20 +638,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr ""
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr ""
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr ""
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -662,27 +663,27 @@ msgstr ""
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr ""
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr ""
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr ""
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -708,11 +709,11 @@ msgstr ""
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr ""
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -731,8 +732,8 @@ msgstr ""
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr ""
@@ -750,7 +751,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr ""
@@ -848,45 +849,45 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr ""
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr ""
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -894,15 +895,15 @@ msgstr ""
msgid "Add a linestring"
msgstr ""
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -923,8 +924,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -964,7 +965,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr ""
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -987,7 +988,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1002,7 +1003,7 @@ msgstr ""
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
@@ -1011,7 +1012,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr ""
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1097,21 +1098,21 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr ""
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr ""
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr ""
@@ -1122,23 +1123,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr ""
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ""
@@ -1158,7 +1159,7 @@ msgstr ""
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1176,7 +1177,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1217,14 +1218,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr ""
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr ""
@@ -1276,32 +1277,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr ""
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr ""
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr ""
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr ""
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr ""
@@ -1315,11 +1316,11 @@ msgstr ""
msgid "Questions"
msgstr ""
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr ""
@@ -1340,10 +1341,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr ""
@@ -1436,7 +1437,7 @@ msgstr ""
msgid "Current settings"
msgstr ""
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr ""
@@ -1512,9 +1513,9 @@ msgstr ""
msgid "Explain output"
msgstr ""
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr ""
@@ -1605,7 +1606,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr ""
@@ -1725,15 +1726,15 @@ msgstr ""
msgid "Show indexes"
msgstr ""
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr ""
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr ""
@@ -1800,7 +1801,7 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
@@ -1809,17 +1810,18 @@ msgstr ""
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -1844,158 +1846,150 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr ""
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr ""
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr ""
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr ""
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr ""
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr ""
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr ""
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr ""
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr ""
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr ""
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2003,266 +1997,266 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ""
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr ""
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr ""
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr ""
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr ""
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr ""
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr ""
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr ""
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr ""
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr ""
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr ""
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr ""
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr ""
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr ""
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr ""
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr ""
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr ""
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr ""
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr ""
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr ""
@@ -2312,16 +2306,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2446,15 +2440,15 @@ msgstr ""
msgid "Databases"
msgstr ""
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr ""
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2466,20 +2460,20 @@ msgid "Structure"
msgstr ""
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr ""
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr ""
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr ""
@@ -2537,12 +2531,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2559,8 +2553,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr ""
@@ -2673,35 +2668,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr ""
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr ""
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2742,14 +2737,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -2999,8 +2994,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3098,7 +3093,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3149,42 +3144,42 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr ""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr ""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr ""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3219,8 +3214,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr ""
@@ -3258,7 +3253,7 @@ msgid "Create PHP Code"
msgstr ""
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr ""
@@ -3279,95 +3274,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr ""
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr ""
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr ""
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr ""
@@ -3539,9 +3534,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3685,7 +3680,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3743,7 +3738,7 @@ msgstr ""
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5475,7 +5470,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5613,25 +5608,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5789,8 +5784,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -5966,48 +5961,51 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr ""
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr ""
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6025,89 +6023,89 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr ""
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr ""
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6151,7 +6149,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6402,8 +6400,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6524,12 +6522,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -6727,8 +6725,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -6890,6 +6888,96 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -6900,32 +6988,32 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr ""
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr ""
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -6933,11 +7021,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7262,18 +7345,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -7591,11 +7666,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -7915,7 +7985,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -7923,11 +7993,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -7951,10 +8021,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8125,10 +8191,6 @@ msgstr ""
msgid "Table Search"
msgstr ""
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr ""
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8300,7 +8362,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8493,10 +8555,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -8687,17 +8745,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9122,8 +9180,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9238,7 +9296,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9371,146 +9429,146 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr ""
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr ""
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr ""
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9518,115 +9576,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr ""
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9634,78 +9692,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -9713,7 +9771,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -9721,42 +9779,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
msgid ""
"The number of pages busy because they have been allocated for administrative "
"overhead such as row locks or the adaptive hash index. This value can also "
@@ -9764,33 +9822,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
msgid ""
"Normally, writes to the InnoDB buffer pool happen in the background. "
"However, if it's necessary to read or create a page and no clean pages are "
@@ -9799,242 +9857,242 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr ""
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10042,99 +10100,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10142,18 +10200,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10161,61 +10219,61 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr ""
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr ""
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr ""
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10224,7 +10282,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10232,18 +10290,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10251,11 +10309,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10263,86 +10321,86 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr ""
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr ""
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr ""
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr ""
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr ""
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr ""
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10474,7 +10532,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -10536,39 +10594,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -10754,51 +10812,42 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr ""
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -10811,56 +10860,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr ""
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ""
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11443,30 +11442,34 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr ""
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -11804,8 +11807,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -11923,8 +11926,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
diff --git a/po/tr.po b/po/tr.po
index be6127f171..c57e170273 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
-"PO-Revision-Date: 2012-05-17 11:19+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
+"PO-Revision-Date: 2012-05-25 16:54+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish
\n"
"Language: tr\n"
@@ -14,13 +14,13 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Tümünü göster"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Tümünü göster"
msgid "Page number:"
msgstr "Sayfa numarası:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ 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:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Ara"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Ara"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Git"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Anahtar adı"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Açıklama"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Bu değeri kullan"
@@ -122,12 +122,12 @@ msgstr "Tablo yorumları"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Sütun"
@@ -136,6 +136,7 @@ msgstr "Sütun"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Sütun"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Türü"
@@ -153,12 +154,12 @@ msgstr "Türü"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Boş"
@@ -197,13 +198,13 @@ msgstr "Yorumlar"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Hayır"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -357,7 +358,7 @@ msgstr "Tablo"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Satır"
@@ -407,28 +408,28 @@ msgid "Switch to %svisual builder%s"
msgstr "%sGörsel yaratıcı'ya%s geç"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sırala"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Küçükten Büyüğe"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Büyükten Küçüğe"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Göster"
@@ -449,8 +450,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Veya"
@@ -518,8 +519,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%2$s tablosu içerisinde %1$s benzeşme"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Gözat"
@@ -528,14 +529,14 @@ msgstr "Gözat"
msgid "Delete the matches for the %s table?"
msgstr "%s tablosu için benzeşenler silinsin mi?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Sil"
@@ -602,11 +603,11 @@ msgstr "İzleme aktif."
msgid "Tracking is not active."
msgstr "İzleme aktif değil."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@@ -617,7 +618,7 @@ msgstr "Görünüm"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Kopya Etme"
@@ -631,20 +632,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Seçilileri:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Tümünü Seç"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -656,27 +657,27 @@ msgstr "Ek yükü olan tabloları kontrol et"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Dışa Aktar"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Baskı görünümü"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Boşalt"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -702,11 +703,11 @@ msgstr "Tabloyu çözümle"
msgid "Add prefix to table"
msgstr "Tabloya ön ek ekle"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Tablo ön ekini değiştir"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Tabloyu ön eki ile kopyala"
@@ -725,8 +726,8 @@ msgstr "İzlenen tablolar"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Veritabanı"
@@ -744,7 +745,7 @@ msgstr "Güncellendi"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Durum"
@@ -844,45 +845,45 @@ msgstr "Taban Katman olarak OpenStreetMaps kullan"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Geometri"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Nokta"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Nokta %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Nokta ekle"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Satır dizgisi"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Dış Halka"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "İç Halka"
@@ -890,15 +891,15 @@ msgstr "İç Halka"
msgid "Add a linestring"
msgstr "Satır dizgisi ekle"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "İç halka ekle"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Poligon"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Poligon ekle"
@@ -921,8 +922,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgeden%s yararlanın."
@@ -971,7 +972,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "İşaretleme %s oluşturuldu"
@@ -999,7 +1000,7 @@ msgstr ""
"biteremeyeceği anlamına gelir."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1015,7 +1016,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin, çerçeve-kabiliyeti olan tarayıcı ile daha kullanışlıdır."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
@@ -1024,7 +1025,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
msgid "Do you really want to execute \"%s\"?"
msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
@@ -1110,21 +1111,21 @@ msgstr "Kapat"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Düzenle"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Canlı trafik çizelgesi"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Canlı bağ./işlem çizelgesi"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Canlı sorgu çizelgesi"
@@ -1135,23 +1136,23 @@ msgstr "Sabit veri"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Toplam"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Diğer"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1171,7 +1172,7 @@ msgstr "Sunucu trafiği (KiB olarak)"
msgid "Connections since last refresh"
msgstr "Son yenilemeden bu yana bağlantılar"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "İşlemler"
@@ -1189,7 +1190,7 @@ msgstr "Son yenilemeden bu yana sorular"
msgid "Questions (executed statements by the server)"
msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Sorgu istatistikleri"
@@ -1234,14 +1235,14 @@ msgid "System swap"
msgstr "Sistem takası"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MiB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1293,32 +1294,32 @@ msgstr "Gönderilmiş bayt"
msgid "Bytes received"
msgstr "Alınmış bayt"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Bağlantılar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GiB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TiB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EiB"
@@ -1332,11 +1333,11 @@ msgstr "%d tablo"
msgid "Questions"
msgstr "Sorular"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Ayarlar"
@@ -1357,10 +1358,10 @@ msgid "Please add at least one variable to the series"
msgstr "Lütfen diziye en az bir değişken ekleyin"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Yok"
@@ -1404,8 +1405,8 @@ msgid ""
"depending on your system."
msgstr ""
"slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun "
-"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak "
-"0-2 saniyeye ayarlanması tavsiye edilir."
+"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-"
+"2 saniyeye ayarlanması tavsiye edilir."
#: js/messages.php:150
#, php-format
@@ -1460,7 +1461,7 @@ msgstr "Ayarları değiştir"
msgid "Current settings"
msgstr "Şu anki ayarlar"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Çizelge Başlığı"
@@ -1542,9 +1543,9 @@ msgstr "Çözümleniyor..."
msgid "Explain output"
msgstr "Çıktıyı açıkla"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Süre"
@@ -1642,7 +1643,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "İçe Aktar"
@@ -1762,15 +1763,15 @@ msgstr "İndeksleri gizle"
msgid "Show indexes"
msgstr "İndeksleri göster"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr "Dış anahtar kontrolü:"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr "(Etkinleştirildi)"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
msgid "(Disabled)"
msgstr "(Etkisizleştirildi)"
@@ -1839,7 +1840,7 @@ msgstr "Sorgu kutusunu göster"
msgid "No rows selected"
msgstr "Satır seçilmedi"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Değiştir"
@@ -1848,17 +1849,18 @@ msgstr "Değiştir"
msgid "Query execution time"
msgstr "Sorgu yürütme süresi"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d geçerli bir satır sayısı değil."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Kaydet"
@@ -1883,80 +1885,72 @@ msgid "Hovering over a point will show its label."
msgstr "Noktanın üzerinde durmak etiketini gösterecektir."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "Çizime yakınlaşmak ya da uzaklaşmak için fare tekerini kullanın."
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr "Yakınlaştırmak için fare ile çizimin bir bölümünü seçin."
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Çizimde gezinmek için tıklayın ve fareyi sürükleyin."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
"Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla bağlantısına "
"tıklayın."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
"Veri satırını mümkün olduğunca düzenlemek ve görmek için veri noktasına "
"tıklayın."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Dizgiler çizim yapmak için tamsayıya dönüştürülür"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "İki sütun seçin"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "İki farklı sütun seçin"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Sorgu sonuçları"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "Veri imleci içeriği"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Yoksay"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Kopyala"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Sütunları ekle"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Kaynak gösterilen anahtarı seç"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Dış Anahtarı seç"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Göstermek için sütun seçin"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -1964,15 +1958,15 @@ msgstr ""
"Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, "
"kaybolacaklardır. Devam etmek istiyor musunuz?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Sütun için bir seçenek ekle "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -1980,28 +1974,28 @@ msgstr ""
"Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu "
"sayfadan ayrılmak istediğinize emin misiniz?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Yen.düzenleme için sürükle"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Sıralamak için tıklayın"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "İşaretlemek/işareti kaldırmak için tıklayın"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr "Sütun adını kopyalamak için çift tıklayın"
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Sütunların görünürlüğünü değiştirmek için aşağı açılır okuna tıklayın"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2010,315 +2004,315 @@ msgstr ""
"özellikler, Düzenle, Kopyala ve Sil bağlantıları kaydedildikten sonra "
"çalışmayabilir."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Aynı zamanda çoğu sütunu içeriğine doğrudan tıklayarak "
"düzenleyebilirsiniz."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Bağlantıya git"
-#: js/messages.php:362
+#: js/messages.php:358
msgid "Copy column name"
msgstr "Sütun adını kopyala"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr "Sütun adını panonuza kopyalamak için sağ tuşa tıklayın."
-#: js/messages.php:364
+#: js/messages.php:360
msgid "Show data row(s)"
msgstr "Veri satır(larını)nı göster"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Parola üret"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Üret"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Parola Değiştir"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Daha Fazla"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
-"%s, %s tarihinde yayınlandı."
+"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
+"s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", son sağlam sürüm:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "güncel"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Bitti"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Önceki"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Sonraki"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Bugün"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Ocak"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Şubat"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Mart"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Nisan"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Mayıs"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Haziran"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Temmuz"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Ağustos"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Eylül"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Ekim"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Kasım"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Aralık"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Oca"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Şub"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Eyl"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Eki"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Ara"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Pazar"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Pazartesi"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Salı"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Çarşamba"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Perşembe"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "Cuma"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Cumartesi"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Sal"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Cum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Ctesi"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Pz"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Pt"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ça"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Cu"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Ct"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Hs"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "calendar-month-year"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
msgctxt "Year suffix"
msgid "none"
msgstr "yok"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Saat"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Dakika"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Saniye"
@@ -2370,16 +2364,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
"%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "saniye başına"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "dakika başına"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "saat başına"
@@ -2512,15 +2506,15 @@ msgstr ""
msgid "Databases"
msgstr "Veritabanları"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Sunucu"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2532,20 +2526,20 @@ msgid "Structure"
msgstr "Yapı"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Ekle"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "İşlemler"
@@ -2603,12 +2597,12 @@ msgstr "Kullanıcılar"
msgid "Synchronize"
msgstr "Eşitle"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binari günlüğü"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Değişkenler"
@@ -2625,8 +2619,9 @@ msgid "Engines"
msgstr "Motorlar"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Hata"
@@ -2740,35 +2735,35 @@ msgstr ""
"yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse "
"lütfen kontrol edin."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s teması için geçerli resim yolu bulunamadı!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Önizleme mevcut değil."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "Al"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Varsayılan tema %s bulunamadı!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "%s teması bulunamadı!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "%s teması için tema yolu bulunamadı!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Tema"
@@ -2822,20 +2817,20 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
"Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den "
"-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır"
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
-"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler "
-"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve "
+"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -"
+"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve "
"2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır"
#: libraries/Types.class.php:305
@@ -3132,8 +3127,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@@ -3243,7 +3238,7 @@ msgstr "paylaşılmış"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tablolar"
@@ -3294,11 +3289,11 @@ msgstr "olası kötüye kullanma"
msgid "numeric key detected"
msgstr "sayısal tuş algılandı"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Yapılandırma dosyasını okuma başarısız"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3306,12 +3301,12 @@ msgstr ""
"Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda "
"gösterilen her hatayı kontrol edin."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
@@ -3319,23 +3314,23 @@ msgstr ""
"[code]$cfg['PmaAbsoluteUri'][/code] talimatı yapılandırma dosyanız içinde "
"AYARLANMAK zorundadır!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Geçersiz sunucu indeksi: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden "
"geçirin."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Yapılandırma içinde geçersiz kimlik doğrulama yöntemi ayarı:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s veya sonrasına yükseltmelisiniz."
@@ -3370,8 +3365,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL sorgusu"
@@ -3409,7 +3404,7 @@ msgid "Create PHP Code"
msgstr "PHP Kodu oluştur"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Yenile"
@@ -3430,95 +3425,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Sıralı"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profil çıkart"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Paz"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y, %H:%M:%S"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Eksik parametreler:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Başlangıç"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Önceki"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Sonraki"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "Son"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" veritabanına git."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Değiştirmek için tıklayın"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Bilgisayarınıza gözat:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Web sunucusu gönderme dizininden %s seçin:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Göndermek için hiç dosya yok"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Çalıştır"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Yazdır"
@@ -3690,9 +3685,9 @@ msgstr "Varsayılan değeri geri yükle"
msgid "Allow users to customize this value"
msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Sıfırla"
@@ -3859,7 +3854,7 @@ msgid "Compress on the fly"
msgstr "Anında sıkıştır"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Yapılandırma dosyası"
@@ -3919,7 +3914,7 @@ msgstr "Tablo yapısı eylemlerini gizle"
msgid "Show binary contents as HEX by default"
msgstr "Binari içerikleri varsayılandan HEX olarak göster"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Binari içerikleri HEX olarak göster"
@@ -4647,7 +4642,6 @@ msgid "Minimum number of tables to display the table filter box"
msgstr "Tablo süzgeci kutusunu görüntülemek için en az tablo sayısıdır"
#: libraries/config/messages.inc.php:281
-#| msgid "Minimum number of tables to display the table filter box"
msgid "Minimum number of databases to display the database filter box"
msgstr ""
"Veritabanı süzgeci kutusunu görüntülemek için en az veritabanı sayısıdır"
@@ -5836,7 +5830,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr "Ayarlarda Geliştirici sekmesi etkin"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Son sürümü kontrol et"
@@ -5979,7 +5973,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin."
msgid "possible deep recursion attack"
msgstr "olası aşırı özyinelemeli saldırı"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
@@ -5987,19 +5981,19 @@ msgstr ""
"Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak "
"yapılandırılmadı)."
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "Sunucu yanıt vermiyor."
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin."
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Ayrıntılar..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6162,8 +6156,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@@ -6357,48 +6351,52 @@ msgstr "Biçim-Belli Seçenekler:"
msgid "Language"
msgstr "Dil"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "Düzenlenen veriyi kaydet"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "Sütun düzenini geri yükle"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "Başlangıç satırı"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "Satır sayısı"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "Kip"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "yatay"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "yatay (döndürülmüş başlıklar)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "dikey"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr "Her %s satırda bir başlıklar"
+#: libraries/display_tbl.lib.php:629
+#| msgid "Headers every %s rows"
+msgid "Headers every"
+msgstr "Her"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "satırda bir başlıklar"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Anahtara göre sırala"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6416,89 +6414,89 @@ msgstr "Anahtara göre sırala"
msgid "Options"
msgstr "Seçenekler"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "Kısmi metinler"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "Tam metinler"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Bağlantılı anahtar"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "Bağlantılı görüntü sütunu"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Binari içerikleri göster"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB içerikleri göster"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "Tarayıcı dönüşümünü gizle"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr "Çok İyi Bilinen Metin"
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr "Çok İyi Bilinen Binari"
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Satır silindi"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Sonlandır"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "sorgu içerisinde"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Gösterilen satırlar"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "toplam"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Sorgu %01.4f san. sürdü"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Sorgu sonuçları işlemleri"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Baskı görünümü (tüm metinler ile)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "Çizelge göster"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "GIS verisini görselleştir"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "Görünüm oluştur"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Bağlantı bulunamadı"
@@ -6546,7 +6544,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Arabellek Havuzu"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Durumu"
@@ -6840,8 +6838,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@@ -6964,12 +6962,12 @@ msgstr "MIME türlerini göster"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Anamakine"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Üretim Zamanı"
@@ -7190,8 +7188,8 @@ msgstr "GIS görselleştirmesi için bulunan veri yok."
msgid "GLOBALS overwrite attempt"
msgstr "GLOBALS üzerine yazma girişimi"
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)."
@@ -7366,6 +7364,98 @@ msgstr "SQL uyumluluk kipi:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "İşlev"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Gizle"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binari"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "Uzunluğu nedeniyle, bu sütun düzenlenebilir olmayabilir"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binari - düzenlemeyiniz"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web sunucusu gönderme dizini"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "Düzenle/Ekle"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "%s satırla eklemeye devam et"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ve sonra"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Yeni satır olarak ekle"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Yeni satır olarak ekle ve hataları yoksay"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Ekleme sorgusunu göster"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Önceki sayfaya geri dön"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Yeni başka bir satır ekle"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Bu sayfaya geri dön"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Sonraki satırı düzenle"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için "
+"CTRL+OK TUŞLARI'nı kullanın"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Değer"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL sorgusu gösteriliyor"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Eklenen satır id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7376,32 +7466,32 @@ msgstr "Yok"
msgid "Convert to Kana"
msgstr "Kana'ya dönüştür"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "Buradan"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "Buraya"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Gönder"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "Tablo ön eki ekle"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "Ön ek ekle"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
msgid "Do you really want to execute the following query?"
msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Değişiklik yok"
@@ -7409,11 +7499,6 @@ msgstr "Değişiklik yok"
msgid "Charset"
msgstr "Karakter Grubu"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binari"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bulgarca"
@@ -7748,18 +7833,10 @@ msgid "Slave status"
msgstr "Slave durumu"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Değişken"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Değer"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Sunucu ID"
@@ -8086,11 +8163,6 @@ msgstr "Yordamı çalıştır"
msgid "Routine parameters"
msgstr "Yordam parametreleri"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "İşlev"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Üzgünüm, kaldırılmış tetikleyiciyi geri yükleme başarısız oldu."
@@ -8412,7 +8484,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Temizle"
@@ -8420,11 +8492,11 @@ msgstr "Temizle"
msgid "Columns"
msgstr "Sütun"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorgusunu işaretle"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
@@ -8448,10 +8520,6 @@ msgstr "Bu sorguyu burada tekrar göster"
msgid "View only"
msgstr "Sadece göster"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web sunucusu gönderme dizini"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8648,10 +8716,6 @@ msgstr "İşletici"
msgid "Table Search"
msgstr "Tablo Arama"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "Düzenle/Ekle"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8873,7 +8937,7 @@ msgstr "Protokol sürümü"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Kullanıcı"
@@ -8989,8 +9053,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı "
-"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya"
-"%s tıklayın."
+"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya%"
+"s tıklayın."
#: main.php:357
#, php-format
@@ -9015,7 +9079,6 @@ msgid "No databases"
msgstr "Veritabanı yok"
#: navigation.php:209
-#| msgid "Filter tables by name"
msgid "Filter databases by name"
msgstr "Veritabanlarını adına göre süz"
@@ -9096,10 +9159,6 @@ msgstr "Tümünü Gizle/Göster"
msgid "Hide/Show Tables with no relation"
msgstr "Bağlantılı olmayan Tabloları Gizle/Göster"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Gizle"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Tablo sayısı"
@@ -9252,8 +9311,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. "
-"%sKur programcığı%s kullanarak."
+"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %"
+"sKur programcığı%s kullanarak."
#: prefs_manage.php:308
msgid "Save to browser's storage"
@@ -9294,17 +9353,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:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Dosyalar"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Gösterilen Sorguları Kısalt"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Tüm Sorguları Göster"
@@ -9743,8 +9802,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@@ -9866,7 +9925,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Master durumunu göster"
@@ -10016,126 +10075,126 @@ 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:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s işlemi başarılı olarak sonlandırıldı."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Denetimci"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Sorgu önbelleği"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "İşlemler"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Geçici veri"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Gecikmiş eklemeler"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Anahtar önbelleği"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Birleştirmeler"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sıralama"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "İşlem koordinatörü"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Tüm tabloları temizle (kapat)"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Açık tabloları göster"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Slave anamakineleri göster"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Slave durumunu göster"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Sorgu önbelleğini temizle"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Çalışma Süresi Bilgisi"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "Tüm durum değişkenleri"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "İzleme"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "Danışman"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "Yenileme oranı: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "Süzgeçler"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "İçerdiği kelime:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "Sadece uyarı değerlerini göster"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "Kategoriye göre süz..."
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "Biçimlendirilmemiş değerleri göster"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "İlgili bağlantılar:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "Çözümleyiciyi çalıştır"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "Talimatlar"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
@@ -10143,7 +10202,7 @@ msgstr ""
"Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu "
"değişkenlerinde öneriler sağlayabilir."
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -10152,7 +10211,7 @@ msgstr ""
"Yine de not edin bu sistem basit hesaplamalar üzerine kurulu ve sisteminize "
"zorunlu olarak uygulanamayabilir başlıca kurallara göre öneriler sağlar."
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -10163,7 +10222,7 @@ msgstr ""
"alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki "
"edebilir."
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10174,31 +10233,31 @@ msgstr ""
"iyileştirilme olmadıysa, değişikliği geri almak olacaktır."
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "Başlangıçtan bu yana sorular: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "İfadeler"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "#"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "Başlangıçtan bu yana ağ trafiği: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Bu MySQL sunucusunun çalışma süresi: %1$s. Başlatıldığı zaman: %2$s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
@@ -10206,19 +10265,19 @@ msgstr ""
"Bu MySQL sunucusu kopya etme işlemi sırasında master ve "
"slave olarak çalışır."
-#: server_status.php:1075
+#: server_status.php:1078
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:1077
+#: server_status.php:1080
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:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10226,11 +10285,11 @@ msgstr ""
"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Kopya etme durumu"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10238,35 +10297,35 @@ msgstr ""
"Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL "
"sunucusu tarafından raporlanan istatistikler doğru olmayabilir."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Alınan"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Gönderilen"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "En fazla eşzamanlı bağlantı"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Başarısız deneme"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "İptal edilen"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Komut"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
@@ -10274,11 +10333,11 @@ msgstr ""
"Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş "
"bağlantılarının sayısıdır."
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır."
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -10288,16 +10347,16 @@ msgstr ""
"aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin "
"sayısıdır."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır."
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10309,11 +10368,11 @@ msgstr ""
"büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına "
"sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -10321,7 +10380,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:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -10329,7 +10388,7 @@ msgstr ""
"INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır "
"sayısı (muhtemelen kopya anahtar)."
-#: server_status.php:1326
+#: server_status.php:1329
msgid ""
"The number of INSERT DELAYED handler threads in use. Every different table "
"on which one uses INSERT DELAYED gets its own thread."
@@ -10337,23 +10396,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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "INSERT DELAYED satır yazımı sayısıdır."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Dahili COMMIT ifadesi sayısıdır."
-#: server_status.php:1330
+#: server_status.php:1333
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:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10363,7 +10422,7 @@ msgstr ""
"motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez "
"keşfedildiğini gösterir."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -10373,7 +10432,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -10382,7 +10441,7 @@ msgstr ""
"sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi "
"olduğu belirtisidir."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10392,7 +10451,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:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10400,7 +10459,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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10413,7 +10472,7 @@ msgstr ""
"fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan "
"birleştirmelere sahipsiniz."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10425,35 +10484,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:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "Dahili ROLLBACK ifadesi sayısıdır."
-#: server_status.php:1339
+#: server_status.php:1342
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:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
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:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "Şu anki dolu sayfa sayısıdır."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Boş sayfa sayısıdır."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10463,7 +10522,7 @@ msgstr ""
"okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya "
"taşınamayan sayfalardır."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10475,11 +10534,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:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10487,7 +10546,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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -10495,11 +10554,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:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -10507,7 +10566,7 @@ msgstr ""
"InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak "
"zorunda olduğu mantıksal okuma sayısıdır."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -10521,55 +10580,55 @@ msgstr ""
"durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde "
"ayarlandıysa, bu değer küçük olmalıdır."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Şimdiye kadarki fsync() işlem sayısıdır."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Şu anki bekleyen fsync() işlem sayısıdır."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Şu anki bekleyen okuma sayısıdır."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Şu anki bekleyen yazma sayısıdır."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Toplam veri okuma sayısıdır."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Toplam veri yazma sayısıdır."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır."
-#: server_status.php:1362
+#: server_status.php:1365
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:1363
+#: server_status.php:1366
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:1364
+#: server_status.php:1367
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."
@@ -10577,35 +10636,35 @@ msgstr ""
"Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam "
"etmeden önce temizlenmesi için beklemek zorundayız."
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Günlük yazma isteği sayısıdır."
-#: server_status.php:1366
+#: server_status.php:1369
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:1367
+#: server_status.php:1370
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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "Bekleyen günlük dosyası fsyncs sayısıdır."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Bekleyen günlük dosyası yazma sayısıdır."
-#: server_status.php:1370
+#: server_status.php:1373
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:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Oluşturulmuş sayfa sayısıdır."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10613,52 +10672,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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Okunan sayfa sayısıdır."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Yazılmış sayfa sayısıdır."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Şu anki beklenen satır kilidi sayısıdır."
-#: server_status.php:1376
+#: server_status.php:1379
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:1377
+#: server_status.php:1380
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:1378
+#: server_status.php:1381
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:1379
+#: server_status.php:1382
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:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB tablolarından silinen satır sayısıdır."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB tablolarına eklenen satır sayısıdır."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB tablolarından okunan satır sayısıdır."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB tablolarında güncellenen satır sayısıdır."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -10666,7 +10725,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:1385
+#: server_status.php:1388
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."
@@ -10675,7 +10734,7 @@ msgstr ""
"önbelleğinin ne kadarının kullanımda olmasını belirlemek için "
"kullanabilirsiniz."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -10684,15 +10743,15 @@ 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:1387
+#: server_status.php:1390
msgid "Percentage of used key cache (calculated value)"
msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -10702,7 +10761,7 @@ 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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
@@ -10710,21 +10769,21 @@ msgstr ""
"Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan "
"anahtar önbelleğidir (hesaplanmış değer)"
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
"Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)"
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10735,7 +10794,7 @@ msgstr ""
"karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu "
"olmadığı anlamına gelir."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
@@ -10743,11 +10802,11 @@ msgstr ""
"Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla "
"bağlantı sayısı."
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -10755,19 +10814,19 @@ msgstr ""
"Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek "
"değeriniz muhtemelen çok küçüktür."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Açık olan dosya sayısıdır."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Açık olan tablo sayısıdır."
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10777,19 +10836,19 @@ msgstr ""
"QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret "
"edebilir."
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Sorgu önbelleği için boş bellek miktarıdır."
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Önbelleğe ulaşma sayısıdır."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Önbelleğe eklenen sorgu sayısıdır."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10801,7 +10860,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:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10809,19 +10868,19 @@ msgstr ""
"Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type "
"ayarından dolayı önbelleklenmedi)."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Önbellekte kayıtlı sorgu sayısıdır."
-#: server_status.php:1408
+#: server_status.php:1411
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:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10829,11 +10888,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:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -10842,7 +10901,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:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10850,15 +10909,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:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -10866,11 +10925,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:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -10878,12 +10937,12 @@ msgstr ""
"Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem "
"sayısıdır."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10893,23 +10952,23 @@ msgstr ""
"değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı "
"düşünmelisiniz."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Aralıklarla yapılmış sıralama sayısıdır."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Sıralanmış satır sayısıdır."
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10921,7 +10980,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:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10931,11 +10990,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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Şu anki açık bağlantı sayısıdır."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10947,47 +11006,47 @@ msgstr ""
"(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer "
"bir performans artışı vermez.)"
-#: server_status.php:1429
+#: server_status.php:1432
msgid "Thread cache hit rate (calculated value)"
msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Hala faaliyette olan işlemler sayısıdır."
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "İzlemeyi başlat"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "Yönergeler/Ayarlama"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "Çizelge ekle"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "Çizelgeleri düzenle/yeniden düzelt"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "Oranı yenile"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "Çizelge sütunları"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "Çizelge ayarlaması"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
@@ -10995,15 +11054,15 @@ msgstr ""
"Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık "
"ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz."
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "Varsayılana sıfırla"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "İzleme Yönergeleri"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11017,7 +11076,7 @@ msgstr ""
"etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve "
"sunucu yükünü %15'e kadar arttırır"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11029,11 +11088,11 @@ msgstr ""
"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala "
"sunucu çizelgeleme özelliklerini kullanabilirsiniz."
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "İzleyici kullanımı:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -11044,7 +11103,7 @@ msgstr ""
"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini "
"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz."
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11057,11 +11116,11 @@ msgstr ""
"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT "
"ifadesine tıklayabilirsiniz."
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "Lütfen unutmayın:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11074,85 +11133,85 @@ msgstr ""
"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla "
"izlemeyi gerektirmez."
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "Hazır çizelge"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "Durum değişkeni(leri)"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "Dizi seç:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "Genellikle izlenen"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "veya değişken adını yazın:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "Ayırtedici değer olarak görüntüle"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "Böleni uygula"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "Veri değerlerine birimi ekle"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "Bu diziyi ekle"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "Diziyi temizle"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "Çizelgedeki Dizi:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "Günlük istatistikleri"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "Seçili zaman aralığı:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin."
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "Sonuçlar sorgu metnine göre gruplandırılır."
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "Sorgu çözümleyici"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d saniye"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -11285,7 +11344,7 @@ msgstr "Oturum değeri"
msgid "Global value"
msgstr "Genel değer"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "İndir"
@@ -11361,39 +11420,39 @@ msgstr "Yapılandırılmış sunucular yok"
msgid "New server"
msgstr "Yeni sunucu"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Varsayılan dil"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "kullanıcı seçsin"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- yok -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Varsayılan sunucu"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Satır sonu"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Görüntüle"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Yükle"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin ana sayfası"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Bağış"
@@ -11559,9 +11618,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
-"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
-"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
+"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
+"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
+"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:312
@@ -11576,8 +11635,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
-"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
-"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
+"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
+"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: setup/lib/index.lib.php:314
@@ -11620,51 +11679,42 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
msgid "Wrong data"
msgstr "Yanlış veri"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Dış değerlere gözat"
-#: sql.php:255
+#: sql.php:253
#, 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:406
+#: sql.php:404
msgid "Do you really want to execute following query?"
msgstr "Aşağıdaki sorguya çalıştırmak istediğinize emin misiniz?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Eklenen satır id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP kodu olarak gösteriliyor"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL sorgusu gösteriliyor"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "Oanylı SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL sonucu"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Üreten:"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Etiket"
@@ -11677,58 +11727,6 @@ msgstr "Tablo %1$s başarılı olarak değiştirldi"
msgid "The columns have been moved successfully."
msgstr "Sütunlar başarılı olarak taşındı."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "Uzunluğu nedeniyle, bu sütun düzenlenebilir olmayabilir"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binari - düzenlemeyiniz"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Yeni satır olarak ekle"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Yeni satır olarak ekle ve hataları yoksay"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Ekleme sorgusunu göster"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ve sonra"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Önceki sayfaya geri dön"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Yeni başka bir satır ekle"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Bu sayfaya geri dön"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Sonraki satırı düzenle"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için "
-"CTRL+OK TUŞLARI'nı kullanın"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "%s satırla eklemeye devam et"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -12319,30 +12317,35 @@ msgstr "Bu veri işleme ifadelerini izle:"
msgid "Create version"
msgstr "Sürüm oluştur"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "İki farklı sütun için \"örnekle sorgulama\" (joker: \"%\") yap"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "İlave arama kriteri"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "Bu sütunu her noktayı etiketlemek için kullan"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "Çizim için en fazla satır"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "Noktalara gözat/düzenle"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "Nasıl kullanılır"
+#: tbl_zoom_select.php:432
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Odaklamayı sıfırla"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Daha fazla tema al!"
@@ -12720,8 +12723,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
"Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı "
"%%%s. Bu %%80'in üzerinde olmalıdır"
@@ -12872,8 +12875,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
"Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan "
"düşük olmalıdır."
@@ -13627,6 +13630,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 0'a ayarlı"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "Çizime yakınlaşmak ya da uzaklaşmak için fare tekerini kullanın."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Çizimde gezinmek için tıklayın ve fareyi sürükleyin."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Dizgiler çizim yapmak için tamsayıya dönüştürülür"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13774,12 +13786,12 @@ msgstr "concurrent_insert 0'a ayarlı"
#~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur."
#~ msgid ""
-#~ "A small (single-precision) floating-point number. Allowable values are "
-#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to "
+#~ "A small (single-precision) floating-point number. Allowable values are -"
+#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to "
#~ "3.402823466E+38."
#~ msgstr ""
-#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler "
-#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den "
+#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -"
+#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den "
#~ "3.402823466E+38'e."
#~ msgid ""
@@ -14201,9 +14213,6 @@ msgstr "concurrent_insert 0'a ayarlı"
#~ msgid "No trigger with name %s found"
#~ msgstr "%s adıyla bulunan tetikleyici yok"
-#~ msgid "rows"
-#~ msgstr "Gözat"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "satır, başlayacağı satır numarası"
diff --git a/po/tt.po b/po/tt.po
index f54aea670c..5f94c91638 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:17+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: tatarish \n"
-"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Barısın kürsät"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Barısın kürsät"
msgid "Page number:"
msgstr "Bitneñ sanı:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp "
"tora."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Ezläw"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Ezläw"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Äydä"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Tezeş adı"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Açıqlama"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Bu bäyä belän"
@@ -120,12 +120,12 @@ msgstr "Tüşämä açıqlaması"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -136,6 +136,7 @@ msgstr "Alan iseme"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Alan iseme"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Töre"
@@ -153,12 +154,12 @@ msgstr "Töre"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Buş"
@@ -197,13 +198,13 @@ msgstr "Açıqlama"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Yuq"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -367,7 +368,7 @@ msgstr "Tüşämä"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Kerem"
@@ -419,28 +420,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Kübäytelgän tüşämägä küçäse"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Tezü"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Artıp"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Kimep"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Kürsät"
@@ -461,8 +462,8 @@ msgid "Del"
msgstr "Sal"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Yä"
@@ -535,8 +536,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%s kileşü bar, %s atlı tüşämädä"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Küzätü"
@@ -546,14 +547,14 @@ msgstr "Küzätü"
msgid "Delete the matches for the %s table?"
msgstr "Tüşämä eçtälegen çığaru"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Sal"
@@ -629,11 +630,11 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -643,7 +644,7 @@ msgstr "Qaraş"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
#, fuzzy
msgid "Replication"
msgstr "Bäyläneşlär"
@@ -658,20 +659,20 @@ 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:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Saylanğannı:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Saylap Beter"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -683,27 +684,27 @@ msgstr "Check overheaded"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Export"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Bastıru küreneşe"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Buşat"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -730,13 +731,13 @@ msgstr "Tüşämä centekläw"
msgid "Add prefix to table"
msgstr "Biremleklär yuq"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, 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:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -758,8 +759,8 @@ msgstr "Tüşämä tikşerü"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Biremlek"
@@ -779,7 +780,7 @@ msgstr ""
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Torış"
@@ -889,49 +890,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a point"
msgstr "%s alan östäw"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Yul ara bilgese"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -941,17 +942,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Yaña qullanuçı östäw"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Yaña qullanuçı östäw"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add a polygon"
@@ -975,8 +976,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
#: import.php:216 import.php:443
@@ -1016,7 +1017,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "%s digän bitbilge yaratıldı"
@@ -1039,7 +1040,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1054,7 +1055,7 @@ msgstr "Kire"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
@@ -1064,7 +1065,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
msgid "Do you really want to execute \"%s\"?"
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr ""
@@ -1169,23 +1170,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Tözätü"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Server Saylaw"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
msgid "Live query chart"
msgstr "SQL-soraw"
@@ -1197,23 +1198,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Tulayım"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1235,7 +1236,7 @@ msgstr "Server Saylaw"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Proseslar"
@@ -1255,7 +1256,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
msgid "Query statistics"
msgstr "Kerem Nöfüse"
@@ -1305,14 +1306,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1374,32 +1375,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Alındı"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Totaşular"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1415,11 +1416,11 @@ msgstr "%s tüşämä"
msgid "Questions"
msgstr "Farsíça"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Taşım"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1444,10 +1445,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Buş"
@@ -1547,7 +1548,7 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär"
msgid "Current settings"
msgstr "Bäyläneşlär buyınça töp mömkinleklär"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1633,9 +1634,9 @@ msgstr ""
msgid "Explain output"
msgstr "SQL Centekläw"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Waqıt"
@@ -1745,7 +1746,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Yökläw"
@@ -1892,19 +1893,19 @@ msgstr "Tezeşlär"
msgid "Show indexes"
msgstr "Sırlı kürsät"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Yat tezeş tikşerüen sünderep"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Açıq"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1984,7 +1985,7 @@ msgstr "SQL-soraw"
msgid "No rows selected"
msgstr "Kertemnär sayladı"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Üzgärt"
@@ -1993,17 +1994,18 @@ msgstr "Üzgärt"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d digäne yazma sanı öçen kileşmi."
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Saqla"
@@ -2032,179 +2034,171 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Add/Delete Field Columns"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Soraw qaytarmasın eşkärtü"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Data pointer olılığı"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Qarama"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add columns"
msgstr "%s alan östäw"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Kürsätäse Alan saylaw"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr ""
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
msgid "Go to link"
msgstr "Biremleklär yuq"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Alan iseme"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Yazma sanı:"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Sersüz Ürçetü"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Ürçet"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Sersüz üzgärtü"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dşm"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2212,30 +2206,30 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
msgid ", latest stable version:"
msgstr "Server söreme"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
msgid "up to date"
msgstr "Biremleklär yuq"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
msgid "Done"
msgstr "Eçtälek"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Uzğan"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2243,96 +2237,96 @@ msgid "Next"
msgstr "Kiläse"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Tulayım"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Äpr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "May"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Yün"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Yül"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ökt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2340,78 +2334,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ykş"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dşm"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sşm"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cmğ"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2419,113 +2413,113 @@ msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Şmb"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ykş"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dşm"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sşm"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çrş"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pnc"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cmğ"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şmb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr ""
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Buş"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "totıla"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2578,16 +2572,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "sekund sayın"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minut sayın"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "säğät sayın"
@@ -2714,15 +2708,15 @@ msgstr ""
msgid "Databases"
msgstr "Biremleklär"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2734,20 +2728,20 @@ msgid "Structure"
msgstr "Tözeleş"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Östäw"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Eşkärtü"
@@ -2808,12 +2802,12 @@ msgstr "Qullanuçı"
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Binar köndälek"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Üzgärmälär"
@@ -2830,8 +2824,9 @@ msgid "Engines"
msgstr "Engine"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xata"
@@ -2952,35 +2947,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr ""
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "bonı sayla"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "%s digän töp tışlaw tabılmadı!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "%s digän tışlaw tabılmadı!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
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:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3021,14 +3016,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3287,8 +3282,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3390,7 +3385,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Tüşämä"
@@ -3443,46 +3438,46 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -3517,8 +3512,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-soraw"
@@ -3556,7 +3551,7 @@ msgid "Create PHP Code"
msgstr "PHP-Kod yasa"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Yañart"
@@ -3579,41 +3574,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Engine"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr ""
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Ykş"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y.%m.%d, %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Başlawğa"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3621,8 +3616,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Uzğan"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3630,53 +3625,53 @@ msgctxt "Next page"
msgid "Next"
msgstr "Kiläse"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Azaq"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr ""%s" biremlegenä küç."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr ""
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, 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:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
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:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Bastır"
@@ -3860,9 +3855,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Awdar"
@@ -4011,7 +4006,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -4075,7 +4070,7 @@ msgstr "Tüşämä tözeleşenä küzätü"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5937,7 +5932,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -6075,7 +6070,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6083,21 +6078,21 @@ msgid ""
"configured)."
msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Bu server endäşmi"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6283,8 +6278,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6485,57 +6480,62 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
msgid "Save edited data"
msgstr "Biremnär törgäge"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "Add/Delete Field Columns"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Şmb"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Alannar sanı"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Dşm"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "yatqırıp"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "yatqırıp (başlıqlar almaşıp)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "bastırıp"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Tamğalanğan soraw cibärü"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Küzätü"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Qullanası tezeş"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6554,101 +6554,101 @@ msgstr "Qullanası tezeş"
msgid "Options"
msgstr "Eşkärtü"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Partial Texts"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Tulı Mätennär"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
#, fuzzy
msgid "Relational key"
msgstr "Bäyläneşlär sxeme"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Bäyläneşlär sxeme"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Browser transformation"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Bu yazma salınğan buldı"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Üter"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "sorawda"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Yazma sanı:"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "tulayım"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Soraw eşkärtü %01.4f sek aldı"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Soraw qaytarmasın eşkärtü"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Bastıru küreneşe (bar mätennär belän)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF schema kürsätü"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
msgid "Create view"
msgstr "Server söreme"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Bäyläneş tabılmadı"
@@ -6694,7 +6694,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer Pulı"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB Torışı"
@@ -6960,8 +6960,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7112,12 +7112,12 @@ msgstr "Barlıq MIME-törlär"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Host"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Ürçäw Zamanı"
@@ -7332,8 +7332,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı."
@@ -7502,6 +7502,103 @@ msgstr "SQL, kileşterü ısulı"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksí"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Binar"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Because of its length, this field might not be editable"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Binar - üzgärtmäslek"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "web-server'neñ yökläw törgäge"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Östäw"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr ", şunnan soñ"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Yaña yazma kert tä"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Aldağı bitkä qaytu"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Tağın ber yazma östäw"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Bu bitkä kire qaytası"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Kiläse yazma üzgärtü"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü "
+"öçen, CTRL+uq töymäläre bar"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Bäyä"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+#, fuzzy
+msgid "Showing SQL query"
+msgstr "Tulı Sorawlar Kürsät"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7514,36 +7611,36 @@ msgstr "Buş"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Cmğ"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Künder"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Üzgäreşsez"
@@ -7551,11 +7648,6 @@ msgstr "Üzgäreşsez"
msgid "Charset"
msgstr "Bilgelämä"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Binar"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Balgarça"
@@ -7885,18 +7977,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Üzgärmä"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Bäyä"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID'e"
@@ -8244,11 +8328,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksí"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8615,7 +8694,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "%s biremlegendä eşlätäse SQL-soraw"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
#, fuzzy
msgid "Clear"
msgstr "Täqwim"
@@ -8626,11 +8705,11 @@ msgstr "Täqwim"
msgid "Columns"
msgstr "Alan iseme"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Bu SQL-sorawğa tamğa quy"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
@@ -8654,10 +8733,6 @@ msgstr "Bu sorawnı qabat kürsätäse"
msgid "View only"
msgstr "Kürep kenä"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "web-server'neñ yökläw törgäge"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8715,8 +8790,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
-"%squllanmada%s uqıp bula."
+"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
+"squllanmada%s uqıp bula."
#: libraries/tbl_common.inc.php:58
#, php-format
@@ -8857,12 +8932,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Ezläw"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Östäw"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9110,7 +9179,7 @@ msgstr "Protokol söreme"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Qullanuçı"
@@ -9334,10 +9403,6 @@ msgstr "Barısın kürsät"
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
#, fuzzy
msgid "Number of tables"
@@ -9560,18 +9625,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:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
#, fuzzy
msgid "Files"
msgstr "Alan"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Sorawnı Qısqartıp Kürsätäse"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Tulı Sorawlar Kürsät"
@@ -10018,8 +10083,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
@@ -10142,7 +10207,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -10282,160 +10347,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "%s cebe uñışlı üterelgän buldı."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Eşkärtkeç"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Soraw alxätere"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Ceplär"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Çaqlı birem"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Kiçerelgän östäw"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Tezeş alxätere"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Bäylär"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Tezü"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Eş-ara idäräçese"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Tüşämälärne yabıp beteräse"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Soraw alxäteren awdar"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Eşläw Torışı"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Yañart"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Alan"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Sersüzen üzgärtäse tügel"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Açıq tüşämä tezmäse"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Bäyläneşlär"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Soraw töre"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "Funksí"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10443,118 +10508,118 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Cömlä"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
#, fuzzy
msgid "Replication status"
msgstr "Bäyläneşlär"
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Alındı"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Cibärelde"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Özderelde"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Ämer"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10562,78 +10627,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10641,7 +10706,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10649,43 +10714,43 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
#, fuzzy
msgid "The number of pages currently dirty."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Buş bitlär sanı."
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10693,33 +10758,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10728,92 +10793,92 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
-msgid "The current number of pending fsync() operations."
-msgstr ""
-
-#: server_status.php:1356
-#, fuzzy
-msgid "The current number of pending reads."
-msgstr "Uqılğan bit sanı bu."
-
-#: server_status.php:1357
-#, fuzzy
-msgid "The current number of pending writes."
-msgstr "Yazılğan bit sanı bu."
-
#: server_status.php:1358
-msgid "The amount of data read so far, in bytes."
+msgid "The current number of pending fsync() operations."
msgstr ""
#: server_status.php:1359
#, fuzzy
-msgid "The total number of data reads."
+msgid "The current number of pending reads."
msgstr "Uqılğan bit sanı bu."
#: server_status.php:1360
#, fuzzy
-msgid "The total number of data writes."
+msgid "The current number of pending writes."
msgstr "Yazılğan bit sanı bu."
#: server_status.php:1361
-msgid "The amount of data written so far, in bytes."
+msgid "The amount of data read so far, in bytes."
msgstr ""
#: server_status.php:1362
+#, fuzzy
+msgid "The total number of data reads."
+msgstr "Uqılğan bit sanı bu."
+
+#: server_status.php:1363
+#, fuzzy
+msgid "The total number of data writes."
+msgstr "Yazılğan bit sanı bu."
+
+#: server_status.php:1364
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
#, fuzzy
msgid "The number of log write requests."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:1366
+#: server_status.php:1369
#, 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:1367
+#: server_status.php:1370
#, 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:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Köndälek biremenä yazılğan bayt sanı bu."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Yaratılğan bit sanı bu."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10822,161 +10887,161 @@ msgstr ""
"values are counted in pages; the page size allows them to be easily "
"converted to bytes."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Uqılğan bit sanı bu."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Yazılğan bit sanı bu."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Yöklänğan birem tözeleşe"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
#, 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:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Açıq toruçı birem sanı."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Açıq toruçı tüşämä sanı."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "Alxätergä turı kilü sanı bu."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10984,99 +11049,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Tezelgän yazma sanı bu."
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11084,18 +11149,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Biredä açıq bulğan totaşu sanı."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11103,71 +11168,71 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Key cache"
msgid "Thread cache hit rate (calculated value)"
msgstr "Tezeş alxätere"
-#: server_status.php:1430
+#: server_status.php:1433
#, fuzzy
msgid "The number of threads that are not sleeping."
msgstr "Açıq toruçı birem sanı."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Şmb"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add %s field(s)"
msgid "Add chart"
msgstr "%s alan östäw"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Yañart"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "Add/Delete Field Columns"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11176,7 +11241,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11184,18 +11249,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11203,11 +11268,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11215,99 +11280,99 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Biremlekne bolay atap quy"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Tüşämä Saylaw"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Tüşämä adı yaraqsız"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
msgid "Add this series"
msgstr "Yaña qullanuçı östäw"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
msgid "Series in Chart:"
msgstr "SQL-soraw"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
msgid "Log statistics"
msgstr "Kerem Nöfüse"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Tüşämä Saylaw"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Soraw töre"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "sekund sayın"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -11443,7 +11508,7 @@ msgstr "Sessi bäyäse"
msgid "Global value"
msgstr "Töp bäyä"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11507,41 +11572,41 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
#, fuzzy
msgid "Load"
msgstr "Cirle"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
#, fuzzy
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin qullanması"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
#, fuzzy
msgid "Donate"
msgstr "Eçtälek"
@@ -11732,56 +11797,46 @@ msgstr ""
msgid "Wrong data"
msgstr "Biremleklär yuq"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-#, fuzzy
-msgid "Showing SQL query"
-msgstr "Tulı Sorawlar Kürsät"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL'nı Tikşer"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL qaytarışı"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Ürçätkeç:"
-#: sql.php:1058
+#: sql.php:1055
#, 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:1090
+#: sql.php:1087
msgid "Label"
msgstr "Yarlıq"
@@ -11796,60 +11851,6 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
msgid "The columns have been moved successfully."
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Because of its length, this field might not be editable"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Binar - üzgärtmäslek"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Yaña yazma kert tä"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr ", şunnan soñ"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Aldağı bitkä qaytu"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Tağın ber yazma östäw"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Bu bitkä kire qaytası"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Kiläse yazma üzgärtü"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü "
-"öçen, CTRL+uq töymäläre bar"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12489,34 +12490,40 @@ msgstr ""
msgid "Create version"
msgstr "Server söreme"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
msgid "Additional search criteria"
msgstr "SQL-soraw"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
msgid "How to use"
msgstr "PHP Söreme"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Awdar"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12884,8 +12891,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13017,8 +13024,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13839,9 +13846,6 @@ msgstr ""
#~ msgid "No trigger with name %s found"
#~ msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
-#~ msgid "rows"
-#~ msgstr "Küzätü"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "kerem; berençese #"
diff --git a/po/ug.po b/po/ug.po
index aeea9aba91..19df433f27 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,24 +6,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:16+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Uyghur \n"
-"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "ھەممىسىنى كۆرسىتىش"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -31,7 +31,7 @@ msgstr "ھەممىسىنى كۆرسىتىش"
msgid "Page number:"
msgstr "بەت نومۇرى:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -40,21 +40,22 @@ msgstr ""
"كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز "
"ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "ئىزدەش"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -70,28 +71,27 @@ msgstr "ئىزدەش"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "ئىجرا قىلىش"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "قىممەت ئىسمى"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "ئىزاھات"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "مۇشۇ قىممەتنى ئىشلىتىش"
@@ -122,12 +122,12 @@ msgstr "جەدۋەل ئىزاھى"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "سۆزلەم"
@@ -136,6 +136,7 @@ msgstr "سۆزلەم"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "سۆزلەم"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "تۈرى"
@@ -153,12 +154,12 @@ msgstr "تۈرى"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "بوش"
@@ -197,13 +198,13 @@ msgstr "ئىزاھلار"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "يوق"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -338,8 +339,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
#: db_operations.php:633
#, fuzzy
@@ -361,7 +362,7 @@ msgstr "جەدۋەل"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "سەپ سانى"
@@ -411,28 +412,28 @@ msgid "Switch to %svisual builder%s"
msgstr ""
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "تۈرلەش"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "ئارتىش"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "كېمىيىش"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "كۆرسىتىش"
@@ -453,8 +454,8 @@ msgid "Del"
msgstr "ئۆچۈرۈش"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "ياكى"
@@ -524,8 +525,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "كۆزەت"
@@ -535,14 +536,14 @@ msgstr "كۆزەت"
msgid "Delete the matches for the %s table?"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "ئۆچۈرۈش"
@@ -615,11 +616,11 @@ msgstr "ئاكتىپ ئىزلاش"
msgid "Tracking is not active."
msgstr "ئىزلاش ئاكتىپ ئەمەس"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -629,7 +630,7 @@ msgstr "قاراش"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "كۆچۈرۈش"
@@ -643,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "تاللانغىنى:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "ھەممىنى تاللاش"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -668,27 +669,27 @@ msgstr "مەزمۇن بارلارنى تاللاش"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "چىقىرىش"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "بېسىپ كۆرسىتىش"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "تازىلاش"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -714,13 +715,13 @@ msgstr "جەدۋەل تەھلىلى"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Repair table"
msgid "Replace table prefix"
msgstr "جەدۋەلنى ئوڭشاش"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr ""
@@ -739,8 +740,8 @@ msgstr "ئىزلانغان جەدۋەل"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "ساندان"
@@ -758,7 +759,7 @@ msgstr "يېڭلاش"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "ھالەت"
@@ -864,49 +865,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Routines"
msgid "Add a point"
msgstr "دائىملىق"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "قۇر ئالماشۇرۇش بەلگىسى"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -916,15 +917,15 @@ msgstr ""
msgid "Add a linestring"
msgstr "مەجبۇرى قوشۇش"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr ""
@@ -947,8 +948,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@@ -990,7 +991,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "قۇرۇلغان خەتكۈچ %s"
@@ -1013,7 +1014,7 @@ msgid ""
msgstr ""
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1028,7 +1029,7 @@ msgstr "قايتىش"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن."
@@ -1038,7 +1039,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل
msgid "Do you really want to execute \"%s\"?"
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
@@ -1141,23 +1142,23 @@ msgstr ""
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تەھىرلەش"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "مۇلازىمىتېر تاللاش"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "SQL query"
msgid "Live query chart"
@@ -1170,23 +1171,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "يىغىندىسى"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1208,7 +1209,7 @@ msgstr "مۇلازىمىتېر تاللاش"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1226,7 +1227,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr ""
@@ -1275,14 +1276,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KiB"
@@ -1340,32 +1341,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "بايت"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PiB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1383,11 +1384,11 @@ msgstr "%s جەدۋەل"
msgid "Questions"
msgstr "نەشىر"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1412,10 +1413,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "يوق"
@@ -1514,7 +1515,7 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
msgid "Current settings"
msgstr "ئاساسىي ئالاقە ۋاريانتلىرى"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1603,9 +1604,9 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..."
msgid "Explain output"
msgstr "SQL ئىزاھى"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "ۋاقىت"
@@ -1716,7 +1717,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "كىرگۈزۈش"
@@ -1862,15 +1863,15 @@ msgstr "تېزىسلار"
msgid "Show indexes"
msgstr "تېزىسلار"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
msgid "Foreign key check:"
msgstr ""
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
msgid "(Enabled)"
msgstr ""
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1950,7 +1951,7 @@ msgstr "SQL سورىقى"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "ئۆزگەرتتىش"
@@ -1959,17 +1960,18 @@ msgstr "ئۆزگەرتتىش"
msgid "Query execution time"
msgstr ""
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -1998,175 +2000,167 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "SQL query"
msgid "Query results"
msgstr "SQL سورىقى"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr ""
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Add columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "سېرتقى ئۇلىنىشنى تاللاش"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "تاشقى ئاچقۇق قىممىتى"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ"
# column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "سۆزلەمنى كۆرسەتمەسلىك"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "بىر چىكىپ تاللاڭ"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr ""
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Columns terminated by"
msgid "Copy column name"
msgstr "خەت ئايرىش بەلگىسى"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Sort"
msgid "Show data row(s)"
msgstr "تۈرلەش"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "پارول ھاسىللاش"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "ھاسىللاش"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "پارولنى ئۆزگەرتىش"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "تېخىمۇ كۆپ"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2174,13 +2168,13 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "ېيڭى نەشىر"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
@@ -2188,18 +2182,18 @@ msgid "up to date"
msgstr "%s جەدۋەل"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "تامام"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "ئالدىنقى ئاي"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2207,149 +2201,149 @@ msgid "Next"
msgstr "كىيىنكى ئاي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "بۈگۈن"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "قەھرىتان"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "ھۇت"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "نورۇز"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "ئۈمىد"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "باھار"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "6-ئاي"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "7-ئاي"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "8-ئاي"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "9-ئاي"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "10-ئاي"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "11-ئاي"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "كۆنەك"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "يەكشەنبە"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "دۈشەنبە"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "سەيشەنبە"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "چارشەنبە"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "پەيشەنبە"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "جۈمە"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "شەنبە"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2357,97 +2351,97 @@ msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "شەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "يەكشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "دۈشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "سەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "چارشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "پەيشەنبە"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "جۈمە"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "شەنبە"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "ھەپتە"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "يوق"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "سائەت"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "مىنۇت"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "سېكنۇت"
@@ -2498,16 +2492,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2634,15 +2628,15 @@ msgstr ""
msgid "Databases"
msgstr "ساندان"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "مۇلازىمىتېر"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2654,20 +2648,20 @@ msgid "Structure"
msgstr "تۈزۈلىشى"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "قىستۇرۇش"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "ئىشلەملەر"
@@ -2725,12 +2719,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2747,8 +2741,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "خاتالىق"
@@ -2865,35 +2860,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "ئالدىن كۆرگىنى بولمايدۇ."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "ئېلىش"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "تېما %s تېپىلمىدى!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "ماۋزۇ %s تېپىلمىدى."
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2934,14 +2929,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3199,8 +3194,8 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -3302,7 +3297,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr ""
@@ -3353,24 +3348,24 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not load default configuration from: %1$s"
msgid "Failed to read configuration file"
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3380,21 +3375,21 @@ msgid ""
"configuration file!"
msgstr "$cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
@@ -3429,8 +3424,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL سورىقى"
@@ -3468,7 +3463,7 @@ msgid "Create PHP Code"
msgstr "PHP كودى قۇرۇش"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "يېڭلاش"
@@ -3489,43 +3484,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ئىچكى بىرلىشىش"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "ئاساسىي مەزمۇن"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "دائىملىق"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "باشلا"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3533,8 +3528,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "ئالدىنقىسى"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3542,55 +3537,55 @@ msgctxt "Next page"
msgid "Next"
msgstr "كىيىنكى ئاي"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "ئاخىرقىسى"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "ساندان "%s" .غا ئۆتۈش"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "بىر چىكىپ تاللاڭ"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "يازدۇر"
@@ -3766,9 +3761,9 @@ msgstr ""
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr ""
@@ -3912,7 +3907,7 @@ msgid "Compress on the fly"
msgstr ""
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr ""
@@ -3972,7 +3967,7 @@ msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى"
msgid "Show binary contents as HEX by default"
msgstr ""
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr ""
@@ -5749,7 +5744,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5895,7 +5890,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5903,21 +5898,21 @@ msgid ""
"configured)."
msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "تەپسىلاتلار..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6098,8 +6093,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6301,54 +6296,57 @@ msgstr ""
msgid "Language"
msgstr "تىلى"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Restore column order"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of columns"
msgid "Number of rows"
msgstr "سۆزلەم سانى"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "تېخىمۇ كۆپ"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "كۆزەت"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6366,95 +6364,95 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial import"
msgid "Partial texts"
msgstr "بۆلۈپ كىرگۈزىش"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "ئۇمۇمىي"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "بېسىپ چىقىرش كۈرۈلمىسى"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "جەدۋەل ئىزاھى"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "نەشىرنى قۇىماق"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "ئۇلىنىشنى تاپالمىدى"
@@ -6498,7 +6496,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6749,8 +6747,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6895,12 +6893,12 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "ئاساسىي ماشىنا"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "قۇرۇلغان ۋاقتى"
@@ -7108,8 +7106,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7279,6 +7277,98 @@ msgstr "SQLئۆز ئىچىگە ئالغان شەكلى"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "قىستۇرۇش"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "كېيىن"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7289,36 +7379,36 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "جۈمە"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7326,11 +7416,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7655,18 +7740,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -8013,11 +8090,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "دائىملىق"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8376,7 +8448,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8384,11 +8456,11 @@ msgstr ""
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8412,10 +8484,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8591,12 +8659,6 @@ msgstr ""
msgid "Table Search"
msgstr "ئىزدەش"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "قىستۇرۇش"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8784,7 +8846,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -8884,8 +8946,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
-"%sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
+"sبۇ يەرنى كۆرۈڭ%s."
#: main.php:357
#, php-format
@@ -8992,10 +9054,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9206,17 +9264,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9648,8 +9706,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9766,7 +9824,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9903,152 +9961,152 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "يېڭلاش"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr ""
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr ""
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "مۇناسىۋىتى"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query"
msgid "Run analyzer"
msgstr "تەكشۈرۈش"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10056,115 +10114,115 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "بۇيرۇق"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10172,78 +10230,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10251,7 +10309,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10259,42 +10317,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10302,33 +10360,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10337,244 +10395,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "كىرگۈزگەن ھۆججەت شەكلى"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10582,99 +10640,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10682,18 +10740,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10701,68 +10759,68 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "ئىزلاش ئاكتىپ ئەمەس"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Routines"
msgid "Add chart"
msgstr "دائىملىق"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "يېڭلاش"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Chart columns"
msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10771,7 +10829,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10779,18 +10837,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10798,11 +10856,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10810,98 +10868,98 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select All"
msgid "Select series:"
msgstr "ھەممىنى تاللاش"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Routines"
msgid "Add this series"
msgstr "دائىملىق"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr ""
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "ھەممىنى تاللاش"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query"
msgid "Query analyzer"
msgstr "تەكشۈرۈش"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "سېكنۇت"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11035,7 +11093,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11099,39 +11157,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11317,53 +11375,44 @@ msgstr ""
msgid "Wrong data"
msgstr ""
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "راستىنلا ئجرا قىلىمسىز"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11378,56 +11427,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "ساندان %s ئۆچۈرۈلدى."
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "كېيىن"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12050,32 +12049,36 @@ msgstr ""
msgid "Create version"
msgstr "نەشىرنى قۇىماق"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "SQL query"
msgid "Additional search criteria"
msgstr "SQL سورىقى"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+msgid "Reset zoom"
+msgstr ""
+
#: themes.php:28
msgid "Get more themes!"
msgstr "تېخىمۇ كۆپ تېمىغا ئىرىشىش !"
@@ -12444,8 +12447,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12574,8 +12577,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13365,9 +13368,6 @@ msgstr ""
#~ msgid "No trigger with name %s found"
#~ msgstr "No valid image path for theme %s found!"
-#~ msgid "rows"
-#~ msgstr "كۆزەت"
-
#~ msgid ""
#~ "phpMyAdmin was unable to read your configuration file! This might "
#~ "happen if PHP finds a parse error in it or PHP cannot find the file. \n"
"Language-Team: ukrainian \n"
-"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Показати все"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -29,7 +29,7 @@ msgstr "Показати все"
msgid "Page number:"
msgstr "Номер сторінки:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -39,21 +39,22 @@ msgstr ""
"вікно, або налаштування безпеки Вашого оглядача блокують між-віконні "
"оновлення."
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Шукати"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -69,28 +70,27 @@ msgstr "Шукати"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "Вперед"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Ім'я ключа"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Опис"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Використовувати це значення"
@@ -123,12 +123,12 @@ msgstr "Коментарі таблиці"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "Стовпчик"
@@ -137,6 +137,7 @@ msgstr "Стовпчик"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -144,9 +145,9 @@ msgstr "Стовпчик"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тип"
@@ -154,12 +155,12 @@ msgstr "Тип"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Нуль"
@@ -198,13 +199,13 @@ msgstr "Коментарі"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -215,19 +216,19 @@ msgstr "Ні"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -360,7 +361,7 @@ msgstr "Таблиця"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Рядки"
@@ -412,28 +413,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Перемкнутись на %sвізуальний конструктор%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Посортувати"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Зростаючий"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Спадаючий"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Показати"
@@ -454,8 +455,8 @@ msgid "Del"
msgstr "Видалити"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Або"
@@ -527,8 +528,8 @@ msgstr[1] "%s співпадіння у таблиці %s"
msgstr[2] "%s співпадінь у таблиці %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Переглянути"
@@ -537,14 +538,14 @@ msgstr "Переглянути"
msgid "Delete the matches for the %s table?"
msgstr "Видалити співпадіння для таблиці %s ?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Видалити"
@@ -613,14 +614,14 @@ msgstr "Трекінг є активним."
msgid "Tracking is not active."
msgstr "Трекінг не активний."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
-"Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до "
-"%sдокументації%s."
+"Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до %"
+"sдокументації%s."
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
#: libraries/tbl_info.inc.php:60 tbl_structure.php:208
@@ -629,7 +630,7 @@ msgstr "Вигляд"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Реплікація"
@@ -643,20 +644,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s механізм зберігання за замовчуванням на цьому MySQL сервері."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "З відміченими:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Відмітити все"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -668,27 +669,27 @@ msgstr "Перевірити чи мають таблиці накладні в
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Експорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Версія для друку"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Очистити"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -714,11 +715,11 @@ msgstr "Аналіз таблиці"
msgid "Add prefix to table"
msgstr "Додати префікс до таблиці"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "Замінити префікс таблиці"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "Копіювати таблицю з префіксом"
@@ -737,8 +738,8 @@ msgstr "Відслідковувані таблиці"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "БД"
@@ -756,7 +757,7 @@ msgstr "Оновлено"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Статус"
@@ -859,45 +860,45 @@ msgstr "Використовуйте OpenStreetMaps як базовий плас
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "Геометрія"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "Точка"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "Точка %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "Додати точку"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
msgid "Linestring"
msgstr "Linestring"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "Зовнішнє кільце"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "Внутрішнє кільце"
@@ -905,15 +906,15 @@ msgstr "Внутрішнє кільце"
msgid "Add a linestring"
msgstr "Додати linestring"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr "Додати внутрішнє кільце"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "Полігон"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "Додати полігон"
@@ -936,8 +937,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Ви напевно намагаєтесь завантажити занадто великий файл. Будь ласка "
"зверніться до %sдокументації%s для знаходження шляхів вирішення цієї "
@@ -987,7 +988,7 @@ msgstr ""
"Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше "
"інсталювання!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "Закладка %s створена"
@@ -1015,7 +1016,7 @@ msgstr ""
"PHP скриптів."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1030,7 +1031,7 @@ msgstr "Назад"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin є більш зручним в браузері з підтримкою фреймів."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "Оператори \"DROP DATABASE\" заборонені."
@@ -1040,7 +1041,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені."
msgid "Do you really want to execute \"%s\"?"
msgstr "Ви насправді хочете "
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!"
@@ -1128,21 +1129,21 @@ msgstr "Закрити"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Редагувати"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "Графік трафіку в реальному часі"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "Графік підкл./процесів в реальному часі"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "Графік запиту в реальному часі"
@@ -1153,23 +1154,23 @@ msgstr "Статичні дані"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Разом"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "Інше"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1189,7 +1190,7 @@ msgstr "Трафік серверу (в KiB)"
msgid "Connections since last refresh"
msgstr "З'єднань на час останнього оновлення"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Процесів"
@@ -1207,7 +1208,7 @@ msgstr "Questions на час останнього оновлення"
msgid "Questions (executed statements by the server)"
msgstr "Questions (виконані оператори сервером)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "Статистика запиту"
@@ -1252,14 +1253,14 @@ msgid "System swap"
msgstr "SWAP системи"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1311,32 +1312,32 @@ msgstr "Байтів надіслано"
msgid "Bytes received"
msgstr "Байтів отримано"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "З'єднань"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Б"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1350,11 +1351,11 @@ msgstr "%d таблиця(таблиць)"
msgid "Questions"
msgstr "Questions"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафік"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "Налаштування"
@@ -1375,10 +1376,10 @@ msgid "Please add at least one variable to the series"
msgstr "Будь ласка додайте щонайменше одну змінну до ряду"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Жодного"
@@ -1421,8 +1422,8 @@ msgid ""
"than %d seconds. It is advisable to set this long_query_time 0-2 seconds, "
"depending on your system."
msgstr ""
-"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за "
-"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в "
+"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %"
+"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в "
"залежності від вашої системи."
#: js/messages.php:150
@@ -1478,7 +1479,7 @@ msgstr "Змінити налаштування"
msgid "Current settings"
msgstr "Поточні налаштування"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "Заголовок діаграми"
@@ -1565,9 +1566,9 @@ msgstr "Аналізується..."
msgid "Explain output"
msgstr "Тлумачити вихідні дані"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Час"
@@ -1673,7 +1674,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Імпорт"
@@ -1797,19 +1798,19 @@ msgstr "Сховати індекси"
msgid "Show indexes"
msgstr "Показати індекси"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Відключити перевірки зовнішніх ключів"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "дозволено"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1879,7 +1880,7 @@ msgstr "Показати блок запиту"
msgid "No rows selected"
msgstr "Рядків не вибрано"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Змінити"
@@ -1888,17 +1889,18 @@ msgstr "Змінити"
msgid "Query execution time"
msgstr "Час виконання запиту"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Зберегти"
@@ -1924,79 +1926,70 @@ msgid "Hovering over a point will show its label."
msgstr "При наведенні на точку буде показано її лейбл."
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
-"Використовуйте коліщатко миші, щоб збільшити або зменшити масштаб графіка."
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "Натисніть і перетягніть мишу для навігації по графіку."
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "Натисніть кнопку скидання зума, щоб повернутися до вихідного стану."
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr "Клікніть на дані щоб переглянути та можливо редагувати дані рядка."
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
"Розмір графіка може бути змінений шляхом перетягування нижнього правого кута."
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "Рядки сконвертовані в ціле для побудови графіків"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "Виділити дві колонки"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "Виділити дві різні колонки"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "Результати запиту"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Table of contents"
msgid "Data point content"
msgstr "Зміст"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Ігнорувати"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "Копіювати"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "Додати колонки"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Обрати ключі посилання"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Обрати зовнішній ключ"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "Виберіть колонку для відображення"
-#: js/messages.php:345
+#: js/messages.php:341
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?"
@@ -2004,15 +1997,15 @@ msgstr ""
"Ви не зберегли зміни в макет. Вони будуть втрачені, якщо ви не збережете їх. "
"Бажаєте продовжити?"
-#: js/messages.php:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "Додати опцію для колонки "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "Натисніть Escape для відміни редагування"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
@@ -2020,28 +2013,28 @@ msgstr ""
"Ви змінили деякі дані, і вони не були збережені. Ви впевнені, що хочете "
"залишити цю сторінку перед збереженням даних?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "Перетягніть для зміни порядку"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "Клікніть щоб посортувати"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "Клікніть щоб позначити/зняти позначку"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
"Клікніть на стрілку випадаючого меню для перемикання видимості стовпця"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
@@ -2050,50 +2043,50 @@ msgstr ""
"редагування, Прапорець, Редагувати, Копіювати і Видаляти посилання можуть не "
"працювати після збереження."
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
"Ви також можете редагувати більшість колонок клікаючи безпосередньо "
"на їх контент."
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "Перейти за посиланням"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Назви колонок"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Showing rows"
msgid "Show data row(s)"
msgstr "Показано записи "
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "Згенерувати пароль"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Згенерувати"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "Змінити пароль"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "Більше"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2103,268 +2096,268 @@ msgstr ""
"Найновіша версія %s, випущена %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", остання стабільна версія:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "оновлено"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "Готово"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "Попередня"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "Наступна"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "Сьогодні"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "Січень"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "Лютий"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "Березень"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "Квітень"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Травень"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "Червень"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "Липень"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "Серпень"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "Вересень"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "Жовтень"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "Листопад"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "Грудень"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Гру"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "Неділя"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "Понеділок"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "Вівторок"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "Середа"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "Четвер"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "П'ятниця"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "Субота"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "Тж"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "календар-місяць-рік"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Жодного"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "Година"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "Хвилина"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "Секунда"
@@ -2419,16 +2412,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "за секунду"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "за хвилину"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "за годину"
@@ -2561,15 +2554,15 @@ msgstr ""
msgid "Databases"
msgstr "Бази Даних"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2581,20 +2574,20 @@ msgid "Structure"
msgstr "Структура"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Вставити"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операцій"
@@ -2652,12 +2645,12 @@ msgstr "Користувачі"
msgid "Synchronize"
msgstr "Синхронізувати"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Бінарний журнал"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Змінні"
@@ -2674,8 +2667,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Помилка"
@@ -2797,35 +2791,35 @@ msgstr ""
"оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура "
"таблиці."
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "Не знайдено правильного шляху до зображення для теми %s!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Намає доступного перегляду."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "прийняти його"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "Тема за замовчуванням %s не знайдена!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "Тема %s не знайдена!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "Шлях теми не знайдений для теми %s!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "Тема"
@@ -2866,14 +2860,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3133,8 +3127,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Ви, напевно, не створили файл конфігурації. Для його створення Ви можете "
"використати %1$ssetup script%2$s."
@@ -3241,7 +3235,7 @@ msgstr "загальні"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Таблиць"
@@ -3292,11 +3286,11 @@ msgstr "можливе використання"
msgid "numeric key detected"
msgstr "виявлено цифровий ключ"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "Неможливо прочитати конфігураційний файл."
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -3304,12 +3298,12 @@ msgstr ""
"Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, "
"перевірте будь-які помилки що показано нижче."
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Неможливо завантажити стандартну функціональність із: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3321,23 +3315,23 @@ msgstr ""
"Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому "
"конфігураційному файлі!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "Не вірний індекс сервера: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
"Не вірна назва хоста для сервера %1$s. Будь ласка перевірте Вашу "
"конфігурацію."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "Вам необхідно оновити до %s %s або пізнішої."
@@ -3372,8 +3366,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL-запит"
@@ -3411,7 +3405,7 @@ msgid "Create PHP Code"
msgstr "Створити PHP код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Оновити"
@@ -3432,97 +3426,97 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "в рядок"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Профілювання"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Нд"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d %Y р., %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s днів, %s годин, %s хвилин і %s секунд"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "Пропущено параметр:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "Почати"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "Попередній"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "Вперед"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Кінець"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "Перейти до бази даних "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "На функціональність %s впливає відома помилка, див. %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "Клікніть, щоб змінити"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "Переглянути Ваш комп'ютер:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Встановлений Вами каталог для завантаження файлів недоступний"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "Немає файлів для завантаження"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "Виконати"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Друк"
@@ -3695,9 +3689,9 @@ msgstr "Відновити значення за замовчуванням"
msgid "Allow users to customize this value"
msgstr "Дозволити користувачам налаштовувати це значення"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Перевстановити"
@@ -3859,7 +3853,7 @@ msgid "Compress on the fly"
msgstr "Стиснути на льоту"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Конфігураційний файл"
@@ -3921,7 +3915,7 @@ msgstr "Запропонувати структуру таблиці"
msgid "Show binary contents as HEX by default"
msgstr "Показувати двійковий вміст як HEX по замовчуванню"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Показувати двійковий вміст як HEX"
@@ -5736,7 +5730,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5874,25 +5868,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6052,8 +6046,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6243,52 +6237,57 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr ""
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr ""
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr ""
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "Число рядків:"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "Більше"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "горизонтальному"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "горизонтальному (повернуті заголовки)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикальному"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute every"
+msgid "Headers every"
+msgstr "Виконати кожні"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Переглянути"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6306,101 +6305,101 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Часткові тексти"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Повні тексти"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational schema"
msgid "Relational display column"
msgstr "Схема зв'язків"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Перетворення МІМЕ-типу бровзером"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Рядок видалено"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Вбити"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "по запиту"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Показано записи"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "всього"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запит виконувався %01.4f сек"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "Показати PDF схему"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create User"
msgid "Create view"
msgstr "Створити користувача"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Лінк не знайдено"
@@ -6444,7 +6443,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "Статус InnoDB"
@@ -6695,8 +6694,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6839,12 +6838,12 @@ msgstr "Доступні MIME-types"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Час створення"
@@ -7053,8 +7052,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
@@ -7221,6 +7220,100 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функція"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Приховати"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Двійковий"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Через велику довжину, це поле не може бути відредаговано "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Двійкові дані - не редагуються"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Вставити"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "і потім"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Вставити як новий рядок"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Повернутись"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Вставити новий запис"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Значення"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7233,36 +7326,36 @@ msgstr "Немає"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "Пт"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Виконати"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ви насправді хочете "
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Змін немає"
@@ -7270,11 +7363,6 @@ msgstr "Змін немає"
msgid "Charset"
msgstr "Набір символів"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Двійковий"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Болгарське"
@@ -7607,18 +7695,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Змінна"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Значення"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "ID сервера"
@@ -7941,11 +8021,6 @@ msgstr "Виконати порядок"
msgid "Routine parameters"
msgstr "Параметри порядку"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функція"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Вибачте, нам не вдалось відновити видалений тригер."
@@ -8271,7 +8346,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "Виконати SQL запит/запити у базі даних %s"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Очистити"
@@ -8279,11 +8354,11 @@ msgstr "Очистити"
msgid "Columns"
msgstr "Колонки"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Закладка на даний SQL запит"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Надати всім користувачам доступ до цієї закладки"
@@ -8307,10 +8382,6 @@ msgstr "Показати даний запит тут знову"
msgid "View only"
msgstr "Лише перегляд"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8428,8 +8499,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
-"%sописи перетворень%s"
+"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
+"sописи перетворень%s"
#: libraries/tbl_properties.inc.php:139
msgid "Transformation options"
@@ -8518,12 +8589,6 @@ msgstr ""
msgid "Table Search"
msgstr "Шукати"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Вставити"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8748,7 +8813,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Користувач"
@@ -8967,10 +9032,6 @@ msgstr "Сховати/Показати все"
msgid "Hide/Show Tables with no relation"
msgstr "Сховати/Показати Таблиці які не мають зв'язків"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Приховати"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Число таблиць"
@@ -9167,17 +9228,17 @@ msgstr "Файл не існує"
msgid "Select binary log to view"
msgstr "Вибрати двійковий журнал для перегляду"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файли"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Обрізати показані запити"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Показати повні запити"
@@ -9629,8 +9690,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@@ -9756,7 +9817,7 @@ msgstr "Права успішно перезавантажено."
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9893,160 +9954,160 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "Процес %s припинено."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "Інформація про роботу сервера"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Оновити"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Не змінювати пароль"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show tables"
msgid "Show only alert values"
msgstr "Показати таблиці"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show tables"
msgid "Show unformatted values"
msgstr "Показати таблиці"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Зв'язки"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Тип запиту"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Administration"
msgid "Instructions"
msgstr "Адміністратор"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10054,116 +10115,116 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr ""
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Параметр"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "Цей MySQL сервер працює %s. Стартував %s."
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Отримано"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Відправлено"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Невдалих спроб"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Перервано"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Команда"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10171,78 +10232,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10250,7 +10311,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10258,42 +10319,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10301,33 +10362,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10336,244 +10397,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Character set of the file:"
msgid "Percentage of used key cache (calculated value)"
msgstr "Кодування файлу:"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10581,99 +10642,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10681,18 +10742,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10700,69 +10761,69 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Трекінг не активний."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr ""
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add into comments"
msgid "Add chart"
msgstr "Додати коментар"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate"
msgstr "Оновити"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Column names"
msgid "Chart columns"
msgstr "Назви колонок"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr ""
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10771,7 +10832,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10779,18 +10840,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10798,11 +10859,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10810,93 +10871,93 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "Видалити базу даних"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Вибрати таблиці"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Неправильна назва таблиці"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new User"
msgid "Add this series"
msgstr "Додати нового користувача"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr ""
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Row Statistics"
msgid "Log statistics"
msgstr "Статистика рядка"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Вибрати таблиці"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Тип запиту"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10905,7 +10966,7 @@ msgstr[0] "Секунда"
msgstr[1] "Секунда"
msgstr[2] "Секунда"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11043,7 +11104,7 @@ msgstr "Значення сесії"
msgid "Global value"
msgstr "Загальне значення"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11107,39 +11168,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11327,55 +11388,46 @@ msgstr ""
msgid "Wrong data"
msgstr "БД відсутні"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ви насправді хочете "
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "Перевірити SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL result"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Згенеровано"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Мітка"
@@ -11390,58 +11442,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "Вибраних користувачів успішно видалено."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Через велику довжину, це поле не може бути відредаговано "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Двійкові дані - не редагуються"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Вставити як новий рядок"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "і потім"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Повернутись"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Вставити новий запис"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12078,34 +12078,40 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "Сховати критерії пошуку"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr ""
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr ""
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Перевстановити"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12478,8 +12484,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12610,8 +12616,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13288,6 +13294,16 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert встановлений у 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr ""
+#~ "Використовуйте коліщатко миші, щоб збільшити або зменшити масштаб графіка."
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "Натисніть і перетягніть мишу для навігації по графіку."
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "Рядки сконвертовані в ціле для побудови графіків"
+
#, fuzzy
#~| msgid "Linestring"
#~ msgid "String"
@@ -13459,9 +13475,6 @@ msgstr "concurrent_insert встановлений у 0"
#~ msgid "Value too long in the form!"
#~ msgstr "Не задано значення для форми!"
-#~ msgid "rows"
-#~ msgstr "Переглянути"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "рядків з"
@@ -13505,8 +13518,8 @@ msgstr "concurrent_insert встановлений у 0"
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Статистика запитів: З моменту запуску, до сервера було надіслано "
-#~ "%s запитів."
+#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %"
+#~ "s запитів."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."
diff --git a/po/ur.po b/po/ur.po
index 2805512799..6a7521b193 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,24 +6,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-17 15:19+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Urdu \n"
-"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "تمام دکھائیں"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -31,7 +31,7 @@ msgstr "تمام دکھائیں"
msgid "Page number:"
msgstr "صفحہ نمبر:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -40,21 +40,22 @@ msgstr ""
"مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند "
"کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "تلاش"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -70,28 +71,27 @@ msgstr "تلاش"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "جائیں"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "کلید نام"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "وضاحت"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "یہ قدر استعمال کریں"
@@ -125,12 +125,12 @@ msgstr "جدول تبصرے"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Command"
msgid "Column"
@@ -141,6 +141,7 @@ msgstr "کالم"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -148,9 +149,9 @@ msgstr "کالم"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "قِسم"
@@ -158,12 +159,12 @@ msgstr "قِسم"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "خالی"
@@ -202,13 +203,13 @@ msgstr "تبصرہ"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -219,19 +220,19 @@ msgstr "نہیں"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -364,7 +365,7 @@ msgstr "جدول"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "صفیں"
@@ -417,28 +418,28 @@ msgid "Switch to %svisual builder%s"
msgstr "بصری تعمیر کنندہ"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "چھانٹیں"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "صعودی"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "نزولی"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "دکھائیں"
@@ -459,8 +460,8 @@ msgid "Del"
msgstr "Del"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "یا"
@@ -531,8 +532,8 @@ msgstr[0] "%sجدول کے ساتھ مشابہ%s"
msgstr[1] "%sجدول کے ساتھ مشابہات%s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "براؤز"
@@ -541,14 +542,14 @@ msgstr "براؤز"
msgid "Delete the matches for the %s table?"
msgstr "اس جدول کے مشابہات حذف %s کریں؟"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "حذف"
@@ -620,11 +621,11 @@ msgstr "کھوج فعال ہے۔"
msgid "Tracking is not active."
msgstr "کھوج غیر فعال ہے۔"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@@ -635,7 +636,7 @@ msgstr "نقل جدول"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "چربہ کاری"
@@ -649,20 +650,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "مع منتخب:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "تمام پڑتال کریں"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -674,27 +675,27 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "برآمد"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "چھپائی منظر"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "خالی"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -720,13 +721,13 @@ msgstr "جدول تجزیہ کریں"
msgid "Add prefix to table"
msgstr ""
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "جدول کوائف کو مسل سے بدلیں"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -747,8 +748,8 @@ msgstr "کھوج شدہ جداول"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "کوائفیہ"
@@ -766,7 +767,7 @@ msgstr "تازہ کی گئی"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "حالت"
@@ -873,49 +874,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add a point"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "سطریں کے آخر میں"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -925,15 +926,15 @@ msgstr ""
msgid "Add a linestring"
msgstr "پابندیاں لگائیں"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
msgid "Add an inner ring"
msgstr ""
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add a polygon"
@@ -958,11 +959,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
-"%sdocumentation%s دیکھیں۔"
+"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
+"sdocumentation%s دیکھیں۔"
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1006,7 +1007,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "نشانی %s بنایا گیا"
@@ -1033,7 +1034,7 @@ msgstr ""
"کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1048,7 +1049,7 @@ msgstr "واپس"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin ایک فریم صلاحیت والے براؤزر کے ساتھ زیادہ موزوں ہے۔"
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
@@ -1058,7 +1059,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
msgid "Do you really want to execute \"%s\"?"
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
@@ -1157,23 +1158,23 @@ msgstr "بند کریں"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "تدوین"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "سرور انتخاب"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "Hide query box"
msgid "Live query chart"
@@ -1186,23 +1187,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "میزان"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1224,7 +1225,7 @@ msgstr "سرور انتخاب"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr ""
@@ -1244,7 +1245,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "طلب شماریات"
@@ -1293,14 +1294,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "میگا بائٹ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "کلو بائٹ"
@@ -1356,32 +1357,32 @@ msgstr ""
msgid "Bytes received"
msgstr ""
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr ""
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "بائٹ"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "گیگا بائٹ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ٹیرا بائٹ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "پیٹا بائٹ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ایگزا بائٹ"
@@ -1399,11 +1400,11 @@ msgstr "%s جدول"
msgid "Questions"
msgstr "نسخے"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr ""
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "General relation features"
msgid "Settings"
@@ -1428,10 +1429,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr ""
@@ -1530,7 +1531,7 @@ msgstr "جنرل ریلیشن فیچرز"
msgid "Current settings"
msgstr "جنرل ریلیشن فیچرز"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Default"
msgid "Chart Title"
@@ -1620,9 +1621,9 @@ msgstr "توثیق کررہا ہے..."
msgid "Explain output"
msgstr "SQL کی تفصیل بتائیں"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "وقت"
@@ -1735,7 +1736,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "درآمد"
@@ -1871,19 +1872,19 @@ msgstr "اشاریے"
msgid "Show indexes"
msgstr "گرِڈ دکھائیں"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "فارن کلید پڑتال غیر فعال کریں"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enable Ajax"
msgid "(Enabled)"
msgstr "AJAX فعال کریں"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1965,7 +1966,7 @@ msgstr "طلب خانہ دکھائیں"
msgid "No rows selected"
msgstr ""
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr ""
@@ -1976,17 +1977,18 @@ msgstr ""
msgid "Query execution time"
msgstr "چلنے کی حد اوقات"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr ""
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr ""
@@ -2013,204 +2015,196 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "کالم اضافہ/حذف کریں"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results"
msgid "Query results"
msgstr "طلب نتائج"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr ""
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "نظر انداز کریں"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "محولہ کلید منتخب کریں"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "فارن کلید منتخب کریں"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "ایک بنیادی یا منفرد کلید منتخب کریں"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "کالم دکھانے کے لیے انتخاب کریں"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "کالم کے لیے ایک اختیار اضافہ کریں "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "انتخاب کے لیے کلک کریں"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Logo link URL"
msgid "Go to link"
msgstr "علامت ربط URL"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Comments"
msgid "Copy column name"
msgstr "آراء-رائے"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Startup"
msgid "Show data row(s)"
msgstr "ابتدائیہ"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "پاس ورڈ بنائیں"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "بنائیں"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "پاس ورڈ تبدیل کریں"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "مزید"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
-"%s, جاری کیا گیا %s."
+"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
+"s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ", حالیہ مستحکم نسخہ:"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "کوائفیہ جائیں"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "ہوچکا"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
msgid "Prev"
msgstr "پچھلا"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2218,149 +2212,149 @@ msgid "Next"
msgstr "اگلا"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "آج"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "جنوری"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "فروری"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "مارچ"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "اپریل"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "مئی"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "جون"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "جولائی"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "اگست"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "ستمبر"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "اکتوبر"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "نومبر"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "دسمبر"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "اتوار"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "پیر"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "منگل"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "بدھ"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "جمعرات"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "جمعہ"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "ہفتہ"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2368,97 +2362,97 @@ msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "ہفتہ"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "اتوار"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "پیر"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "منگل"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "بدھ"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "جمعرات"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "جمعہ"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "ہفتہ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "ہفتہ وار"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "Done"
msgctxt "Year suffix"
msgid "none"
msgstr "ہوچکا"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "گھنٹہ"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "منٹ"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "سیکنڈ"
@@ -2509,16 +2503,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr ""
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr ""
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr ""
@@ -2648,15 +2642,15 @@ msgstr ""
msgid "Databases"
msgstr "کوائفیے"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "سرور"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2668,20 +2662,20 @@ msgid "Structure"
msgstr "ساخت"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "داخل کریں"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "عملیات"
@@ -2739,12 +2733,12 @@ msgstr ""
msgid "Synchronize"
msgstr ""
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr ""
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr ""
@@ -2761,8 +2755,9 @@ msgid "Engines"
msgstr ""
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "نقص"
@@ -2882,35 +2877,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "اسے لیں"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "طے شدہ خیالیہ %s نہیں ملا!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "خیالیہ %s نیہں ملا!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -2951,14 +2946,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3218,8 +3213,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@@ -3324,7 +3319,7 @@ msgstr "حصہ دارانہ"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "جداول"
@@ -3375,24 +3370,24 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Configuration file"
msgid "Failed to read configuration file"
msgstr "تشکیلی مسل"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3404,21 +3399,21 @@ msgstr ""
"$cfg['PmaAbsoluteUri'] ہدایات آپ کے تشکیل مسل میں لازمی موجود "
"ہوں!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "غلط سرور اشاریہ: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔"
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔"
@@ -3453,8 +3448,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "انگریزی"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL طلب"
@@ -3492,7 +3487,7 @@ msgid "Create PHP Code"
msgstr "PHP کوڈ بنائیں"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "تازہ کریں"
@@ -3513,41 +3508,41 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "ان لائن"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "تفصیلات"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "اتوار"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%B %d, %Y پر %I:%M %p"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr ""
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "شروع"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3555,8 +3550,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "پچھلا"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3564,54 +3559,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "اگلا"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "اختتام"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "کوائفیہ میں جائیں "%s"."
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "انتخاب کے لیے کلک کریں"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "اپنے کمپیوٹر کو براؤز کریں:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "چھاپیں"
@@ -3783,9 +3778,9 @@ msgstr "طے شدہ قدر بحال کریں"
msgid "Allow users to customize this value"
msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "دوبارہ سیٹ کریں"
@@ -3946,7 +3941,7 @@ msgid "Compress on the fly"
msgstr "سرعت سے سکیڑیں"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "تشکیلی مسل"
@@ -4008,7 +4003,7 @@ msgstr "جدول عنوان شامل کریں"
msgid "Show binary contents as HEX by default"
msgstr "ثنائی مشمولات کو بطور HEX طے شدہ دکھائیں"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "ثنائی مشمولات بطور HEX دکھائیں"
@@ -5854,7 +5849,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr ""
@@ -5994,25 +5989,25 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr ""
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr ""
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr ""
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6182,8 +6177,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:285
@@ -6365,58 +6360,61 @@ msgstr ""
msgid "Language"
msgstr ""
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "پوشہ محفوظ کریں"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Startup"
msgid "Start row"
msgstr "ابتدائیہ"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of inserted rows"
msgid "Number of rows"
msgstr "داخل شدہ صفوں کی تعداد"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "مزید"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr ""
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr ""
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr ""
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "براؤز"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr ""
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6434,93 +6432,93 @@ msgstr ""
msgid "Options"
msgstr ""
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr ""
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr ""
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr ""
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr ""
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr ""
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr ""
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr ""
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Table comments"
msgid "Display chart"
msgstr "ٹیبل کمنٹس"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Created"
msgid "Create view"
msgstr "تخلیق کیا گیا"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr ""
@@ -6564,7 +6562,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr ""
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr ""
@@ -6815,8 +6813,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -6945,12 +6943,12 @@ msgstr ""
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr ""
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr ""
@@ -7158,8 +7156,8 @@ msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
@@ -7329,6 +7327,98 @@ msgstr ""
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "داخل کریں"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "اور پھر"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr ""
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7339,36 +7429,36 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fr"
msgid "From"
msgstr "جمعہ"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr ""
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr ""
@@ -7376,11 +7466,6 @@ msgstr ""
msgid "Charset"
msgstr ""
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr ""
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr ""
@@ -7709,18 +7794,10 @@ msgid "Slave status"
msgstr ""
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr ""
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr ""
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr ""
@@ -8069,11 +8146,6 @@ msgstr ""
msgid "Routine parameters"
msgstr ""
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr ""
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8432,7 +8504,7 @@ msgid "Run SQL query/queries on database %s"
msgstr ""
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr ""
@@ -8442,11 +8514,11 @@ msgstr ""
msgid "Columns"
msgstr "آراء-رائے"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr ""
@@ -8470,10 +8542,6 @@ msgstr ""
msgid "View only"
msgstr ""
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8651,12 +8719,6 @@ msgstr ""
msgid "Table Search"
msgstr "تلاش"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "داخل کریں"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8842,7 +8904,7 @@ msgstr ""
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr ""
@@ -9050,10 +9112,6 @@ msgstr ""
msgid "Hide/Show Tables with no relation"
msgstr ""
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr ""
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr ""
@@ -9262,17 +9320,17 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr ""
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr ""
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr ""
@@ -9705,8 +9763,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:2032
@@ -9823,7 +9881,7 @@ msgstr ""
msgid "This server is configured as master in a replication process."
msgstr ""
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr ""
@@ -9960,156 +10018,156 @@ msgid ""
"like to configure it?"
msgstr ""
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr ""
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr ""
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr ""
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr ""
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr ""
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr ""
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr ""
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr ""
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr ""
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr ""
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr ""
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr ""
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr ""
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr ""
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr ""
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr ""
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "تازہ کریں"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr ""
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr ""
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show only alert values"
msgstr "بائیں جھروکہ میں علامت دکھائیں"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show logo in left frame"
msgid "Show unformatted values"
msgstr "بائیں جھروکہ میں علامت دکھائیں"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Replication"
msgid "Related links:"
msgstr "لپیٹنا"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Gather errors"
msgid "Run analyzer"
msgstr "نقائص اکھٹی کریں"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr ""
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10117,116 +10175,116 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "ابتدائیہ صفحہ کی تخصیص کریں"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr ""
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr ""
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr ""
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr ""
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
msgstr ""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr ""
-#: server_status.php:1104
+#: server_status.php:1107
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:1110
+#: server_status.php:1113
msgid "Received"
msgstr ""
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr ""
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr ""
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr ""
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr ""
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr ""
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "حکم"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr ""
-#: server_status.php:1319
+#: server_status.php:1322
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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr ""
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10234,78 +10292,78 @@ msgid ""
"based instead of disk-based."
msgstr ""
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr ""
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr ""
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
msgstr ""
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr ""
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr ""
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr ""
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL 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:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry 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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of 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:1335
+#: server_status.php:1338
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:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10313,7 +10371,7 @@ msgid ""
"you have joins that don't use keys properly."
msgstr ""
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10321,42 +10379,42 @@ msgid ""
"advantage of the indexes you have."
msgstr ""
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr ""
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr ""
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr ""
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr ""
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr ""
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr ""
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr ""
-#: server_status.php:1345
+#: server_status.php:1348
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:1346
+#: server_status.php:1349
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 "
@@ -10364,33 +10422,33 @@ msgid ""
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr ""
-#: server_status.php:1348
+#: server_status.php:1351
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:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
msgstr ""
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10399,244 +10457,244 @@ msgid ""
"properly, this value should be small."
msgstr ""
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr ""
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr ""
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr ""
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr ""
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr ""
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr ""
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr ""
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr ""
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr ""
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr ""
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr ""
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr ""
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr ""
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr ""
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr ""
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr ""
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr ""
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr ""
-#: server_status.php:1372
+#: server_status.php:1375
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:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr ""
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr ""
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr ""
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr ""
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr ""
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr ""
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr ""
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr ""
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr ""
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr ""
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "درآمد مسل کی وضع"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr ""
-#: server_status.php:1389
+#: server_status.php:1392
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:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr ""
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr ""
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr ""
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr ""
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr ""
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr ""
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10644,99 +10702,99 @@ msgid ""
"decide which queries to remove from the cache."
msgstr ""
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
msgstr ""
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr ""
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr ""
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr ""
-#: server_status.php:1410
+#: server_status.php:1413
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:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
-#: server_status.php:1412
+#: server_status.php:1415
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:1413
+#: server_status.php:1416
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:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr ""
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr ""
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr ""
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr ""
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge 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:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr ""
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr ""
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr ""
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10744,18 +10802,18 @@ msgid ""
"tables or use replication."
msgstr ""
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number 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:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr ""
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10763,72 +10821,72 @@ msgid ""
"implementation.)"
msgstr ""
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "کھوج غیر فعال ہے۔"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr ""
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Startup"
msgid "Start Monitor"
msgstr "ابتدائیہ"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Add chart"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "تازہ کریں"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Chart columns"
msgstr "فیلڈ کالمز شامل یا ختم کریں"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr ""
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "طے شدہ قدر بحال کریں"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10837,7 +10895,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10845,18 +10903,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10864,11 +10922,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10876,95 +10934,95 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "کوائفیہ ہٹائیں"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr ""
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "SQL queries"
msgid "Select series:"
msgstr "SQL طلب"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "غلط جدول نام"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a New User"
msgid "Add this series"
msgstr "نیا صارف اضافہ کریں"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL طلب"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Query statistics"
msgid "Log statistics"
msgstr "طلب شماریات"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select All"
msgid "Selected time range:"
msgstr "سارا منتخب کریں"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Gather errors"
msgid "Query analyzer"
msgstr "نقائص اکھٹی کریں"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
@@ -10972,7 +11030,7 @@ msgid_plural "%d seconds"
msgstr[0] "سیکنڈ"
msgstr[1] "سیکنڈ"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11106,7 +11164,7 @@ msgstr ""
msgid "Global value"
msgstr ""
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr ""
@@ -11170,39 +11228,39 @@ msgstr ""
msgid "New server"
msgstr ""
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr ""
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr ""
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr ""
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr ""
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr ""
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr ""
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr ""
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr ""
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr ""
@@ -11390,53 +11448,44 @@ msgstr ""
msgid "Wrong data"
msgstr "کوائف"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr ""
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "کیا آپ واقعی چاہتے ہیں"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr ""
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr ""
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr ""
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr ""
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr ""
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr ""
@@ -11451,56 +11500,6 @@ msgstr ""
msgid "The columns have been moved successfully."
msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr ""
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr ""
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr ""
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr ""
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr ""
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "اور پھر"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr ""
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr ""
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr ""
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr ""
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr ""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -12131,36 +12130,42 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "تلاش کسوٹی چھپائیں"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "صارف کو کنٹرول کریں"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "دوبارہ سیٹ کریں"
+
#: themes.php:28
msgid "Get more themes!"
msgstr ""
@@ -12526,8 +12531,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12656,8 +12661,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13499,9 +13504,6 @@ msgstr ""
#~ msgid "No trigger with name %s found"
#~ msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
-#~ msgid "rows"
-#~ msgstr "براؤز"
-
#~ msgid ""
#~ "phpMyAdmin was unable to read your configuration file! This might "
#~ "happen if PHP finds a parse error in it or PHP cannot find the file. \n"
"Language-Team: uzbek_cyrillic \n"
-"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Барчасини кўрсатиш"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Барчасини кўрсатиш"
msgid "Page number:"
msgstr "Саҳифа рақами:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган "
"ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Қидириш"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "Қидириш"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Индекс номи"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Тавсифи"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Ушбу қийматни ишлатиш"
@@ -119,12 +119,12 @@ msgstr "Жадвал изоҳи"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -135,6 +135,7 @@ msgstr "Майдон номлари"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -142,9 +143,9 @@ msgstr "Майдон номлари"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Тур"
@@ -152,12 +153,12 @@ msgstr "Тур"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -196,13 +197,13 @@ msgstr "Изоҳлар"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -213,19 +214,19 @@ msgstr "Йўқ"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -367,7 +368,7 @@ msgstr "Жадвал"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Қаторларсони"
@@ -420,28 +421,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Нусха олинган жадвалга ўтиш"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Сортировка қилиш"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "Ўсиш тартибида"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Камайиш тартибида"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Кўрсатиш"
@@ -462,8 +463,8 @@ msgid "Del"
msgstr "Ўчириш"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Ёки"
@@ -537,8 +538,8 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s
msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Кўриб чиқиш"
@@ -548,14 +549,14 @@ msgstr "Кўриб чиқиш"
msgid "Delete the matches for the %s table?"
msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "Ўчириш"
@@ -632,11 +633,11 @@ msgstr "Кузатиш фаол."
msgid "Tracking is not active."
msgstr "Кузатиш фаол эмас."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@@ -648,7 +649,7 @@ msgstr "Намойиш"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Репликация (захира нусха кўчириш)"
@@ -662,20 +663,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Белгиланганларни:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Барчасини белгилаш"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -687,27 +688,27 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Экспорт"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Чоп этиш версияси"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Тозалаш"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -735,13 +736,13 @@ msgstr "Жадвал таҳлили"
msgid "Add prefix to table"
msgstr "Ушбу жадвалга ўтиш"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -762,8 +763,8 @@ msgstr "Кузатилган жадваллар"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Маълумотлар базаси"
@@ -781,7 +782,7 @@ msgstr "Янгиланди"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Ҳолат"
@@ -887,49 +888,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add a point"
msgstr "Индекс(лар)ни сақлаш"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Қаторлар бўлувчиси"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -939,17 +940,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Янги фойдаланувчи қўшиш"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Янги фойдаланувчи қўшиш"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add column(s)"
msgid "Add a polygon"
@@ -974,11 +975,11 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
-"%sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
+"sдокументацияда%s келтирилган."
#: import.php:216 import.php:443
msgid "Showing bookmark"
@@ -1026,7 +1027,7 @@ msgstr ""
"Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/"
"export каталогини текширинг."
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" хатчўпи тузилди"
@@ -1055,7 +1056,7 @@ msgstr ""
"phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1071,7 +1072,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
"phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган."
@@ -1081,7 +1082,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш)
msgid "Do you really want to execute \"%s\"?"
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
@@ -1186,23 +1187,23 @@ msgstr "Ёпиш"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Таҳрирлаш"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Серверни танланг"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1215,23 +1216,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Жами"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1253,7 +1254,7 @@ msgstr "Серверни танланг"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Жараёнлар"
@@ -1273,7 +1274,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
@@ -1324,14 +1325,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "МБ"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "КБ"
@@ -1393,32 +1394,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Қабул қилинди"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Уланишлар"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Байт"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "ГБ"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "ТБ"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "ПБ"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "ЭБ"
@@ -1435,11 +1436,11 @@ msgstr "Жадваллар сони: \"%s\""
msgid "Questions"
msgstr "Версиялар"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Трафик"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "settings"
msgid "Settings"
@@ -1466,10 +1467,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Йўқ"
@@ -1569,7 +1570,7 @@ msgstr "Бошқа созланишлар"
msgid "Current settings"
msgstr "танловлар"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1661,9 +1662,9 @@ msgstr "Таҳлил"
msgid "Explain output"
msgstr "Сўров таҳлили"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Вақт"
@@ -1776,7 +1777,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Импорт"
@@ -1928,19 +1929,19 @@ msgstr "Индекс(лар)ни сақлаш"
msgid "Show indexes"
msgstr "Тўрни кўрсатиш"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Ташқи калитларни текширишни ўчириш"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Фаоллаштирилган"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -2025,7 +2026,7 @@ msgstr "SQL сўровлари қутиси"
msgid "No rows selected"
msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак."
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "Ўзгартириш"
@@ -2036,17 +2037,18 @@ msgstr "Ўзгартириш"
msgid "Query execution time"
msgstr "Максимум бажарилиш вақти"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d сони тўғри қатор рақами эмас!"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Сақлаш"
@@ -2077,182 +2079,174 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Устун қўшиш/ўчириш"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "Сўров натижаларини ишлатиш"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Маълумотлар файли кўрсатгичи ҳажми"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "Эътибор бермаслик"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Устун(лар) қўшиш"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Боғлиқ калитни танланг"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Ташқи калитни танланг"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Кўрсатиладиган майдонни танлаш"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Танлаш учун сичқонча тугмасини босинг"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
msgstr "Ушбу кўринишга ўтиш"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Майдон номлари"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Қатор(лар)ни янгилаш"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Парол ўрнатиш"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Генерация қилиш"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Паролни ўзгартириш"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Душ"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2263,33 +2257,33 @@ msgstr ""
"чиқарилган."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Охирги версияни текшириш"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ушбу базага ўтиш"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Садақа"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Орқага"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2297,96 +2291,96 @@ msgid "Next"
msgstr "Кейинги"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Жами"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Иккилик"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "Май"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2394,78 +2388,78 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Якш"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Душ"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Сеш"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Жум"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2473,115 +2467,115 @@ msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Шан"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Якш"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Душ"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Сеш"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Чор"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пай"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Жум"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Шан"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Йўқ"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ишлатилмоқда"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2635,16 +2629,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "секундига"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "минутига"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "соатига"
@@ -2775,15 +2769,15 @@ msgstr "%1$s ва %2$s индекслари бир хил, улардан бир
msgid "Databases"
msgstr "Маълумотлар базалари"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Сервер"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2795,20 +2789,20 @@ msgid "Structure"
msgstr "Тузилиши"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Қўйиш"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Операциялар"
@@ -2868,12 +2862,12 @@ msgstr "Фойдаланувчи"
msgid "Synchronize"
msgstr "Синхронизация қилиш"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Иккилик журнал"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "Ўзгарувчилар"
@@ -2890,8 +2884,9 @@ msgid "Engines"
msgstr "Жадвал турлари"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Хатолик"
@@ -3019,35 +3014,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Олдиндан кўриш мумкин эмас."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "Тадбиқ қилиш"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "\"%s\" асл мавзуси топилмади!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "\"%s\" мавзуси топилмади!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "\"%s\" мавзуси файлларига йўл топилмади!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3088,14 +3083,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3355,8 +3350,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@@ -3424,7 +3419,8 @@ msgstr ""
#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
-"\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан ўтинг"
+"\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан "
+"ўтинг"
#: libraries/auth/cookie.auth.lib.php:629
#: libraries/auth/cookie.auth.lib.php:631
@@ -3466,7 +3462,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Жадваллар"
@@ -3523,25 +3519,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Failed to read configuration file"
msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади."
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3553,25 +3549,25 @@ msgstr ""
"$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда "
"созланиши ШАРТ!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Сервер рақами нотўғри: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
" %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион "
"файлида белгиланган созлашларни тўғирланг."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
@@ -3606,8 +3602,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL сўрови"
@@ -3647,7 +3643,7 @@ msgid "Create PHP Code"
msgstr "PHP-код"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Янгилаш"
@@ -3670,43 +3666,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Жадвал турлари"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Профиллаштириш"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Якш"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y й., %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Муолажалар"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Боши"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3714,8 +3710,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Орқага"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3723,57 +3719,57 @@ msgctxt "Next page"
msgid "Next"
msgstr "Кейинги"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Охири"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "\"%s\" маълумотлар базасига ўтиш"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
" \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил "
"маълумот учун қаранг \"%s\""
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Танлаш учун сичқонча тугмасини босинг"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "Юклаш каталогидан"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Кўрсатилган каталокка юклаб бўлмади"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Чоп этиш"
@@ -3958,9 +3954,9 @@ msgstr "Асл қийматларни тиклаш"
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Тозалаш"
@@ -4130,7 +4126,7 @@ msgid "Compress on the fly"
msgstr "Бирйўла қисиш"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Конфигурацион файл"
@@ -4196,7 +4192,7 @@ msgstr "Жадвал тузилиши таҳлили"
msgid "Show binary contents as HEX by default"
msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш"
@@ -5650,8 +5646,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
-"[kbd]\"pma_pdf_pages\"[/kbd]"
+"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
+"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
@@ -5758,8 +5754,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
-"[kbd]\"pma_table_coords\"[/kbd]"
+"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
+"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
@@ -6219,7 +6215,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Охирги версияни текшириш"
@@ -6381,7 +6377,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6389,21 +6385,21 @@ msgid ""
"configured)."
msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Сервер жавоб бермаяпти"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Тафсилотлар..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6596,16 +6592,16 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
-"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
-"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
+"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
+"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:285
msgid "use this for future exports"
@@ -6825,58 +6821,63 @@ msgstr ""
msgid "Language"
msgstr "Тил"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Сақлаш директорияси"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Restore column order"
msgstr "CHAR майдонидаги устунлар сони"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Бошлаш"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Майдонлар сони "
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Душ"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "горизонтал"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "горизонтал (айлантирилган сарлавҳалар)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "вертикал"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Белгиланган сўровни бажариш"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Кўриб чиқиш"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Индекс бўйича сортировка қилиш"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6894,101 +6895,101 @@ msgstr "Индекс бўйича сортировка қилиш"
msgid "Options"
msgstr "Параметрлар"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Маълумотларни қисқартириб кўрсатиш"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Алоқадор калит"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Алоқадор майдон қиймати"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Иккилик маълумотларни кўрсатиш"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB туридаги маълумотларни кўрсатиш"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "Ўгириш"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Тугатиш"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "сўров бўйича"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Ёзувларни кўрсатиш"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "жами"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "Сўров %01.4f секунд вақт олди"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "Сўров натижаларини ишлатиш"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Чоп этиш версияси (тўла)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-схемани кўрсатиш"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Версиясини тузиш"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Алоқа топилмади"
@@ -7036,7 +7037,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Буфер пули"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB аҳволи"
@@ -7330,8 +7331,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7482,12 +7483,12 @@ msgstr "Мавжуд MIME турлари"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Хост"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Тузилган сана"
@@ -7700,8 +7701,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
@@ -7894,6 +7895,102 @@ msgstr "SQL билан мослик режими"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Функция"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Яшириш"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Иккилик"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Маълумотлар кўплиги сабали ўзгартириш қийишлашиши мумкин"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Юклаш каталогидан"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Қўйиш"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Қўйилаётган қаторлар сони: \"%s\""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "ва сўнг"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Ёзув киритиш"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Киритилган сўровни кўрсатиш"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Олдинги саҳифага ўтиш"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Янги ёзув киритиш"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Ушбу саҳифага қайтиш"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Кейинги қаторни таҳрирлаш"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Қиймати"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL-сўровни кўрсатиш"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Киритилган қатор идентификатори: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7906,38 +8003,38 @@ msgstr "Йўқ"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Жум"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Бажариш"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add prefix"
msgstr "Индекс(лар)ни сақлаш"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "Ўзгариш йўқ"
@@ -7945,11 +8042,6 @@ msgstr "Ўзгариш йўқ"
msgid "Charset"
msgstr "Кодировка"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Иккилик"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Болгарча"
@@ -8291,18 +8383,10 @@ msgid "Slave status"
msgstr "Тобе сервер статуси"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "Ўзгарувчи"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Қиймати"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Сервер ID си"
@@ -8667,11 +8751,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Муолажалар"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Функция"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -9049,7 +9128,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Тозалаш"
@@ -9059,11 +9138,11 @@ msgstr "Тозалаш"
msgid "Columns"
msgstr "Майдон номлари"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Ушбу SQL сўровига хатчўп тузиш"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Барча фойдаланувчиларга рухсат бериш"
@@ -9087,10 +9166,6 @@ msgstr "Ушбу сўровни қайта кўрсатиш"
msgid "View only"
msgstr "Фақат кўриш"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Юклаш каталогидан"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -9303,12 +9378,6 @@ msgstr "Оператор"
msgid "Table Search"
msgstr "Қидириш"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Қўйиш"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9583,7 +9652,7 @@ msgstr "Протокол версияси"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Фойдаланувчи"
@@ -9835,10 +9904,6 @@ msgstr "Барча жадвалларни яшириш/кўрсатиш"
msgid "Hide/Show Tables with no relation"
msgstr "Алоқа мавжуд бўлмаган жадвалларни яшириш/кўрсатиш"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Яшириш"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Жадваллар сони"
@@ -10065,17 +10130,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!"
msgid "Select binary log to view"
msgstr "Кўриш учун бинар журнални танланг"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Файллар сони"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "Сўровларни қисқартириб кўрсатиш"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "Сўровларнинг кенгайтирилган кўриниши"
@@ -10535,8 +10600,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@@ -10667,7 +10732,7 @@ msgstr "Бош репликация сервери қуйидагига ўзга
msgid "This server is configured as master in a replication process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Уланган бош серверларни кўрсатиш"
@@ -10828,163 +10893,163 @@ msgstr ""
"Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация "
"қилинмаган. Сиз уни конфигурация қилмоқчимисиз?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "\"%s\" жараёни муваффақиятли якунланди."
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ."
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "Қайта ишловчи дастур"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "Сўровлар кеши"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Оқимлар"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Вақтинчалик маълумотлар"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Кечиктирилган қўйилмалар"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Индекс кеши"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Бирлашишлар"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Сортировка"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Транзакциялар координатори"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Барча жадвалларни ёпиш"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Тобе серверлар ҳақида маълумот"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Репликация сервери аҳволи ҳақида маълумот"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "Сўровлар кешини дефрагментация қилиш"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "MySQL-сервернинг ҳозирги ҳолати"
-#: server_status.php:790
+#: server_status.php:793
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Тобе сервер статуси жадвалини кўриш"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Янгилаш"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Фильтр"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Паролни ўзгартирмаслик"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Очиқ жадваллар рўйхати"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Алоқалар"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "Сўров тури"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Функциялар"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10992,33 +11057,33 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Бошланғич саҳифани созлаш"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Тавсиф"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"."
-#: server_status.php:1073
+#: server_status.php:1076
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -11026,19 +11091,19 @@ msgid ""
"b> process."
msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган."
-#: server_status.php:1075
+#: server_status.php:1078
#, 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:1077
+#: server_status.php:1080
#, 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:1080
+#: server_status.php:1083
#, fuzzy
#| msgid ""
#| "s MySQL server works as %s in replication process. For further "
@@ -11052,11 +11117,11 @@ msgstr ""
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Репликация статуси"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -11064,47 +11129,47 @@ msgstr ""
"Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг "
"учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Қабул қилинди"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Юборилди"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Максимал уланишлар сони"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Муваффақиятсиз уринишлар сони"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Узилди"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Буйруқ"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -11113,16 +11178,16 @@ msgstr ""
"Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз "
"ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони."
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Бинар журнал кешини ишлатган транзакциялар сони."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -11135,11 +11200,11 @@ msgstr ""
"сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини "
"ошириш тавсия этилади."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -11147,7 +11212,7 @@ msgstr ""
"Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик "
"тузилган вақтинчалик жадваллар сони."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -11155,31 +11220,31 @@ msgstr ""
"\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар "
"(масалан, калитлар такрорланиши оқибатида) сони."
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган "
"қаторлар сони."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Бажарилган \"FLUSH\" буйруқлар сони."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Ички \"COMMIT\" буйруқлари сони."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -11189,7 +11254,7 @@ msgstr ""
"бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган "
"жадваллар сони."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -11198,7 +11263,7 @@ msgstr ""
"Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати "
"катта бўлса, сервер бир неча маротиба индексни кўриб чиқади."
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -11207,7 +11272,7 @@ msgstr ""
"Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан "
"далолат беради."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -11217,7 +11282,7 @@ msgstr ""
"Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш "
"вақтида ўзгарувчи қиймати ошади."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -11226,7 +11291,7 @@ msgstr ""
"бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... "
"DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -11239,7 +11304,7 @@ msgstr ""
"чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри "
"фойдаланадиган бирлашмаларнинг мавжудлиги."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -11251,35 +11316,35 @@ msgstr ""
"индексланганлигини ёки сўровлар индексларнинг афзалликларидан "
"фойдаланмаётганлигини билдиради."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ички буйруқлар сони."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони."
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони."
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "\"Кир\" саҳифаларнинг жорий сони."
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони."
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Бўш саҳифалар сони."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -11289,7 +11354,7 @@ msgstr ""
"устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра "
"тозалаш ёки ўчириш имконияти йўқ."
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -11301,11 +11366,11 @@ msgstr ""
"\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -11314,7 +11379,7 @@ msgstr ""
"сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй "
"беради."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -11323,12 +11388,12 @@ msgstr ""
"сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй "
"беради"
-#: server_status.php:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr ""
"InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони."
-#: server_status.php:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -11336,7 +11401,7 @@ msgstr ""
"InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга "
"бўлган кетма-кет сўровлар сони."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -11349,51 +11414,51 @@ msgstr ""
"Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми "
"тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Тугалланмаган \"fsync()\" операциялари сони."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Тугалланмаган ўқиш операциялари сони."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Тугалланмаган ёзиш операциялари сони."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Умумий маълумотларни ўқиш операциялари сони."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Умумий маълумотларни ёзиш операциялари сони."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Бажарилган \"doublewrite\" операциялари сони."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -11401,35 +11466,35 @@ msgstr ""
"Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган "
"ёзувлар сони"
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Журналга ёзишга бўлган сўровларсони."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Журнал файлидаги жисмоний ёзувлар сони."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Тугалланмаган журналга ёзиш сўровлари сони."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Тузилган саҳифалар сони."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -11438,51 +11503,51 @@ msgstr ""
"Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, "
"уларни байтларга ўтказиш мумкин."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "Ўқилган саҳифалар сони."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Ёзилган саҳифалар сони."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Ҳозирда кутилаётган қатор блокировкалари сони."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Умумий кутилаётган қатор блокировкалари сони."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB жадвалидан ўчирилган қаторлар сони."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB жадвалига ёзилган қаторлар сони."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB жадвалларидан ўқилган қаторлар сони."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB жадвалларида янгиланган қаторлар сони."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11490,7 +11555,7 @@ msgstr ""
"Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. "
"Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум."
-#: server_status.php:1385
+#: server_status.php:1388
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."
@@ -11498,7 +11563,7 @@ msgstr ""
"Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши "
"ишлатилиш даражасини белгилайди."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -11507,17 +11572,17 @@ msgstr ""
"Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида "
"ишлатилиши мумкин бўлган блоклар сонини билдиради."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Импорт қилинаётган файл формати"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони."
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -11528,26 +11593,26 @@ msgstr ""
"қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти "
"қуйидагича ҳисобланди: Key_reads/Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони."
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11558,19 +11623,19 @@ msgstr ""
"эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров "
"компиляция жараёни бажарилмаганлигини билдиради."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr ""
"Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" "
"сўровларида қўйилишини кутаётган қаторлар сони."
-#: server_status.php:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11578,42 +11643,42 @@ msgstr ""
"Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта "
"бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Очиқ файллар сони."
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
-"()\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
+"\" функцияси ёрдамида очилган файлга айтилади."
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Очиқ жадваллар сони."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "Сўровлар кеши учун бўш хотира ҳажми"
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr ""
"Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан "
"қониқтирилган сўровлар сони."
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "Сўровлар кешига қўшилган сўровлар сони."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11625,7 +11690,7 @@ msgstr ""
"кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги "
"ишлатилган) стратегиясидан фойдаланади"
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11633,19 +11698,19 @@ msgstr ""
"Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида "
"сўндирилган сўровлар сони."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Кешда регистрация қилинган сўровлар сони."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11653,13 +11718,13 @@ msgstr ""
"Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати "
"0 бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr ""
"Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда "
"бажарилган бирлашма сўровлар сони."
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -11668,7 +11733,7 @@ msgstr ""
"ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 "
"бўлмаса, жадвал индексларини текшириш тавсия этилади."
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11677,17 +11742,17 @@ msgstr ""
"сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса "
"ҳам, унчалик муҳим эмас."
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr ""
"Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган "
"бирлашма сўровлар сони."
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони."
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11695,13 +11760,13 @@ msgstr ""
"Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта "
"транзакцияларнинг умумий сони."
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr ""
"Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган "
"бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади."
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11709,12 +11774,12 @@ msgstr ""
"Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар "
"сони."
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони."
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11724,25 +11789,25 @@ msgstr ""
"қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш "
"зарур."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Сортировка қилинган қаторлар сони"
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr ""
"Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари "
"сони."
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони."
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11754,7 +11819,7 @@ msgstr ""
"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11765,11 +11830,11 @@ msgstr ""
"ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" "
"ўзгарувчисининг қийматини ошириш зарур."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Очиқ жорий уланишлар сони."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11781,74 +11846,74 @@ msgstr ""
"ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам "
"оширмайди)."
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Кузатиш фаол эмас."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Фаол ҳолатда бўлган жараёнлар сони."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Бошлаш"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Индекс(лар)ни сақлаш"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Янгилаш"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR майдонидаги устунлар сони"
-#: server_status.php:1624
+#: server_status.php:1627
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Хатоликларни бошқариш:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Асл қийматларни тиклаш"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11857,7 +11922,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11865,18 +11930,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11884,11 +11949,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11896,104 +11961,104 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: server_status.php:1677
+#: server_status.php:1680
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Тобе сервер статуси жадвалини кўриш"
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Жадвалларни танланг"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Жадвал номи нотўғри"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Янги фойдаланувчи қўшиш"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL сўровлари"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Статискани кўрсатиш"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Жадвалларни танланг"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "Сўров тури"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "секундига"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -12131,7 +12196,7 @@ msgstr "Сессия қийматлари"
msgid "Global value"
msgstr "Глобал қиймат"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Юклаб олиш"
@@ -12208,39 +12273,39 @@ msgstr "Биронта ҳам конфигурацияланган сервер
msgid "New server"
msgstr "Янги сервер"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Тил"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "фойдаланувчига танлаш имконини бериш"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- йўқ -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Сервер"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Сатр охири"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Кўрсатиш"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Юклаш"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin сайти"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Садақа"
@@ -12521,55 +12586,46 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус
msgid "Wrong data"
msgstr "Маълумотлар базаси мавжуд эмас"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Ташқи қийматларни кўриб чиқиш"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Киритилган қатор идентификатори: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP-код сифатида кўрсатиш"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL-сўровни кўрсатиш"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL тўғрилигини текшириш"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL сўрови натижаси"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Тузилган"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Хатчўп белгиси"
@@ -12584,60 +12640,6 @@ msgstr "%1$s жадвали муваффақиятли ўзгартирилди"
msgid "The columns have been moved successfully."
msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Маълумотлар кўплиги сабали ўзгартириш қийишлашиши мумкин"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Ёзув киритиш"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Киритилган сўровни кўрсатиш"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "ва сўнг"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Олдинги саҳифага ўтиш"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Янги ёзув киритиш"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Ушбу саҳифага қайтиш"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Кейинги қаторни таҳрирлаш"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Қўйилаётган қаторлар сони: \"%s\""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -13305,38 +13307,44 @@ msgstr "Ушбу маълумотлар бошқаруви операторла
msgid "Create version"
msgstr "Версиясини тузиш"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL сўровлари қутиси"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Кўрсатиладиган қаторларнинг максимал сони"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Назорат фойдаланувчиси"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Тозалаш"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Кўпроқ мавзуга эга бўлинг!"
@@ -13709,8 +13717,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13845,8 +13853,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14835,9 +14843,6 @@ msgstr "Максимал уланишлар сони "
#~ msgid "No trigger with name %s found"
#~ msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!"
-#~ msgid "rows"
-#~ msgstr "Кўриб чиқиш"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "та қатор қуйидаги қатордан бошлаб "
@@ -14904,8 +14909,8 @@ msgstr "Максимал уланишлар сони "
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Тахминий бўлиши мумкин. [a@./Documentation."
-#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
+#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]"
+#~ "\"FAQ 3.11\"[/a]га қаранг"
#~ msgid "Add a New User"
#~ msgstr "Янги фойдаланувчи қўшиш"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 075179c211..7dc2a7ec1c 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-03-14 14:57+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: uzbek_latin \n"
-"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 0.6\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "Barchasini ko‘rsatish"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "Barchasini ko‘rsatish"
msgid "Page number:"
msgstr "Sahifa raqami:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -38,21 +38,22 @@ msgstr ""
"yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka "
"qilmoqda"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "Qidirish"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -68,28 +69,27 @@ msgstr "Qidirish"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "OK"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "Indeks nomi"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "Tavsifi"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "Ushbu qiymatni ishlatish"
@@ -120,12 +120,12 @@ msgstr "Jadval izohi"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
#, fuzzy
#| msgid "Column names"
msgid "Column"
@@ -136,6 +136,7 @@ msgstr "Maydon nomlari"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -143,9 +144,9 @@ msgstr "Maydon nomlari"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "Tur"
@@ -153,12 +154,12 @@ msgstr "Tur"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "Null"
@@ -197,13 +198,13 @@ msgstr "Izohlar"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -214,19 +215,19 @@ msgstr "Yo‘q"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -368,7 +369,7 @@ msgstr "Jadval"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "Qatorlarsoni"
@@ -421,28 +422,28 @@ msgid "Switch to %svisual builder%s"
msgstr "Nusxa olingan jadvalga o‘tish"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "Sortirovka qilish"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "O‘sish tartibida"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "Kamayish tartibida"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "Ko‘rsatish"
@@ -463,8 +464,8 @@ msgid "Del"
msgstr "O‘chirish"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "Yoki"
@@ -538,8 +539,8 @@ msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "Ko‘rib chiqish"
@@ -549,14 +550,14 @@ msgstr "Ko‘rib chiqish"
msgid "Delete the matches for the %s table?"
msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "O‘chirish"
@@ -634,11 +635,11 @@ msgstr "Kuzatish faol."
msgid "Tracking is not active."
msgstr "Kuzatish faol emas."
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -650,7 +651,7 @@ msgstr "Namoyish"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "Replikatsiya (zaxira nusxa ko‘chirish)"
@@ -664,20 +665,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "Belgilanganlarni:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "Barchasini belgilash"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -689,27 +690,27 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "Eksport"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "Chop etish versiyasi"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "Tozalash"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -737,13 +738,13 @@ msgstr "Jadval tahlili"
msgid "Add prefix to table"
msgstr "Ushbu jadvalga o‘tish"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
@@ -764,8 +765,8 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "Ma`lumotlar bazasi"
@@ -783,7 +784,7 @@ msgstr "Yangilandi"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "Holat"
@@ -889,49 +890,49 @@ msgstr ""
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add a point"
msgstr "Indеks(lar)ni saqlash"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "Qatorlar bo‘luvchisi"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -941,17 +942,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr ""
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add column(s)"
msgid "Add a polygon"
@@ -976,8 +977,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -1028,7 +1029,7 @@ msgstr ""
"Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/"
"export katalogini tekshiring."
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "\"%s\" xatcho‘pi tuzildi"
@@ -1057,7 +1058,7 @@ msgstr ""
"phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi."
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1074,7 +1075,7 @@ msgstr ""
"phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer "
"kerak."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr ""
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
@@ -1085,7 +1086,7 @@ msgstr ""
msgid "Do you really want to execute \"%s\"?"
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
@@ -1191,23 +1192,23 @@ msgstr "Yopish"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "Tahrirlash"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
#, fuzzy
#| msgid "Server Choice"
msgid "Live traffic chart"
msgstr "Serverni tanlang"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr ""
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
#, fuzzy
#| msgid "SQL Query box"
msgid "Live query chart"
@@ -1220,23 +1221,23 @@ msgstr ""
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "Jami"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr ""
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr ","
@@ -1258,7 +1259,7 @@ msgstr "Serverni tanlang"
msgid "Connections since last refresh"
msgstr ""
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "Jarayonlar"
@@ -1278,7 +1279,7 @@ msgstr ""
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
#, fuzzy
#| msgid "Show statistics"
msgid "Query statistics"
@@ -1329,14 +1330,14 @@ msgid "System swap"
msgstr ""
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1398,32 +1399,32 @@ msgstr ""
msgid "Bytes received"
msgstr "Qabul qilindi"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "Ulanishlar"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "Bayt"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1440,11 +1441,11 @@ msgstr "Jadvallar soni: \"%s\""
msgid "Questions"
msgstr "Vеrsiyalar"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "Trafik"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
#, fuzzy
#| msgid "settings"
msgid "Settings"
@@ -1471,10 +1472,10 @@ msgid "Please add at least one variable to the series"
msgstr ""
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "Yo‘q"
@@ -1574,7 +1575,7 @@ msgstr "Boshqa sozlanishlar"
msgid "Current settings"
msgstr "tanlovlar"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title"
msgid "Chart Title"
@@ -1666,9 +1667,9 @@ msgstr "Tahlil"
msgid "Explain output"
msgstr "So‘rov tahlili"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "Vaqt"
@@ -1781,7 +1782,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "Import"
@@ -1934,19 +1935,19 @@ msgstr "Indеks(lar)ni saqlash"
msgid "Show indexes"
msgstr "To‘rni ko‘rsatish"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "Tashqi kalitlarni tekshirishni o‘chirish"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "Faollashtirilgan"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -2032,7 +2033,7 @@ msgid "No rows selected"
msgstr ""
"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak."
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "O‘zgartirish"
@@ -2043,17 +2044,18 @@ msgstr "O‘zgartirish"
msgid "Query execution time"
msgstr "Maksimum bajarilish vaqti"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d soni to‘g‘ri qator raqami emas!"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "Saqlash"
@@ -2084,183 +2086,175 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Select two columns"
msgstr "Ustun qo‘shish/o‘chirish"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "So‘rov natijalarini ishlatish"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "E`tibor bermaslik"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr ""
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Ustun(lar) qo‘shish"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "Bog‘liq kalitni tanlang"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "Tashqi kalitni tanlang"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr ""
"Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "Ko‘rsatiladigan maydonni tanlash"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr ""
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Tanlash uchun sichqoncha tugmasini bosing"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
msgstr "Ushbu ko‘rinishga o‘tish"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "Maydon nomlari"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "Qator(lar)ni yangilash"
-#: js/messages.php:367
+#: js/messages.php:363
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Parol o‘rnatish"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "Generatsiya qilish"
-#: js/messages.php:369
+#: js/messages.php:365
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "Parolni o‘zgartirish"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "Dush"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2271,33 +2265,33 @@ msgstr ""
"sanada chiqarilgan."
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Oxirgi versiyani tekshirish"
-#: js/messages.php:378
+#: js/messages.php:374
#, fuzzy
#| msgid "Go to database"
msgid "up to date"
msgstr "Ushbu bazaga o‘tish"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Sadaqa"
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Previous"
msgctxt "Previous month"
msgid "Prev"
msgstr "Orqaga"
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2305,96 +2299,96 @@ msgid "Next"
msgstr "Keyingi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jami"
-#: js/messages.php:413
+#: js/messages.php:409
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Ikkilik"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr ""
-#: js/messages.php:415
+#: js/messages.php:411
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:416
+#: js/messages.php:412
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "May"
-#: js/messages.php:418
+#: js/messages.php:414
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iyun"
-#: js/messages.php:419
+#: js/messages.php:415
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iyul"
-#: js/messages.php:420
+#: js/messages.php:416
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avg"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr ""
-#: js/messages.php:422
+#: js/messages.php:418
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr ""
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -2402,78 +2396,78 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:459
+#: js/messages.php:455
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Yaksh"
-#: js/messages.php:460
+#: js/messages.php:456
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dush"
-#: js/messages.php:461
+#: js/messages.php:457
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sesh"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr ""
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr ""
-#: js/messages.php:464
+#: js/messages.php:460
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
#, fuzzy
#| msgctxt "Short week day name"
#| msgid "Sun"
@@ -2481,115 +2475,115 @@ msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "Shan"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Yaksh"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dush"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sesh"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Chor"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pay"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Shan"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "Yo‘q"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr ""
-#: js/messages.php:522
+#: js/messages.php:518
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ishlatilmoqda"
-#: js/messages.php:523
+#: js/messages.php:519
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2644,16 +2638,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "sekundiga"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "minutiga"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "soatiga"
@@ -2784,15 +2778,15 @@ msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
msgid "Databases"
msgstr "Ma`lumotlar bazalari"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "Server"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2804,20 +2798,20 @@ msgid "Structure"
msgstr "Tuzilishi"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "Qo‘yish"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "Operatsiyalar"
@@ -2877,12 +2871,12 @@ msgstr "Foydalanuvchi"
msgid "Synchronize"
msgstr "Sinxronizatsiya qilish"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "Ikkilik jurnal"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "O‘zgaruvchilar"
@@ -2899,8 +2893,9 @@ msgid "Engines"
msgstr "Jadval turlari"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "Xatolik"
@@ -3028,35 +3023,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "Oldindan ko‘rish mumkin emas."
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "Tadbiq qilish"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "\"%s\" asl mavzusi topilmadi!"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "\"%s\" mavzusi topilmadi!"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "\"%s\" mavzusi fayllariga yo‘l topilmadi!"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr ""
@@ -3097,14 +3092,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3364,8 +3359,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -3476,7 +3471,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "Jadvallar"
@@ -3533,25 +3528,25 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Cannot load or save configuration"
msgid "Failed to read configuration file"
msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, fuzzy, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi."
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3563,26 +3558,26 @@ msgstr ""
"$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda "
"sozlanishi SHART!"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Server raqami noto‘g‘ri: \"%s\""
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
" %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin "
"konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr ""
"phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli "
"belgilangan:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
@@ -3617,8 +3612,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL so‘rovi"
@@ -3658,7 +3653,7 @@ msgid "Create PHP Code"
msgstr "PHP-kod"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "Yangilash"
@@ -3681,43 +3676,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "Jadval turlari"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "Profillashtirish"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "Yaksh"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%d %B %Y y., %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, 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:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "Muolajalar"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "Boshi"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3725,8 +3720,8 @@ msgctxt "Previous page"
msgid "Previous"
msgstr "Orqaga"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3734,57 +3729,57 @@ msgctxt "Next page"
msgid "Next"
msgstr "Keyingi"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "Oxiri"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "\"%s\" ma`lumotlar bazasiga o‘tish"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, 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:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Tanlash uchun sichqoncha tugmasini bosing"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr ""
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, fuzzy, php-format
#| msgid "web server upload directory"
msgid "Select from the web server upload directory %s:"
msgstr "Yuklash katalogidan"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr ""
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr ""
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "Chop etish"
@@ -3969,9 +3964,9 @@ msgstr "Asl qiymatlarni tiklash"
msgid "Allow users to customize this value"
msgstr ""
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "Tozalash"
@@ -4142,7 +4137,7 @@ msgid "Compress on the fly"
msgstr "Biryo‘la qisish"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "Konfiguratsion fayl"
@@ -4208,7 +4203,7 @@ msgstr "Jadval tuzilishi tahlili"
msgid "Show binary contents as HEX by default"
msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish"
@@ -5564,9 +5559,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
-"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
-"com/19588]\"MySQL Bugs\"[/a]larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
+"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
+"larga qarang"
#: libraries/config/messages.inc.php:394
msgid "Disable use of INFORMATION_SCHEMA"
@@ -5668,8 +5663,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:413
msgid "PDF schema: pages table"
@@ -5683,8 +5678,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
-"[kbd]\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
+"\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:415
#, fuzzy
@@ -5776,8 +5771,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
-"[kbd]\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
+"\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:432
msgid "PDF schema: table coordinates"
@@ -6242,7 +6237,7 @@ msgstr ""
msgid "Enable the Developer tab in settings"
msgstr ""
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "Oxirgi versiyani tekshirish"
@@ -6404,7 +6399,7 @@ msgstr ""
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -6412,27 +6407,27 @@ msgid ""
"configured)."
msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "Server javob bermayapti"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "Tafsilotlar..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation."
-"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+"\"FAQ 3.11\"[/a]ga qarang"
#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120
#: libraries/dbi/mysqli.dbi.lib.php:192
@@ -6619,12 +6614,12 @@ msgstr ""
#, fuzzy, php-format
#| msgid ""
#| "s value is interpreted using %1$sstrftime%2$s, so you can use time "
-#| "matting strings. Additionally the following transformations will pen: "
-#| "%3$s. Other text will be kept as is."
+#| "matting strings. Additionally the following transformations will pen: %3"
+#| "$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -6849,58 +6844,63 @@ msgstr ""
msgid "Language"
msgstr "Til"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "Saqlash direktoriyasi"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Restore column order"
msgstr "CHAR maydonidagi ustunlar soni"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr "Boshlash"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of fields"
msgid "Number of rows"
msgstr "Maydonlar soni "
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "Mon"
msgid "Mode"
msgstr "Dush"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "gorizontal"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "gorizontal (aylantirilgan sarlavhalar)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "vertikal"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
-msgstr ""
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Execute bookmarked query"
+msgid "Headers every"
+msgstr "Belgilangan so‘rovni bajarish"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "Ko‘rib chiqish"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "Indeks bo‘yicha sortirovka qilish"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6918,101 +6918,101 @@ msgstr "Indeks bo‘yicha sortirovka qilish"
msgid "Options"
msgstr "Parametrlar"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
#, fuzzy
#| msgid "Partial Texts"
msgid "Partial texts"
msgstr "Ma`lumotlarni qisqartirib ko‘rsatish"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
#, fuzzy
#| msgid "Full Texts"
msgid "Full texts"
msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "Aloqador kalit"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
#, fuzzy
#| msgid "Relational display field"
msgid "Relational display column"
msgstr "Aloqador maydon qiymati"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "Ikkilik ma`lumotlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "O‘girish"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "Tugatish"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "so‘rov bo‘yicha"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "Yozuvlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "jami"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "So‘rov %01.4f sekund vaqt oldi"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "So‘rov natijalarini ishlatish"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "Chop etish versiyasi (to‘la)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
#, fuzzy
#| msgid "Display PDF schema"
msgid "Display chart"
msgstr "PDF-sxemani ko‘rsatish"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
#, fuzzy
#| msgid "Create version"
msgid "Create view"
msgstr "Vеrsiyasini tuzish"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "Aloqa topilmadi"
@@ -7061,7 +7061,7 @@ msgstr ""
msgid "Buffer Pool"
msgstr "Bufer puli"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB ahvoli"
@@ -7357,8 +7357,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:130
@@ -7509,12 +7509,12 @@ msgstr "Mavjud MIME turlari"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "Xost"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "Tuzilgan sana"
@@ -7728,8 +7728,8 @@ msgstr ""
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)."
@@ -7924,6 +7924,103 @@ msgstr "SQL bilan moslik rejimi"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "Funksiya"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "Yashirish"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "Ikkilik"
+
+#: libraries/insert_edit.lib.php:593
+#, fuzzy
+#| msgid "Because of its length, this field might not be editable "
+msgid "Because of its length, this column might not be editable"
+msgstr "Ma`lumotlar ko‘pligi sabali o‘zgartirish qiyishlashishi mumkin"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "Yuklash katalogidan"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "Qo‘yish"
+
+#: libraries/insert_edit.lib.php:1250
+#, fuzzy, php-format
+#| msgid "Restart insertion with %s rows"
+msgid "Continue insertion with %s rows"
+msgstr "Qo‘yilayotgan qatorlar soni: \"%s\""
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "va so‘ng"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "Yozuv kiritish"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "Kiritilgan so‘rovni ko‘rsatish"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "Oldingi sahifaga o‘tish"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "Yangi yozuv kiritish"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "Ushbu sahifaga qaytish"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "Keyingi qatorni tahrirlash"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+"Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan "
+"foydalaning"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "Qiymati"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "SQL-so‘rovni ko‘rsatish"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "Kiritilgan qator identifikatori: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
#, fuzzy
#| msgid "None"
@@ -7936,38 +8033,38 @@ msgstr "Yo‘q"
msgid "Convert to Kana"
msgstr ""
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Jum"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "Bajarish"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add prefix"
msgstr "Indеks(lar)ni saqlash"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "O‘zgarish yo‘q"
@@ -7975,11 +8072,6 @@ msgstr "O‘zgarish yo‘q"
msgid "Charset"
msgstr "Kodirovka"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "Ikkilik"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "Bolgarcha"
@@ -8322,18 +8414,10 @@ msgid "Slave status"
msgstr "Tobе rеplikatsiya sеrvеri statusi"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "O‘zgaruvchi"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "Qiymati"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "Server ID si"
@@ -8698,11 +8782,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "Muolajalar"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "Funksiya"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -9080,7 +9159,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "Tozalash"
@@ -9090,11 +9169,11 @@ msgstr "Tozalash"
msgid "Columns"
msgstr "Maydon nomlari"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "Barcha foydalanuvchilarga ruxsat berish"
@@ -9118,10 +9197,6 @@ msgstr "Ushbu so‘rovni qayta ko‘rsatish"
msgid "View only"
msgstr "Faqat ko‘rish"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "Yuklash katalogidan"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -9336,12 +9411,6 @@ msgstr "Operator"
msgid "Table Search"
msgstr "Qidirish"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "Qo‘yish"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -9619,7 +9688,7 @@ msgstr "Protokol versiyasi"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "Foydalanuvchi"
@@ -9873,10 +9942,6 @@ msgstr "Barcha jadvallarni yashirish/ko‘rsatish"
msgid "Hide/Show Tables with no relation"
msgstr "Aloqa mavjud bo‘lmagan jadvallarni yashirish/ko‘rsatish"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "Yashirish"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "Jadvallar soni"
@@ -10103,17 +10168,17 @@ msgstr "\"%s\" jadvali mavjud emas!"
msgid "Select binary log to view"
msgstr "Ko‘rish uchun binar jurnalni tanlang"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "Fayllar soni"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "So‘rovlarni qisqartirib ko‘rsatish"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "So‘rovlarning kengaytirilgan ko‘rinishi"
@@ -10579,8 +10644,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@@ -10713,7 +10778,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:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish"
@@ -10875,164 +10940,164 @@ msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya "
"qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi."
-#: server_status.php:470
+#: server_status.php:473
#, 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:602
+#: server_status.php:605
msgid "Handler"
msgstr "Qayta ishlovchi dastur"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "So‘rovlar keshi"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "Oqimlar"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "Vaqtinchalik ma`lumotlar"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "Kechiktirilgan qo‘yilmalar"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "Indeks keshi"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "Birlashishlar"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "Sortirovka"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "Tranzaksiyalar koordinatori"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "Barcha jadvallarni yopish"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "Tobe serverlar haqida ma`lumot"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "Replikatsiya serveri ahvoli haqida ma`lumot"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "So‘rovlar keshini defragmentatsiya qilish"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "MySQL-serverning hozirgi holati"
-#: server_status.php:790
+#: server_status.php:793
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "Yangilash"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "Filtr"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Parolni o‘zgartirmaslik"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "Ochiq jadvallar ro‘yxati"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Relations"
msgid "Related links:"
msgstr "Aloqalar"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "So‘rov turi"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
#| msgid "Functions"
msgid "Instructions"
msgstr "Funksiyalar"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -11040,34 +11105,34 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "Boshlang‘ich sahifani sozlash"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "Tavsif"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr ""
"MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"."
-#: server_status.php:1073
+#: server_status.php:1076
#, fuzzy
#| msgid "This server is configured as master in a replication process."
msgid ""
@@ -11076,21 +11141,21 @@ msgid ""
msgstr ""
"Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan."
-#: server_status.php:1075
+#: server_status.php:1078
#, 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:1077
+#: server_status.php:1080
#, 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:1080
+#: server_status.php:1083
#, fuzzy
#| msgid ""
#| "s MySQL server works as %s in replication process. For further "
@@ -11105,11 +11170,11 @@ msgstr ""
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
"kiring."
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "Replikatsiya statusi"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -11118,47 +11183,47 @@ msgstr ""
"shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi "
"mumkin."
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "Qabul qilindi"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "Yuborildi"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "Maksimal ulanishlar soni"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "Muvaffaqiyatsiz urinishlar soni"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "Uzildi"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "Buyruq"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -11167,16 +11232,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:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni."
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -11189,11 +11254,11 @@ msgstr ""
"saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini "
"oshirish tavsiya etiladi."
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni."
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
@@ -11201,7 +11266,7 @@ msgstr ""
"Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik "
"tuzilgan vaqtinchalik jadvallar soni."
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -11209,31 +11274,31 @@ msgstr ""
"\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar "
"(masalan, kalitlar takrorlanishi oqibatida) soni."
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr ""
"Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan "
"qatorlar soni."
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "Bajarilgan \"FLUSH\" buyruqlar soni."
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "Ichki \"COMMIT\" buyruqlari soni."
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni."
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -11243,7 +11308,7 @@ msgstr ""
"berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan "
"jadvallar soni."
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -11252,7 +11317,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:1333
+#: server_status.php:1336
msgid ""
"The number of requests to read a row based on a key. If this is high, it is "
"a good indication that your queries and tables are properly indexed."
@@ -11261,7 +11326,7 @@ msgstr ""
"soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri "
"indekslanganidan dalolat beradi."
-#: server_status.php:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -11271,7 +11336,7 @@ msgstr ""
"soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib "
"chiqish vaqtida o‘zgaruvchi qiymati oshadi."
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -11280,7 +11345,7 @@ msgstr ""
"o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun "
"qo‘llaniladi: ORDER BY ... DESC."
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -11294,7 +11359,7 @@ msgstr ""
"bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning "
"mavjudligi."
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -11306,35 +11371,35 @@ msgstr ""
"jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning "
"afzalliklaridan foydalanmayotganligini bildiradi."
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "ROLLBACK ichki buyruqlar soni."
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni."
-#: server_status.php:1340
+#: server_status.php:1343
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:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")."
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "\"Kir\" sahifalarning joriy soni."
-#: server_status.php:1343
+#: server_status.php:1346
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:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "Bo‘sh sahifalar soni."
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -11344,7 +11409,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:1346
+#: server_status.php:1349
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 "
@@ -11356,11 +11421,11 @@ msgstr ""
"mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data\"."
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "Bufer pulining umumiy hajmi (sahifalarda)."
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -11369,7 +11434,7 @@ msgstr ""
"o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib "
"chiqayotganda ro‘y beradi."
-#: server_status.php:1349
+#: server_status.php:1352
msgid ""
"The number of sequential read-aheads InnoDB initiated. This happens when "
"InnoDB does a sequential full table scan."
@@ -11378,12 +11443,12 @@ msgstr ""
"soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda "
"ro‘y beradi"
-#: server_status.php:1350
+#: server_status.php:1353
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:1351
+#: server_status.php:1354
msgid ""
"The number of logical reads that InnoDB could not satisfy from buffer pool "
"and had to do a single-page read."
@@ -11391,7 +11456,7 @@ msgstr ""
"InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan "
"o‘qishga bo‘lgan ketma-ket so‘rovlar soni."
-#: server_status.php:1352
+#: server_status.php:1355
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 "
@@ -11405,51 +11470,51 @@ msgstr ""
"bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta "
"bo‘lmasligi kerak."
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni."
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni."
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni."
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "Tugallanmagan o‘qish operatsiyalari soni."
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "Tugallanmagan yozish operatsiyalari soni."
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni."
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni."
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)."
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni."
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni."
-#: server_status.php:1364
+#: server_status.php:1367
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."
@@ -11457,35 +11522,35 @@ msgstr ""
"Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi "
"kutayotgan yozuvlar soni"
-#: server_status.php:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni."
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "Jurnal faylidagi jismoniy yozuvlar soni."
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni."
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni."
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni."
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)."
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "Tuzilgan sahifalar soni."
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -11494,51 +11559,51 @@ msgstr ""
"Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, "
"ularni baytlarga o‘tkazish mumkin."
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "O‘qilgan sahifalar soni."
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "Yozilgan sahifalar soni."
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "Hozirda kutilayotgan qator blokirovkalari soni."
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)."
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)."
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)."
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "Umumiy kutilayotgan qator blokirovkalari soni."
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni."
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "InnoDB jadvaliga yozilgan qatorlar soni."
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni."
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB jadvallarida yangilangan qatorlar soni."
-#: server_status.php:1384
+#: server_status.php:1387
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."
@@ -11546,7 +11611,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:1385
+#: server_status.php:1388
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."
@@ -11554,7 +11619,7 @@ msgstr ""
"Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi "
"ishlatilish darajasini belgilaydi."
-#: server_status.php:1386
+#: server_status.php:1389
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 "
@@ -11563,17 +11628,17 @@ msgstr ""
"Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning "
"o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi."
-#: server_status.php:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "Import qilinayotgan fayl formati"
-#: server_status.php:1388
+#: server_status.php:1391
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:1389
+#: server_status.php:1392
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 "
@@ -11585,26 +11650,26 @@ msgstr ""
"murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/"
"Key_read_requests."
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
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:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni."
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -11615,19 +11680,19 @@ msgstr ""
"effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov "
"kompilyatsiya jarayoni bajarilmaganligini bildiradi."
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
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:1397
+#: server_status.php:1400
msgid ""
"The number of tables that have been opened. If opened tables is big, your "
"table cache value is probably too small."
@@ -11635,42 +11700,42 @@ msgstr ""
"Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta "
"bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi."
-#: server_status.php:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "Ochiq fayllar soni."
-#: server_status.php:1399
+#: server_status.php:1402
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:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "Ochiq jadvallar soni."
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi"
-#: server_status.php:1403
+#: server_status.php:1406
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:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni."
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -11682,7 +11747,7 @@ msgstr ""
"beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least "
"Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi"
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -11690,19 +11755,19 @@ msgstr ""
"Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida "
"so‘ndirilgan so‘rovlar soni."
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "Keshda registratsiya qilingan so‘rovlar soni."
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni."
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)."
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -11710,13 +11775,13 @@ msgstr ""
"Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi "
"qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi."
-#: server_status.php:1411
+#: server_status.php:1414
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:1412
+#: server_status.php:1415
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.)"
@@ -11726,7 +11791,7 @@ msgstr ""
"o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya "
"etiladi."
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -11735,17 +11800,17 @@ msgstr ""
"birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda "
"katta bo‘lsa ham, unchalik muhim emas."
-#: server_status.php:1414
+#: server_status.php:1417
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:1415
+#: server_status.php:1418
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:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
@@ -11753,13 +11818,13 @@ msgstr ""
"Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan "
"qayta tranzaksiyalarning umumiy soni."
-#: server_status.php:1417
+#: server_status.php:1420
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:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
@@ -11767,12 +11832,12 @@ msgstr ""
"Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan "
"oqimlar soni."
-#: server_status.php:1419
+#: server_status.php:1422
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:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -11782,26 +11847,26 @@ msgstr ""
"o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining "
"qiymatini oshirish zarur."
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni."
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "Sortirovka qilingan qatorlar soni"
-#: server_status.php:1423
+#: server_status.php:1426
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:1424
+#: server_status.php:1427
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:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -11814,7 +11879,7 @@ msgstr ""
"so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish "
"kerak."
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -11825,11 +11890,11 @@ msgstr ""
"Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda "
"\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur."
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "Ochiq joriy ulanishlar soni."
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -11841,74 +11906,74 @@ msgstr ""
"o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik "
"ham oshirmaydi)."
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "Kuzatish faol emas."
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "Faol holatda bo‘lgan jarayonlar soni."
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Start"
msgid "Start Monitor"
msgstr "Boshlash"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Apply index(s)"
msgid "Add chart"
msgstr "Indеks(lar)ni saqlash"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "Yangilash"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "CHAR textarea columns"
msgid "Chart columns"
msgstr "CHAR maydonidagi ustunlar soni"
-#: server_status.php:1624
+#: server_status.php:1627
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "Xatoliklarni boshqarish:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "Asl qiymatlarni tiklash"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr ""
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -11917,7 +11982,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -11925,18 +11990,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -11944,11 +12009,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -11956,104 +12021,104 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Rename database to"
msgid "Preset chart"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: server_status.php:1677
+#: server_status.php:1680
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "Tobе sеrvеr statusi jadvalini ko‘rish"
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "Jadvallarni tanlang"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "Jadval nomi noto‘g‘ri"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL so‘rovlari"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "Statiskani ko‘rsatish"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select Tables"
msgid "Selected time range:"
msgstr "Jadvallarni tanlang"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "So‘rov turi"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "per second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "sekundiga"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "in use"
msgid "%d minute"
@@ -12191,7 +12256,7 @@ msgstr "Sessiya qiymatlari"
msgid "Global value"
msgstr "Global qiymat"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "Yuklab olish"
@@ -12268,39 +12333,39 @@ msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
msgid "New server"
msgstr "Yangi server"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "Til"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "foydalanuvchiga tanlash imkonini berish"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- yo‘q -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "Server"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "Satr oxiri"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "Ko‘rsatish"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "Yuklash"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin sayti"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "Sadaqa"
@@ -12522,9 +12587,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
-"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
-"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
-"[/kbd] deb belgilash tavsiya etiladi."
+"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
+"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
+"kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:314
#, fuzzy, php-format
@@ -12584,55 +12649,46 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak"
msgid "Wrong data"
msgstr "Ma`lumotlar bazasi mavjud emas"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "Tashqi qiymatlarni ko‘rib chiqish"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr ""
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "Kiritilgan qator identifikatori: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "PHP-kod sifatida ko‘rsatish"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "SQL-so‘rovni ko‘rsatish"
-
-#: sql.php:807
+#: sql.php:805
#, fuzzy
#| msgid "Validate SQL"
msgid "Validated SQL"
msgstr "SQL to‘g‘riligini tekshirish"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL so‘rovi natijasi"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "Tuzilgan"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "Xatcho‘p belgisi"
@@ -12647,61 +12703,6 @@ msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi"
msgid "The columns have been moved successfully."
msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi."
-#: tbl_change.php:745
-#, fuzzy
-#| msgid "Because of its length, this field might not be editable "
-msgid "Because of its length, this column might not be editable"
-msgstr "Ma`lumotlar ko‘pligi sabali o‘zgartirish qiyishlashishi mumkin"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "Yozuv kiritish"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "Kiritilgan so‘rovni ko‘rsatish"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "va so‘ng"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "Oldingi sahifaga o‘tish"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "Yangi yozuv kiritish"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "Ushbu sahifaga qaytish"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "Keyingi qatorni tahrirlash"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr ""
-"Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan "
-"foydalaning"
-
-#: tbl_change.php:1144
-#, fuzzy, php-format
-#| msgid "Restart insertion with %s rows"
-msgid "Continue insertion with %s rows"
-msgstr "Qo‘yilayotgan qatorlar soni: \"%s\""
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Mar"
@@ -13369,38 +13370,44 @@ msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:"
msgid "Create version"
msgstr "Vеrsiyasini tuzish"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "SQL Query box"
msgid "Additional search criteria"
msgstr "SQL so‘rovlari qutisi"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "Ko‘rsatiladigan qatorlarning maksimal soni"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "Nazorat foydalanuvchisi"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "Tozalash"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "Ko‘proq mavzuga ega bo‘ling!"
@@ -13774,8 +13781,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -13910,8 +13917,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -14901,9 +14908,6 @@ msgstr "Maksimal ulanishlar soni "
#~ msgid "No trigger with name %s found"
#~ msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
-#~ msgid "rows"
-#~ msgstr "Ko‘rib chiqish"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "ta qator quyidagi qatordan boshlab "
@@ -14970,8 +14974,8 @@ msgstr "Maksimal ulanishlar soni "
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation."
-#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
+#~ "\"FAQ 3.11\"[/a]ga qarang"
#~ msgid "Add a New User"
#~ msgstr "Yangi foydalanuvchi qo‘shish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 96208490b9..fe932f1588 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-04-09 07:19+0200\n"
"Last-Translator: Vian Zhao \n"
"Language-Team: chinese_simplified \n"
-"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 0.8\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "全部显示"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "全部显示"
msgid "Page number:"
msgstr "页码:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口"
"更新。"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "搜索"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "搜索"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "执行"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "键名"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "说明"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "使用此值"
@@ -119,12 +119,12 @@ msgstr "表注释"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "字段"
@@ -133,6 +133,7 @@ msgstr "字段"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "字段"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "类型"
@@ -150,12 +151,12 @@ msgstr "类型"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "空"
@@ -194,13 +195,13 @@ msgstr "注释"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "否"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -353,7 +354,7 @@ msgstr "表"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行数"
@@ -403,28 +404,28 @@ msgid "Switch to %svisual builder%s"
msgstr "切换到 %s可视化查询生成器%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "排序"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "递增"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "递减"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "显示"
@@ -445,8 +446,8 @@ msgid "Del"
msgstr "删除"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "或"
@@ -516,8 +517,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "在表 %2$s 中找到 %1$s 个匹配"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "浏览"
@@ -526,14 +527,14 @@ msgstr "浏览"
msgid "Delete the matches for the %s table?"
msgstr "删除 %s 表中所有匹配的记录?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "删除"
@@ -600,11 +601,11 @@ msgstr "追踪已启用。"
msgid "Tracking is not active."
msgstr "追踪已禁用。"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -614,7 +615,7 @@ msgstr "视图"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "复制"
@@ -628,20 +629,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "选中项:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "全选"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -653,27 +654,27 @@ msgstr "仅选择多余"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "导出"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "打印预览"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "清空"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -699,11 +700,11 @@ msgstr "分析表"
msgid "Add prefix to table"
msgstr "添加表前缀"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "修改表前缀"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "复制表为新前缀"
@@ -722,8 +723,8 @@ msgstr "已追踪的表"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "数据库"
@@ -741,7 +742,7 @@ msgstr "更新"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "状态"
@@ -840,47 +841,47 @@ msgstr "以 OpenStreetMaps 为背景"
msgid "SRID"
msgstr "SRID"
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr "几何学"
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr "点"
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr "X"
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr "Y"
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr "点 %d"
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
msgid "Add a point"
msgstr "添加点"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "换行符"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr "外环"
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr "内环"
@@ -890,17 +891,17 @@ msgstr "内环"
msgid "Add a linestring"
msgstr "添加新用户"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "添加新用户"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "多边形"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
msgid "Add a polygon"
msgstr "添加多边形"
@@ -923,8 +924,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:216 import.php:443
@@ -967,7 +968,7 @@ msgstr "没有字符集转换库,无法转换文件字符集"
msgid "Could not load import plugins, please check your installation!"
msgstr "无法加载导入插件,请检查你的安装!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "已创建书签 %s"
@@ -992,7 +993,7 @@ msgstr ""
"将无法完成导入操作。"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1007,7 +1008,7 @@ msgstr "返回"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。"
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
@@ -1017,7 +1018,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
msgid "Do you really want to execute \"%s\"?"
msgstr "您真的要"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "您将要删除一个完整的数据库!"
@@ -1103,21 +1104,21 @@ msgstr "关闭"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "编辑"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "实时流量图"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "实时连接/进程图"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "实时查询图"
@@ -1128,23 +1129,23 @@ msgstr "静态数据"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "总计"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "其它"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1164,7 +1165,7 @@ msgstr "服务器流量 (单位: KB)"
msgid "Connections since last refresh"
msgstr "自上次刷新起的连接数"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "进程"
@@ -1182,7 +1183,7 @@ msgstr "自上次刷新起的内部查询"
msgid "Questions (executed statements by the server)"
msgstr "内部查询 (服务器执行的查询)"
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "查询统计"
@@ -1225,14 +1226,14 @@ msgid "System swap"
msgstr "系统交换空间"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1284,32 +1285,32 @@ msgstr "已发送字节数"
msgid "Bytes received"
msgstr "已接收字节数"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "连接"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "字节"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1323,11 +1324,11 @@ msgstr "%d 张表"
msgid "Questions"
msgstr "内部查询"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "流量"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "设置"
@@ -1348,10 +1349,10 @@ msgid "Please add at least one variable to the series"
msgstr "请至少添加一个数据"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "无"
@@ -1446,7 +1447,7 @@ msgstr "修改设置"
msgid "Current settings"
msgstr "当前设置"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
msgid "Chart Title"
msgstr "图表标题"
@@ -1528,9 +1529,9 @@ msgstr "正在分析。。。"
msgid "Explain output"
msgstr "解释 SQL"
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "时间"
@@ -1631,7 +1632,7 @@ msgstr "导入配置失败。正在重设为默认设置..."
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "导入"
@@ -1757,19 +1758,19 @@ msgstr "隐藏索引"
msgid "Show indexes"
msgstr "显示索引"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "禁止选定不相关的主键"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "已启用"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1838,7 +1839,7 @@ msgstr "显示查询框"
msgid "No rows selected"
msgstr "没有选中任何行"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "修改"
@@ -1847,17 +1848,18 @@ msgstr "修改"
msgid "Query execution time"
msgstr "查询执行时间"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d 不是有效行数。"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "保存"
@@ -1884,162 +1886,154 @@ msgid "Hovering over a point will show its label."
msgstr "悬浮至一个点上会显示它的标签"
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
-msgstr "使用鼠标滚轮放大或缩小此图"
+msgid "To zoom in, select a section of the plot with the mouse."
+msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr "点击并使用鼠标拖拽来操纵图表"
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr "点击重置缩放连接以回到初始状态"
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr "拖拽右下角以改变图表大小"
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr "为了绘图,字符串被转换成了整数"
-
-#: js/messages.php:316
+#: js/messages.php:312
msgid "Select two columns"
msgstr "选择两列"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr "选择两个不同的列"
-#: js/messages.php:318
+#: js/messages.php:314
msgid "Query results"
msgstr "查询结果"
-#: js/messages.php:319
+#: js/messages.php:315
msgid "Data point content"
msgstr "数据点内容"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "复制"
-#: js/messages.php:338
+#: js/messages.php:334
msgid "Add columns"
msgstr "添加字段"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "选择外键"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "选择外键"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "请选择主键或唯一键"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "选择要显示的字段"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "给字段添加选项 "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr "按 Esc 键取消编辑"
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr "已有数据被修改但尚未保存。你真的要不保存修改就离开本页吗?"
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr "拖拽以调整顺序"
-#: js/messages.php:354
+#: js/messages.php:350
msgid "Click to sort"
msgstr "点击以排序"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr "点击以标记/取消标记"
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr "点击下箭头以设置显示的字段"
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr "你可以通过直接点击它们的内容以编辑绝大部分列"
-#: js/messages.php:361
+#: js/messages.php:357
msgid "Go to link"
msgstr "转到链接"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "字段名"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "更新行"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "生成密码"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "生成"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "修改密码"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "更多"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2047,268 +2041,268 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ",最新稳定版本: "
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "已更新"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "完成"
-#: js/messages.php:401
+#: js/messages.php:397
msgctxt "Previous month"
msgid "Prev"
msgstr "上个月"
-#: js/messages.php:406
+#: js/messages.php:402
msgctxt "Next month"
msgid "Next"
msgstr "下个月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "今天"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "一月"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "二月"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "三月"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "四月"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "五月"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "六月"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "七月"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "八月"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "九月"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "十月"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "十一月"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:472
+#: js/messages.php:468
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "周"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr "日历-月-年"
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "无"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "时"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "分"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "秒"
@@ -2361,16 +2355,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "每秒"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "每分钟"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "每小时"
@@ -2497,15 +2491,15 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除
msgid "Databases"
msgstr "数据库"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "服务器"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2517,20 +2511,20 @@ msgid "Structure"
msgstr "结构"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "插入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2588,12 +2582,12 @@ msgstr "用户"
msgid "Synchronize"
msgstr "同步"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "二进制日志"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "变量"
@@ -2610,8 +2604,9 @@ msgid "Engines"
msgstr "引擎"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "错误"
@@ -2725,35 +2720,35 @@ msgid ""
msgstr ""
"无法保存用户界面属性 \"%s\"。修改将在刷新本页后丢失。请检查表结构是否已修改。"
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "找不到主题 %s 对应的图片路径!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "没有可用的预览。"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "确定"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "未找到默认主题 %s !"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "未找到主题 %s !"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "找不到主题 %s 的路径"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "主题"
@@ -2794,14 +2789,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3061,8 +3056,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@@ -3165,7 +3160,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "数据表"
@@ -3216,22 +3211,22 @@ msgstr "可利用"
msgid "numeric key detected"
msgstr "监测到数值型键"
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
msgid "Failed to read configuration file"
msgstr "读取配置文件失败"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr "这通常意味着文件中有语法错误,请检查下面显示出的错误。"
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "无法加载默认配置: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3241,21 +3236,21 @@ msgid ""
"configuration file!"
msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "无效的服务器索引: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "无效的主机名 %1$s,请检查配置文件。"
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "配置文件中设置的认证方式无效:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您应升级到 %s %s 或更高版本。"
@@ -3290,8 +3285,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "en"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL 查询"
@@ -3329,7 +3324,7 @@ msgid "Create PHP Code"
msgstr "创建 PHP 代码"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "刷新"
@@ -3350,95 +3345,95 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "快速编辑"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "概要"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "周日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小时,%s 分 %s 秒"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
msgid "Missing parameter:"
msgstr "缺少参数:"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
msgctxt "First page"
msgid "Begin"
msgstr "首页"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
msgctxt "Previous page"
msgid "Previous"
msgstr "上一页"
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
msgctxt "Next page"
msgid "Next"
msgstr "下一页"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
msgctxt "Last page"
msgid "End"
msgstr "尾页"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "跳转到数据库“%s”。"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
msgid "Click to toggle"
msgstr "点击切换"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "从计算机中上传:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "从网站服务器上传文件夹 %s 中选择:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "用于上传的文件夹出错,无法使用"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "没有可上传的文件"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "执行"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "打印"
@@ -3610,9 +3605,9 @@ msgstr "还原默认值"
msgid "Allow users to customize this value"
msgstr "允许用户自定义该值"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "重置"
@@ -3764,7 +3759,7 @@ msgid "Compress on the fly"
msgstr "实时压缩"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "配置文件"
@@ -3824,7 +3819,7 @@ msgstr "规划表结构"
msgid "Show binary contents as HEX by default"
msgstr "默认以十六进制显示二进制内容"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "以十六进制显示二进制内容"
@@ -5626,7 +5621,7 @@ msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略
msgid "Enable the Developer tab in settings"
msgstr "启用设置中的开发标签"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "检查更新"
@@ -5766,25 +5761,25 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。"
msgid "possible deep recursion attack"
msgstr "可能的深度递归攻击"
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
msgid ""
"The server is not responding (or the local server's socket is not correctly "
"configured)."
msgstr "服务器无响应(或者本地 MySQL 服务器的套接字没有正确配置)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
msgid "The server is not responding."
msgstr "服务器没有响应。"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr "请检查数据库目录的权限。"
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "详细..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -5943,8 +5938,8 @@ msgstr ",@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@@ -6130,48 +6125,53 @@ msgstr "格式特定选项:"
msgid "Language"
msgstr "Language"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
msgid "Save edited data"
msgstr "保存已编辑的数据"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
msgid "Restore column order"
msgstr "恢复字段顺序"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
msgid "Start row"
msgstr "起始行"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
msgid "Number of rows"
msgstr "行数"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
msgid "Mode"
msgstr "模式"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "水平 (旋转表头)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+#, fuzzy
+#| msgid "Headers every %s rows"
+msgid "Headers every"
msgstr "每 %s 行重复表头"
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "浏览"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "主键排序"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6189,89 +6189,89 @@ msgstr "主键排序"
msgid "Options"
msgstr "选项"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "部分内容"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "完整内容"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "关联键"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "关联显示字段"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "显示二进制内容"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "显示 BLOB 内容"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
msgid "Hide browser transformation"
msgstr "隐藏浏览器转换"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "已删除该行"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "杀死"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "查询中"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "显示行"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "总计"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "查询花费 %01.4f 秒"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "查询结果选项"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "打印预览 (全文显示)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "显示图表"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr "可视化 GIS 数据"
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "新建视图"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "找不到链接"
@@ -6315,7 +6315,7 @@ msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。"
msgid "Buffer Pool"
msgstr "缓冲池"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB 状态"
@@ -6585,8 +6585,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:130
@@ -6707,12 +6707,12 @@ msgstr "显示 MIME 类型"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "主机"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "生成日期"
@@ -6925,8 +6925,8 @@ msgstr "未找到用于 GIS 可视化的数据。"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
@@ -7093,6 +7093,96 @@ msgstr "SQL 兼容模式:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "不要给零值使用自增 (AUTO_INCREMENT)"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "函数"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "隐藏"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "二进制"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "因长度问题, 该字段可能无法编辑 "
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "二进制 - 无法编辑"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "网站服务器上传文件夹"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+msgid "Edit/Insert"
+msgstr "编辑/插入"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "继续插入 %s 行"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "然后"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "以新行插入"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "以新行插入 (忽略错误)"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "显示插入语句"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "返回上一页"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "插入新数据"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "返回到本页"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "编辑下一行"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "值"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "显示 SQL 查询"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "插入的行 id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7103,34 +7193,34 @@ msgstr "无"
msgid "Convert to Kana"
msgstr "转换为假名"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
msgid "From"
msgstr "从"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr "到"
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "提交"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr "添加表前缀"
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr "添加前缀"
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "您真的要"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "无更改"
@@ -7138,11 +7228,6 @@ msgstr "无更改"
msgid "Charset"
msgstr "字符集"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "二进制"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "保加利亚语"
@@ -7471,18 +7556,10 @@ msgid "Slave status"
msgstr "从服务器状态"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "变量"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "值"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "服务器ID"
@@ -7806,11 +7883,6 @@ msgstr "运行程序"
msgid "Routine parameters"
msgstr "程序参数"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "函数"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "抱歉,恢复已删除的触发器失败。"
@@ -8130,7 +8202,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "在数据库 %s 运行 SQL 查询"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "清除"
@@ -8138,11 +8210,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "将此 SQL 查询加为书签"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "让所有用户均可访问此书签"
@@ -8166,10 +8238,6 @@ msgstr "在此再次显示此查询 "
msgid "View only"
msgstr "仅查看"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "网站服务器上传文件夹"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8357,10 +8425,6 @@ msgstr "运算符"
msgid "Table Search"
msgstr "普通搜索"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-msgid "Edit/Insert"
-msgstr "编辑/插入"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8555,7 +8619,7 @@ msgstr "协议版本"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "用户"
@@ -8768,10 +8832,6 @@ msgstr "全部隐藏/显示"
msgid "Hide/Show Tables with no relation"
msgstr "隐藏/显示没有关联的表"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "隐藏"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "数据表数量"
@@ -8963,17 +9023,17 @@ msgstr "文件不存在"
msgid "Select binary log to view"
msgstr "选择要查看的二进制日志"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "文件"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "截断显示的查询"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "显示完整查询"
@@ -9402,12 +9462,12 @@ msgstr "删除与用户同名的数据库。"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
-"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
-"限%s。"
+"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
+"s。"
#: server_privileges.php:2032
msgid "The selected user was not found in the privilege table."
@@ -9521,7 +9581,7 @@ msgstr "已成功修改主服务器到 %s"
msgid "This server is configured as master in a replication process."
msgstr "此服务器已被配置为一个复制进程中的主服务器。"
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "查看主服务器状态"
@@ -9662,132 +9722,132 @@ msgstr ""
"此服务器尚未配置为一个复制进程中的从服务器。你想现在配置"
"吗?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "已成功杀死线程 %s 。"
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "句柄"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "查询缓存"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "线程"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "临时数据"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "延迟插入"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "键缓存"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "多表查询"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "排序"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "事务协调"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "强制更新 (关闭) 所有表"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "显示打开的表"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "显示从服务器"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "显示从服务器状态"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "强制更新查询缓存"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "运行信息"
-#: server_status.php:790
+#: server_status.php:793
msgid "All status variables"
msgstr "所有状态变量"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr "监控"
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr "建议"
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
msgid "Refresh rate: "
msgstr "刷新频率: "
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
msgid "Filters"
msgstr "过滤器"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
msgid "Containing the word:"
msgstr "包含文字:"
-#: server_status.php:850
+#: server_status.php:853
msgid "Show only alert values"
msgstr "仅显示报警值"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr "按分类显示"
-#: server_status.php:868
+#: server_status.php:871
msgid "Show unformatted values"
msgstr "显示原始值"
-#: server_status.php:872
+#: server_status.php:875
msgid "Related links:"
msgstr "相关链接:"
-#: server_status.php:905
+#: server_status.php:908
msgid "Run analyzer"
msgstr "运行分析器"
-#: server_status.php:906
+#: server_status.php:909
msgid "Instructions"
msgstr "说明"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr "建议系统可以通过分析服务器状态变量对服务器变量的设置提出建议。"
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
@@ -9796,7 +9856,7 @@ msgstr ""
"请注意本系统所提出的建议建立在简单计算以及通用场合中,可能并不能满足您系统的"
"实际需求。"
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
@@ -9805,7 +9865,7 @@ msgstr ""
"在修改任何设置之前,请确定您确实知道在修改什么设置 (通过阅读文档) 并知道如何"
"撤销改变。错误的设置可能导致与预期完全相反的结果。"
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -9815,45 +9875,45 @@ msgstr ""
"效果就撤销改变。"
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, php-format
msgid "Questions since startup: %s"
msgstr "自启动以来的内部查询: %s"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "说明"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr "查询数量"
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr "自启动以来的网络流量: %s"
-#: server_status.php:1062
+#: server_status.php:1065
#, php-format
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "此 MySQL 服务器已运行 %1$s。启动时间为 %2$s 。"
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 服务器正以主和从服务器运行于复制进程中。"
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 服务器正以主服务器运行于复制进程中。"
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 服务器正以从服务器运行于复制进程中。"
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -9861,11 +9921,11 @@ msgstr ""
"要获得更多关于此服务器的复制状态,请查看复制状态信息"
"。"
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "复制状态"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -9873,45 +9933,45 @@ msgstr ""
"在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正"
"确"
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "已接收"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "已发送"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "最大并发连接数"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "已失败"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "命令"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr "因客户端没有关闭连接而中止的连接数。"
-#: server_status.php:1318
+#: server_status.php:1321
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "尝试连接到 MySQL 服务器但失败的连接数。"
-#: server_status.php:1319
+#: server_status.php:1322
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 "
@@ -9920,16 +9980,16 @@ msgstr ""
"因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储"
"的数量。"
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "事务所用的临时二进制日志缓存的数量。"
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。"
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -9939,17 +9999,17 @@ msgstr ""
"服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables "
"很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。"
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已创建的临时文件的数量。"
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "服务器执行语句时自动在内存中创建的临时表的数量。"
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
@@ -9957,29 +10017,29 @@ msgstr ""
"发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复"
"值) 。"
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "延迟插入已写入的行数。"
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "已执行的强制更新 (FLUSH) 语句数。"
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "已执行的内部提交 (COMMIT) 语句数。"
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "从表中删除行的次数。"
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -9988,7 +10048,7 @@ msgstr ""
"如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。"
"Handler_discovery 表明了一张表被发现的次数。"
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
@@ -9997,14 +10057,14 @@ msgstr ""
"读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫"
"描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。"
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10013,7 +10073,7 @@ msgstr ""
"根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或"
"进行完整表扫描,该值将会不断增长。"
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10021,7 +10081,7 @@ msgstr ""
"根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... "
"DESC 的查询。"
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10031,7 +10091,7 @@ msgstr ""
"根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能"
"有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。"
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10041,35 +10101,35 @@ msgstr ""
"从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味"
"着你的表没有做好索引,或者你的查询语句没有使用好索引字段。"
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "内部回滚 (ROLLBACK) 语句数。"
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "表中更新行的请求数。"
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "表中插入行的请求数。"
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空页数 (含脏页) 。"
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "当前脏页数。"
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "请求更新的缓冲池页数。"
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "空闲页数。"
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10078,7 +10138,7 @@ msgstr ""
"InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能"
"被刷新或删除的。"
-#: server_status.php:1346
+#: server_status.php:1349
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 "
@@ -10089,11 +10149,11 @@ msgstr ""
"公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
"Innodb_buffer_pool_pages_data 。"
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "缓冲池总大小 (单位:页)。"
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10101,24 +10161,24 @@ msgstr ""
"InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发"
"生。"
-#: server_status.php:1349
+#: server_status.php:1352
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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的逻辑读请求数。"
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10130,85 +10190,85 @@ msgstr ""
"必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这"
"个值应该会很小。"
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "写入 InnoDB 缓冲池的次数。"
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "fsync() 总操作的次数。"
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "当前挂起 fsync() 操作的数量。"
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "当前挂起的读操作数。"
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "当前挂起的写操作数。"
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "读取的总数据量 (单位:字节)。"
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "数据读取总数。"
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "数据写入总数。"
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "写入的总数据量 (单位:字节)。"
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以双写入操作写入的页数。"
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "已经执行的双写入次数。"
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "日志写入请求数。"
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "日志物理写入次数。"
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 写入日志文件的次数。"
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "当前挂起的 fsync 日志文件数。"
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "当前挂起的日志写入数。"
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "写入日志文件的字节数。"
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "创建的页数。"
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10216,81 +10276,81 @@ msgstr ""
"编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方"
"便地将这些值转化为字节数。"
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "读取的页数。"
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "写入的页数。"
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "正在等待行锁的数量。"
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的平均时间 (单位:毫秒)。"
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待获得行锁的总时间 (单位:毫秒)。"
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待获得行锁的最大时间 (单位:毫秒)。"
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "等待行锁的次数。"
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "从 InnoDB 表中删除的行数。"
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 表中的行数。"
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "从 InnoDB 表中读取的行数。"
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行数。"
-#: server_status.php:1384
+#: server_status.php:1387
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:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "导入文件的格式"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "从缓存中读取键块的请求次数。"
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10299,26 +10359,26 @@ msgstr ""
"从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size "
"可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。"
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "将一个键块写入缓存的请求数。"
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "将键块物理写入到磁盘的次数。"
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10327,35 +10387,35 @@ msgstr ""
"最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行"
"相同的查询时的效率差异。默认值0表示还没有查询被编译。"
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr "自服务器启动以来的最高并发连接数。"
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待写入延迟插入队列的行数。"
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "打开的文件个数。"
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "打开的流个数 (主要用于日志记录)。"
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "打开的数据表个数。"
-#: server_status.php:1401
+#: server_status.php:1404
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 "
@@ -10364,19 +10424,19 @@ msgstr ""
"查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY "
"CACHE 语句解决。"
-#: server_status.php:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "查询缓存中空闲的内存总数。"
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "缓存命中数。"
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "加入到缓存的查询数。"
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10386,7 +10446,7 @@ msgstr ""
"为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除"
"哪个已缓存的查询。该信息可帮助您调整查询缓存大小。"
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10394,19 +10454,19 @@ msgstr ""
"未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的"
"查询)。"
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "在缓存中注册的查询数。"
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "查询缓存中的总块数。"
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失败保护器的状态 (尚未应用)。"
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10414,11 +10474,11 @@ msgstr ""
"没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当"
"的索引。"
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在关联表上使用范围搜索的多表查询的数量。"
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10426,7 +10486,7 @@ msgstr ""
"没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细"
"检查是否已经为表建立了适当的索引。)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10434,36 +10494,36 @@ msgstr ""
"在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影"
"响。)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一张表上进行了完整表扫描的多表查询数。"
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "当前由从 SQL 线程打开的临时表的数量。"
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "从 SQL 线程总共重试事务复制数。"
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。"
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。"
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多时间的查询数。"
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10472,23 +10532,23 @@ msgstr ""
"排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 "
"sort_buffer_size 的值。"
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "局部范围完成的排序次数。"
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "排序的行数。"
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "扫描表完成的排序次数。"
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要锁定表的次数。"
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10498,7 +10558,7 @@ msgstr ""
"无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题,"
"则应该首先检查您的查询语句,然后使用复制操作来分开表。"
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10507,11 +10567,11 @@ msgstr ""
"线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。"
"如果该值是红色的,则应该增加 thread_cache_size 的值。"
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "当前打开的连接数。"
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10522,64 +10582,64 @@ msgstr ""
"thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提"
"升)。"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Thread cache hit rate %%"
msgid "Thread cache hit rate (calculated value)"
msgstr "线程缓存命中率 %%"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "非睡眠状态的线程数量。"
-#: server_status.php:1576
+#: server_status.php:1579
msgid "Start Monitor"
msgstr "启动监控"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr "说明/设置"
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr "完成排列/编辑图表"
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
msgid "Add chart"
msgstr "添加图表"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr "排列/编辑图表"
-#: server_status.php:1603
+#: server_status.php:1606
msgid "Refresh rate"
msgstr "刷新频率"
-#: server_status.php:1608
+#: server_status.php:1611
msgid "Chart columns"
msgstr "每行图表个数"
-#: server_status.php:1624
+#: server_status.php:1627
msgid "Chart arrangement"
msgstr "图表排列"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
"图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。"
-#: server_status.php:1625
+#: server_status.php:1628
msgid "Reset to default"
msgstr "恢复默认"
-#: server_status.php:1629
+#: server_status.php:1632
msgid "Monitor Instructions"
msgstr "监控说明"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10591,7 +10651,7 @@ msgstr ""
"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。"
"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%"
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10601,11 +10661,11 @@ msgstr ""
"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志"
"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。"
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr "使用监控:"
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
@@ -10614,7 +10674,7 @@ msgstr ""
"您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修"
"改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。"
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10624,11 +10684,11 @@ msgstr ""
"要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显"
"示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。"
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr "请注意:"
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10639,85 +10699,85 @@ msgstr ""
"载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的"
"表。"
-#: server_status.php:1673
+#: server_status.php:1676
msgid "Preset chart"
msgstr "预置图表"
-#: server_status.php:1677
+#: server_status.php:1680
msgid "Status variable(s)"
msgstr "状态变量"
-#: server_status.php:1679
+#: server_status.php:1682
msgid "Select series:"
msgstr "选择数据:"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr "常用监控"
-#: server_status.php:1696
+#: server_status.php:1699
msgid "or type variable name:"
msgstr "或输入变量名:"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr "独立显示"
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr "应用除数"
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr "在值后附加单位"
-#: server_status.php:1715
+#: server_status.php:1718
msgid "Add this series"
msgstr "添加该数据"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr "清除所有数据"
-#: server_status.php:1720
+#: server_status.php:1723
msgid "Series in Chart:"
msgstr "图表中的数据:"
-#: server_status.php:1733
+#: server_status.php:1736
msgid "Log statistics"
msgstr "日志统计"
-#: server_status.php:1734
+#: server_status.php:1737
msgid "Selected time range:"
msgstr "选择时间范围:"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句"
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr "去除 INSERT 语句中的变量值以获得更好的分组"
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr "请选择生成统计的来源日志。"
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr "结果将根据查询语句分组。"
-#: server_status.php:1756
+#: server_status.php:1759
msgid "Query analyzer"
msgstr "查询分析器"
-#: server_status.php:1796
+#: server_status.php:1799
#, php-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "%d 秒"
-#: server_status.php:1798
+#: server_status.php:1801
#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
@@ -10848,7 +10908,7 @@ msgstr "会话值"
msgid "Global value"
msgstr "全局值"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "下载"
@@ -10915,39 +10975,39 @@ msgstr "没有配置好的服务器"
msgid "New server"
msgstr "新建服务器"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "默认语言"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "让用户选择"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- 无 -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "默认服务器"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "换行符"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "显示"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "加载"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 主页 (外链,英文)"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "捐助 (外链,英文)"
@@ -11153,53 +11213,44 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
msgid "Wrong data"
msgstr "无效数据"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "浏览不相关的值"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "使用书签 \"%s\" 作为默认的查询。"
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "您真的要"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "插入的行 id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "显示为 PHP 代码"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "显示 SQL 查询"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "已校验的 SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL 查询结果"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "生成者"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "标签"
@@ -11214,56 +11265,6 @@ msgstr "已成功修改表 %1$s "
msgid "The columns have been moved successfully."
msgstr "已成功删除选中的用户。"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "因长度问题, 该字段可能无法编辑 "
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "二进制 - 无法编辑"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "以新行插入"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "以新行插入 (忽略错误)"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "显示插入语句"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "然后"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "返回上一页"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "插入新数据"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "返回到本页"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "编辑下一行"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "继续插入 %s 行"
-
#: tbl_chart.php:80
msgctxt "Chart type"
msgid "Bar"
@@ -11855,30 +11856,36 @@ msgstr "追踪下列数据操作语句:"
msgid "Create version"
msgstr "创建版本"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "在两个不同的字段中执行 “依例查询” (通配符:“%”)"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
msgid "Additional search criteria"
msgstr "附加搜索条件"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr "使用该字段标记每个点"
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
msgid "Maximum rows to plot"
msgstr "显示的最多行数"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr "浏览/编辑点"
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
msgid "How to use"
msgstr "如何使用"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "重置"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "获得更多主题!"
@@ -12220,8 +12227,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12348,8 +12355,8 @@ msgstr "根据系统内存,考虑增加 sort_buffer_size 和/或 read_rnd_buff
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。"
#: libraries/advisory_rules.txt:211
@@ -13029,6 +13036,15 @@ msgstr ""
msgid "concurrent_insert is set to 0"
msgstr "concurrent_insert 被设为 0"
+#~ msgid "Use mousewheel to zoom in or out of the plot."
+#~ msgstr "使用鼠标滚轮放大或缩小此图"
+
+#~ msgid "Click and drag the mouse to navigate the plot."
+#~ msgstr "点击并使用鼠标拖拽来操纵图表"
+
+#~ msgid "Strings are converted into integer for plotting"
+#~ msgstr "为了绘图,字符串被转换成了整数"
+
#, fuzzy
#~| msgid "Lines terminated by"
#~ msgid "String"
@@ -13420,9 +13436,6 @@ msgstr "concurrent_insert 被设为 0"
#~ msgid "No trigger with name %s found"
#~ msgstr "找不到主题 %s 对应的图片路径!"
-#~ msgid "rows"
-#~ msgstr "浏览"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "行,起始行 #"
@@ -13532,8 +13545,8 @@ msgstr "concurrent_insert 被设为 0"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
+#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 28deefeb4d..7d3f66cc06 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,24 +3,24 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2012-05-17 10:53+0200\n"
+"POT-Creation-Date: 2012-05-24 17:03-0400\n"
"PO-Revision-Date: 2012-05-23 10:16+0200\n"
"Last-Translator: MoA Chung \n"
"Language-Team: chinese_traditional \n"
-"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 1.0\n"
-#: browse_foreigners.php:35 browse_foreigners.php:59 js/messages.php:358
-#: libraries/display_tbl.lib.php:399 server_privileges.php:1828
+#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354
+#: libraries/display_tbl.lib.php:512 server_privileges.php:1828
msgid "Show all"
msgstr "全部顯示"
-#: browse_foreigners.php:76 libraries/PDF.class.php:50
-#: libraries/common.lib.php:2460
+#: browse_foreigners.php:78 libraries/PDF.class.php:50
+#: libraries/common.lib.php:2453
#: libraries/schema/Pdf_Relation_Schema.class.php:1145
#: libraries/schema/Pdf_Relation_Schema.class.php:1169
#: libraries/schema/User_Schema.class.php:399
@@ -28,7 +28,7 @@ msgstr "全部顯示"
msgid "Page number:"
msgstr "頁碼:"
-#: browse_foreigners.php:159
+#: browse_foreigners.php:161
msgid ""
"The target browser window could not be updated. Maybe you have closed the "
"parent window, or your browser's security settings are configured to block "
@@ -37,21 +37,22 @@ msgstr ""
"無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗"
"更新"
-#: browse_foreigners.php:181 libraries/Menu.class.php:276
-#: libraries/Menu.class.php:370 libraries/common.lib.php:3147
-#: libraries/common.lib.php:3154 libraries/common.lib.php:3381
-#: libraries/common.lib.php:3382
+#: browse_foreigners.php:183 libraries/Menu.class.php:276
+#: libraries/Menu.class.php:370 libraries/common.lib.php:3149
+#: libraries/common.lib.php:3156 libraries/common.lib.php:3383
+#: libraries/common.lib.php:3384
msgid "Search"
msgstr "搜尋"
-#: browse_foreigners.php:184 db_operations.php:409 db_operations.php:449
+#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449
#: db_operations.php:562 db_operations.php:591 db_search.php:352
#: gis_data_editor.php:314 js/messages.php:231
#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:364 libraries/display_import.lib.php:319
-#: libraries/display_tbl.lib.php:840 libraries/replication_gui.lib.php:76
+#: libraries/display_tbl.lib.php:1330 libraries/insert_edit.lib.php:1371
+#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76
#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493
#: libraries/rte/rte_routines.lib.php:971
#: libraries/rte/rte_routines.lib.php:1461
@@ -67,28 +68,27 @@ msgstr "搜尋"
#: server_privileges.php:2326 server_privileges.php:2373
#: server_privileges.php:2405 server_replication.php:262
#: server_replication.php:346 server_replication.php:377
-#: server_synchronize.php:1480 tbl_change.php:363 tbl_change.php:1109
-#: tbl_indexes.php:306 tbl_operations.php:287 tbl_operations.php:324
-#: tbl_operations.php:532 tbl_operations.php:595 tbl_operations.php:798
-#: tbl_select.php:236 tbl_structure.php:717 tbl_structure.php:749
-#: tbl_tracking.php:489 tbl_tracking.php:631 tbl_zoom_select.php:305
-#: view_create.php:177 view_operations.php:94
+#: server_synchronize.php:1480 tbl_indexes.php:306 tbl_operations.php:287
+#: tbl_operations.php:324 tbl_operations.php:532 tbl_operations.php:595
+#: tbl_operations.php:798 tbl_select.php:236 tbl_structure.php:717
+#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631
+#: tbl_zoom_select.php:317 view_create.php:177 view_operations.php:94
msgid "Go"
msgstr "執行"
-#: browse_foreigners.php:199 browse_foreigners.php:203
+#: browse_foreigners.php:201 browse_foreigners.php:205
#: libraries/Index.class.php:457 tbl_tracking.php:365
msgid "Keyname"
msgstr "鍵名"
-#: browse_foreigners.php:200 browse_foreigners.php:202
+#: browse_foreigners.php:202 browse_foreigners.php:204
#: server_collations.php:39 server_collations.php:51 server_engines.php:42
-#: server_plugins.php:128 server_status.php:1496
+#: server_plugins.php:128 server_status.php:1499
msgid "Description"
msgstr "說明"
-#: browse_foreigners.php:287 browse_foreigners.php:297
-#: browse_foreigners.php:313 browse_foreigners.php:325
+#: browse_foreigners.php:289 browse_foreigners.php:299
+#: browse_foreigners.php:315 browse_foreigners.php:327
msgid "Use this value"
msgstr "使用此值"
@@ -119,12 +119,12 @@ msgstr "表註釋"
#: libraries/export/latex.php:481 libraries/export/odt.php:326
#: libraries/export/odt.php:426 libraries/export/texytext.php:238
#: libraries/export/texytext.php:340 libraries/export/texytext.php:405
+#: libraries/insert_edit.lib.php:1390
#: libraries/schema/Pdf_Relation_Schema.class.php:1308
#: libraries/schema/Pdf_Relation_Schema.class.php:1329
#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:93
-#: tbl_change.php:329 tbl_indexes.php:222 tbl_printview.php:136
-#: tbl_relation.php:401 tbl_tracking.php:303 tbl_tracking.php:369
-#: tbl_zoom_select.php:429
+#: tbl_indexes.php:222 tbl_printview.php:136 tbl_relation.php:401
+#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:442
msgid "Column"
msgstr "欄位"
@@ -133,6 +133,7 @@ msgstr "欄位"
#: libraries/export/htmlword.php:360 libraries/export/latex.php:482
#: libraries/export/odt.php:329 libraries/export/odt.php:429
#: libraries/export/texytext.php:239 libraries/export/texytext.php:341
+#: libraries/insert_edit.lib.php:224 libraries/insert_edit.lib.php:227
#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80
#: libraries/rte/rte_routines.lib.php:837
#: libraries/rte/rte_routines.lib.php:862
@@ -140,9 +141,9 @@ msgstr "欄位"
#: libraries/schema/Pdf_Relation_Schema.class.php:1309
#: libraries/schema/Pdf_Relation_Schema.class.php:1330
#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:94
-#: server_privileges.php:2419 tbl_change.php:308 tbl_change.php:341
-#: tbl_printview.php:137 tbl_printview.php:295 tbl_structure.php:201
-#: tbl_structure.php:833 tbl_tracking.php:304 tbl_tracking.php:366
+#: server_privileges.php:2419 tbl_printview.php:137 tbl_printview.php:295
+#: tbl_structure.php:201 tbl_structure.php:833 tbl_tracking.php:304
+#: tbl_tracking.php:366
msgid "Type"
msgstr "類型"
@@ -150,12 +151,12 @@ msgstr "類型"
#: libraries/export/htmlword.php:251 libraries/export/htmlword.php:363
#: libraries/export/latex.php:483 libraries/export/odt.php:332
#: libraries/export/odt.php:432 libraries/export/texytext.php:240
-#: libraries/export/texytext.php:342
+#: libraries/export/texytext.php:342 libraries/insert_edit.lib.php:1399
#: libraries/schema/Pdf_Relation_Schema.class.php:1311
#: libraries/schema/Pdf_Relation_Schema.class.php:1332
-#: libraries/tbl_properties.inc.php:92 tbl_change.php:356
-#: tbl_printview.php:138 tbl_structure.php:204 tbl_tracking.php:306
-#: tbl_tracking.php:372 tbl_zoom_select.php:430
+#: libraries/tbl_properties.inc.php:92 tbl_printview.php:138
+#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372
+#: tbl_zoom_select.php:443
msgid "Null"
msgstr "空"
@@ -194,13 +195,13 @@ msgstr "註釋"
#: libraries/config.values.php:52 libraries/config.values.php:67
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:597
#: libraries/export/latex.php:549 libraries/export/odt.php:699
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:325
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:132
#: server_privileges.php:1599 server_privileges.php:1609
#: server_privileges.php:1886 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2243
-#: server_privileges.php:2536 sql.php:344 sql.php:412 tbl_printview.php:192
+#: server_privileges.php:2536 sql.php:342 sql.php:410 tbl_printview.php:192
#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382
#: tbl_tracking.php:387
msgid "No"
@@ -211,19 +212,19 @@ msgstr "否"
#: libraries/config.values.php:51 libraries/config.values.php:66
#: libraries/config/FormDisplay.tpl.php:254 libraries/export/htmlword.php:598
#: libraries/export/latex.php:549 libraries/export/odt.php:700
-#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:68
-#: libraries/mult_submits.inc.php:100 libraries/mult_submits.inc.php:109
-#: libraries/mult_submits.inc.php:114 libraries/mult_submits.inc.php:119
-#: libraries/mult_submits.inc.php:124 libraries/mult_submits.inc.php:287
-#: libraries/mult_submits.inc.php:300 libraries/mult_submits.inc.php:324
-#: libraries/mult_submits.inc.php:331
+#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67
+#: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108
+#: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118
+#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323
+#: libraries/mult_submits.inc.php:330
#: libraries/schema/Pdf_Relation_Schema.class.php:1360
#: libraries/user_preferences.lib.php:293 prefs_manage.php:131
#: server_databases.php:102 server_databases.php:109
#: server_privileges.php:1597 server_privileges.php:1607
#: server_privileges.php:1883 server_privileges.php:1897
#: server_privileges.php:2238 server_privileges.php:2241
-#: server_privileges.php:2536 sql.php:411 tbl_printview.php:193
+#: server_privileges.php:2536 sql.php:409 tbl_printview.php:193
#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327
#: tbl_tracking.php:380 tbl_tracking.php:385
msgid "Yes"
@@ -354,7 +355,7 @@ msgstr "表"
#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53
#: libraries/Table.class.php:326 libraries/build_html_for_db.lib.php:31
#: libraries/db_structure.lib.php:42 libraries/import.lib.php:151
-#: navigation.php:605 navigation.php:627 sql.php:939 tbl_printview.php:376
+#: navigation.php:605 navigation.php:627 sql.php:937 tbl_printview.php:376
#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:948
msgid "Rows"
msgstr "行數"
@@ -404,28 +405,28 @@ msgid "Switch to %svisual builder%s"
msgstr "切換至 %svisual builder%s"
#: db_qbe.php:225 libraries/db_structure.lib.php:106
-#: libraries/display_tbl.lib.php:1196
+#: libraries/display_tbl.lib.php:1610
msgid "Sort"
msgstr "排序"
#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113
-#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:663
-#: libraries/display_tbl.lib.php:1142 libraries/display_tbl.lib.php:1148
+#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1149
+#: libraries/display_tbl.lib.php:1546 libraries/display_tbl.lib.php:1554
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:282
#: tbl_select.php:223
msgid "Ascending"
msgstr "遞增"
#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114
-#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:674
-#: libraries/display_tbl.lib.php:1138 libraries/display_tbl.lib.php:1152
+#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1161
+#: libraries/display_tbl.lib.php:1541 libraries/display_tbl.lib.php:1559
#: server_databases.php:187 server_databases.php:204 tbl_operations.php:283
#: tbl_select.php:224
msgid "Descending"
msgstr "遞減"
-#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:482
-#: tbl_change.php:286 tbl_tracking.php:716
+#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:600
+#: tbl_change.php:219 tbl_tracking.php:716
msgid "Show"
msgstr "顯示"
@@ -446,8 +447,8 @@ msgid "Del"
msgstr "刪除"
#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580
-#: server_privileges.php:484 tbl_change.php:936 tbl_indexes.php:301
-#: tbl_select.php:197
+#: libraries/insert_edit.lib.php:1054 server_privileges.php:484
+#: tbl_indexes.php:301 tbl_select.php:197
msgid "Or"
msgstr "或"
@@ -517,8 +518,8 @@ msgid_plural "%1$s matches inside table %2$s"
msgstr[0] "%s 筆資料符合 - 於資料表 %s"
#: db_search.php:247 libraries/Menu.class.php:263
-#: libraries/common.lib.php:3149 libraries/common.lib.php:3379
-#: libraries/common.lib.php:3380 tbl_structure.php:573
+#: libraries/common.lib.php:3151 libraries/common.lib.php:3381
+#: libraries/common.lib.php:3382 tbl_structure.php:573
msgid "Browse"
msgstr "瀏覽"
@@ -527,14 +528,14 @@ msgstr "瀏覽"
msgid "Delete the matches for the %s table?"
msgstr "刪除 %s 資料表中符合的資料?"
-#: db_search.php:252 libraries/display_tbl.lib.php:1663
-#: libraries/display_tbl.lib.php:2964
+#: db_search.php:252 libraries/display_tbl.lib.php:2492
+#: libraries/display_tbl.lib.php:4019
#: libraries/schema/User_Schema.class.php:200
#: libraries/schema/User_Schema.class.php:276
#: libraries/schema/User_Schema.class.php:311
#: libraries/schema/User_Schema.class.php:341
#: libraries/sql_query_form.lib.php:410 pmd_general.php:441
-#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:251
+#: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254
#: tbl_tracking.php:499 tbl_tracking.php:520 tbl_tracking.php:579
msgid "Delete"
msgstr "刪除"
@@ -603,11 +604,11 @@ msgstr "追蹤已啓用"
msgid "Tracking is not active."
msgstr "追蹤已停用"
-#: db_structure.php:525 libraries/display_tbl.lib.php:2829
+#: db_structure.php:525 libraries/display_tbl.lib.php:3943
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation"
-"%s."
+"This view has at least this number of rows. Please refer to %sdocumentation%"
+"s."
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194
@@ -617,7 +618,7 @@ msgstr "view"
#: db_structure.php:620 libraries/Menu.class.php:504
#: libraries/db_structure.lib.php:35 server_replication.php:31
-#: server_replication.php:189 server_status.php:610
+#: server_replication.php:189 server_status.php:613
msgid "Replication"
msgstr "複製"
@@ -631,20 +632,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 伺服器的預設儲存引擎"
#: db_structure.php:679 db_structure.php:696 db_structure.php:697
-#: libraries/display_tbl.lib.php:2998 libraries/display_tbl.lib.php:3003
-#: libraries/mult_submits.inc.php:39 server_databases.php:290
+#: libraries/display_tbl.lib.php:4061 libraries/display_tbl.lib.php:4067
+#: libraries/mult_submits.inc.php:38 server_databases.php:290
#: server_databases.php:295 server_privileges.php:1920
#: server_privileges.php:1928 tbl_structure.php:559 tbl_structure.php:568
msgid "With selected:"
msgstr "選中項:"
-#: db_structure.php:682 libraries/display_tbl.lib.php:2989
+#: db_structure.php:682 libraries/display_tbl.lib.php:4049
#: server_databases.php:292 server_privileges.php:781
#: server_privileges.php:1923 tbl_structure.php:562
msgid "Check All"
msgstr "全選"
-#: db_structure.php:686 libraries/display_tbl.lib.php:2992
+#: db_structure.php:686 libraries/display_tbl.lib.php:4053
#: libraries/replication_gui.lib.php:35 server_databases.php:294
#: server_privileges.php:784 server_privileges.php:1927 tbl_structure.php:566
msgid "Uncheck All"
@@ -656,27 +657,27 @@ msgstr "僅選擇多餘"
#: db_structure.php:699 libraries/Menu.class.php:288
#: libraries/Menu.class.php:378 libraries/Menu.class.php:477
-#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
#: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82
-#: libraries/display_tbl.lib.php:3016 libraries/display_tbl.lib.php:3174
+#: libraries/display_tbl.lib.php:4082 libraries/display_tbl.lib.php:4256
#: prefs_manage.php:294 server_privileges.php:1565 server_privileges.php:1932
-#: server_status.php:1625 setup/frames/menu.inc.php:22
+#: server_status.php:1628 setup/frames/menu.inc.php:22
msgid "Export"
msgstr "匯出"
#: db_structure.php:701 db_structure.php:749
-#: libraries/display_tbl.lib.php:3115 libraries/header_printview.inc.php:42
+#: libraries/display_tbl.lib.php:4190 libraries/header_printview.inc.php:42
#: tbl_structure.php:654
msgid "Print view"
msgstr "列印預覽"
-#: db_structure.php:705 libraries/common.lib.php:3388
-#: libraries/common.lib.php:3389
+#: db_structure.php:705 libraries/common.lib.php:3390
+#: libraries/common.lib.php:3391
msgid "Empty"
msgstr "清空"
#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507
-#: libraries/common.lib.php:3386 libraries/common.lib.php:3387
+#: libraries/common.lib.php:3388 libraries/common.lib.php:3389
#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147
#: tbl_structure.php:583
msgid "Drop"
@@ -702,11 +703,11 @@ msgstr "分析表"
msgid "Add prefix to table"
msgstr "資料表名稱增加前綴文字"
-#: db_structure.php:721 libraries/mult_submits.inc.php:276
+#: db_structure.php:721 libraries/mult_submits.inc.php:275
msgid "Replace table prefix"
msgstr "覆蓋資料表名稱的前綴文字"
-#: db_structure.php:723 libraries/mult_submits.inc.php:276
+#: db_structure.php:723 libraries/mult_submits.inc.php:275
msgid "Copy table with prefix"
msgstr "複製資料表名稱的前綴文字"
@@ -725,8 +726,8 @@ msgstr "已追蹤的表"
#: libraries/export/texytext.php:102 libraries/export/xml.php:330
#: server_databases.php:186 server_privileges.php:2008
#: server_privileges.php:2071 server_privileges.php:2334
-#: server_status.php:1254 server_synchronize.php:1448
-#: server_synchronize.php:1452 sql.php:933 tbl_tracking.php:710
+#: server_status.php:1257 server_synchronize.php:1448
+#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710
msgid "Database"
msgstr "資料庫"
@@ -744,7 +745,7 @@ msgstr "更新"
#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467
#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78
-#: server_status.php:1257 sql.php:1006 tbl_tracking.php:715
+#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715
msgid "Status"
msgstr "狀態"
@@ -843,49 +844,49 @@ msgstr "使用OpenStreetMaps"
msgid "SRID"
msgstr ""
-#: gis_data_editor.php:151 js/messages.php:330
-#: libraries/display_tbl.lib.php:825
+#: gis_data_editor.php:151 js/messages.php:326
+#: libraries/display_tbl.lib.php:1314
msgid "Geometry"
msgstr ""
-#: gis_data_editor.php:171 js/messages.php:326
+#: gis_data_editor.php:171 js/messages.php:322
msgid "Point"
msgstr ""
#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244
-#: gis_data_editor.php:296 js/messages.php:324
+#: gis_data_editor.php:296 js/messages.php:320
msgid "X"
msgstr ""
#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246
-#: gis_data_editor.php:298 js/messages.php:325
+#: gis_data_editor.php:298 js/messages.php:321
msgid "Y"
msgstr ""
#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294
-#: js/messages.php:327
+#: js/messages.php:323
#, php-format
msgid "Point %d"
msgstr ""
#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301
-#: js/messages.php:333
+#: js/messages.php:329
#, fuzzy
#| msgid "Add index"
msgid "Add a point"
msgstr "新增索引"
-#: gis_data_editor.php:219 js/messages.php:328
+#: gis_data_editor.php:219 js/messages.php:324
#, fuzzy
#| msgid "Lines terminated by"
msgid "Linestring"
msgstr "資料分行使用字元:"
-#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:332
+#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328
msgid "Outer Ring"
msgstr ""
-#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:331
+#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327
msgid "Inner Ring"
msgstr ""
@@ -895,17 +896,17 @@ msgstr ""
msgid "Add a linestring"
msgstr "新增新使用者"
-#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:334
+#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330
#, fuzzy
#| msgid "Add a new User"
msgid "Add an inner ring"
msgstr "新增新使用者"
-#: gis_data_editor.php:265 js/messages.php:329
+#: gis_data_editor.php:265 js/messages.php:325
msgid "Polygon"
msgstr "多邊形"
-#: gis_data_editor.php:305 js/messages.php:335
+#: gis_data_editor.php:305 js/messages.php:331
#, fuzzy
#| msgid "Add column"
msgid "Add a polygon"
@@ -930,8 +931,8 @@ msgstr ""
#: import.php:86
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation"
-"%s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation%"
+"s for ways to workaround this limit."
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
#: import.php:216 import.php:443
@@ -975,7 +976,7 @@ msgstr ""
msgid "Could not load import plugins, please check your installation!"
msgstr "無法載入匯入插件,請檢查您的安裝!"
-#: import.php:445 sql.php:1045
+#: import.php:445 sql.php:1042
#, php-format
msgid "Bookmark %s created"
msgstr "已建立書籤 %s"
@@ -1001,7 +1002,7 @@ msgstr ""
"將無法完成匯入操作"
#: import.php:496 libraries/Message.class.php:180
-#: libraries/display_tbl.lib.php:2868 libraries/rte/rte_routines.lib.php:1211
+#: libraries/display_tbl.lib.php:3564 libraries/rte/rte_routines.lib.php:1211
#: libraries/sql_query_form.lib.php:114 tbl_operations.php:231
#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55
msgid "Your SQL query has been executed successfully"
@@ -1016,7 +1017,7 @@ msgstr "返回"
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器."
-#: js/messages.php:27 libraries/import.lib.php:105 sql.php:292
+#: js/messages.php:27 libraries/import.lib.php:105 sql.php:290
msgid "\"DROP DATABASE\" statements are disabled."
msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令"
@@ -1026,7 +1027,7 @@ msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令"
msgid "Do you really want to execute \"%s\"?"
msgstr "您真的要"
-#: js/messages.php:31 libraries/mult_submits.inc.php:307 sql.php:390
+#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388
msgid "You are about to DESTROY a complete database!"
msgstr "您將要刪除一個完整的資料庫!"
@@ -1117,21 +1118,21 @@ msgstr "關閉"
#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485
#: libraries/common.lib.php:667 libraries/common.lib.php:1211
-#: libraries/common.lib.php:3390 libraries/common.lib.php:3391
-#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:1622
+#: libraries/common.lib.php:3392 libraries/common.lib.php:3393
+#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2427
#: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147
msgid "Edit"
msgstr "編輯"
-#: js/messages.php:62 server_status.php:807
+#: js/messages.php:62 server_status.php:810
msgid "Live traffic chart"
msgstr "即時流量圖表"
-#: js/messages.php:63 server_status.php:810
+#: js/messages.php:63 server_status.php:813
msgid "Live conn./process chart"
msgstr "即時連線圖表"
-#: js/messages.php:64 server_status.php:828
+#: js/messages.php:64 server_status.php:831
msgid "Live query chart"
msgstr "即時查詢圖表"
@@ -1142,23 +1143,23 @@ msgstr "靜態資料"
#. l10n: Total number of queries
#: js/messages.php:68 libraries/build_html_for_db.lib.php:46
#: libraries/engines/innodb.lib.php:161 server_databases.php:249
-#: server_status.php:1132 server_status.php:1201 tbl_printview.php:333
+#: server_status.php:1135 server_status.php:1204 tbl_printview.php:333
#: tbl_structure.php:870
msgid "Total"
msgstr "總計"
#. l10n: Other, small valued, queries
-#: js/messages.php:70 server_status.php:616 server_status.php:1026
+#: js/messages.php:70 server_status.php:619 server_status.php:1029
msgid "Other"
msgstr "其他"
#. l10n: Thousands separator
-#: js/messages.php:72 libraries/common.lib.php:1468
+#: js/messages.php:72 libraries/common.lib.php:1462
msgid ","
msgstr ","
#. l10n: Decimal separator
-#: js/messages.php:74 libraries/common.lib.php:1470
+#: js/messages.php:74 libraries/common.lib.php:1464
msgid "."
msgstr "."
@@ -1178,7 +1179,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)"
msgid "Connections since last refresh"
msgstr "最後一次連線"
-#: js/messages.php:80 js/messages.php:118 server_status.php:1250
+#: js/messages.php:80 js/messages.php:118 server_status.php:1253
msgid "Processes"
msgstr "處理"
@@ -1198,7 +1199,7 @@ msgstr "最後一次連線"
msgid "Questions (executed statements by the server)"
msgstr ""
-#: js/messages.php:87 server_status.php:789
+#: js/messages.php:87 server_status.php:792
msgid "Query statistics"
msgstr "查詢統計"
@@ -1247,14 +1248,14 @@ msgid "System swap"
msgstr "系統Swap"
#. l10n: shortcuts for Megabyte
-#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1418
-#: server_status.php:1705
+#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1412
+#: server_status.php:1708
msgid "MiB"
msgstr "MB"
#. l10n: shortcuts for Kilobyte
-#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1416
-#: server_status.php:1705
+#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1410
+#: server_status.php:1708
msgid "KiB"
msgstr "KB"
@@ -1312,32 +1313,32 @@ msgstr "Bytes 送出"
msgid "Bytes received"
msgstr "Bytes 已接收"
-#: js/messages.php:117 server_status.php:1155
+#: js/messages.php:117 server_status.php:1158
msgid "Connections"
msgstr "連線"
#. l10n: shortcuts for Byte
-#: js/messages.php:121 libraries/common.lib.php:1414
+#: js/messages.php:121 libraries/common.lib.php:1408
msgid "B"
msgstr "B"
#. l10n: shortcuts for Gigabyte
-#: js/messages.php:124 libraries/common.lib.php:1420
+#: js/messages.php:124 libraries/common.lib.php:1414
msgid "GiB"
msgstr "GB"
#. l10n: shortcuts for Terabyte
-#: js/messages.php:125 libraries/common.lib.php:1422
+#: js/messages.php:125 libraries/common.lib.php:1416
msgid "TiB"
msgstr "TB"
#. l10n: shortcuts for Petabyte
-#: js/messages.php:126 libraries/common.lib.php:1424
+#: js/messages.php:126 libraries/common.lib.php:1418
msgid "PiB"
msgstr "PB"
#. l10n: shortcuts for Exabyte
-#: js/messages.php:127 libraries/common.lib.php:1426
+#: js/messages.php:127 libraries/common.lib.php:1420
msgid "EiB"
msgstr "EB"
@@ -1355,11 +1356,11 @@ msgstr "%s 張資料表"
msgid "Questions"
msgstr "版本"
-#: js/messages.php:132 server_status.php:1104
+#: js/messages.php:132 server_status.php:1107
msgid "Traffic"
msgstr "流量"
-#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1580
+#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583
msgid "Settings"
msgstr "設定"
@@ -1382,10 +1383,10 @@ msgid "Please add at least one variable to the series"
msgstr "請至少增加一個變數"
#: js/messages.php:139 libraries/display_export.lib.php:323
-#: libraries/display_tbl.lib.php:677 libraries/export/sql.php:1395
+#: libraries/display_tbl.lib.php:1165 libraries/export/sql.php:1395
#: libraries/tbl_properties.inc.php:638 pmd_general.php:528
-#: server_privileges.php:2224 server_status.php:1283 server_status.php:1722
-#: tbl_zoom_select.php:226 tbl_zoom_select.php:270
+#: server_privileges.php:2224 server_status.php:1286 server_status.php:1725
+#: tbl_zoom_select.php:233 tbl_zoom_select.php:282
msgid "None"
msgstr "無"
@@ -1484,7 +1485,7 @@ msgstr "管理我的設定"
msgid "Current settings"
msgstr "更多設定"
-#: js/messages.php:164 server_status.php:1670
+#: js/messages.php:164 server_status.php:1673
#, fuzzy
#| msgid "Report title:"
msgid "Chart Title"
@@ -1525,7 +1526,6 @@ msgid "Analysing & loading logs. This may take a while."
msgstr ""
#: js/messages.php:174
-#| msgid "Read requests"
msgid "Cancel request"
msgstr "取消請求"
@@ -1575,9 +1575,9 @@ msgstr "分析"
msgid "Explain output"
msgstr "SQL說明 "
-#: js/messages.php:186 js/messages.php:520 libraries/export/htmlword.php:449
+#: js/messages.php:186 js/messages.php:516 libraries/export/htmlword.php:449
#: libraries/export/odt.php:534 libraries/export/texytext.php:408
-#: libraries/rte/rte_list.lib.php:68 server_status.php:1256 sql.php:1007
+#: libraries/rte/rte_list.lib.php:68 server_status.php:1259 sql.php:1005
msgid "Time"
msgstr "時間"
@@ -1689,7 +1689,7 @@ msgstr ""
#: js/messages.php:212 libraries/Menu.class.php:297
#: libraries/Menu.class.php:384 libraries/Menu.class.php:481
#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175
-#: prefs_manage.php:237 server_status.php:1625 setup/frames/menu.inc.php:21
+#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21
msgid "Import"
msgstr "輸入"
@@ -1825,19 +1825,19 @@ msgstr "新增索引"
msgid "Show indexes"
msgstr "顯示網格"
-#: js/messages.php:257 libraries/mult_submits.inc.php:317
+#: js/messages.php:257 libraries/mult_submits.inc.php:316
#, fuzzy
#| msgid "Disable foreign key checks"
msgid "Foreign key check:"
msgstr "關閉外鍵 (Foreign Key) 檢查"
-#: js/messages.php:258 libraries/mult_submits.inc.php:321
+#: js/messages.php:258 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Enabled"
msgid "(Enabled)"
msgstr "已啓用"
-#: js/messages.php:259 libraries/mult_submits.inc.php:321
+#: js/messages.php:259 libraries/mult_submits.inc.php:320
#, fuzzy
#| msgid "Disabled"
msgid "(Disabled)"
@@ -1912,7 +1912,7 @@ msgstr "顯示查詢框"
msgid "No rows selected"
msgstr "沒有選中任何行"
-#: js/messages.php:286 libraries/display_tbl.lib.php:3007 querywindow.php:88
+#: js/messages.php:286 libraries/display_tbl.lib.php:4071 querywindow.php:88
#: tbl_structure.php:145 tbl_structure.php:579
msgid "Change"
msgstr "修改"
@@ -1923,17 +1923,18 @@ msgstr "修改"
msgid "Query execution time"
msgstr "最長執行時間"
-#: js/messages.php:288 libraries/display_tbl.lib.php:472
-#: libraries/display_tbl.lib.php:474
+#: js/messages.php:288 libraries/display_tbl.lib.php:438
+#: libraries/display_tbl.lib.php:444
#, php-format
msgid "%d is not valid row number."
msgstr "%d 不是有效行數"
#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385
+#: libraries/insert_edit.lib.php:1304
#: libraries/schema/User_Schema.class.php:355
#: libraries/tbl_properties.inc.php:886 setup/frames/config.inc.php:39
-#: setup/frames/index.inc.php:243 tbl_change.php:1061
-#: tbl_gis_visualization.php:186 tbl_indexes.php:298 tbl_relation.php:569
+#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:186
+#: tbl_indexes.php:298 tbl_relation.php:569
msgid "Save"
msgstr "儲存"
@@ -1960,174 +1961,166 @@ msgid "Hovering over a point will show its label."
msgstr ""
#: js/messages.php:304
-msgid "Use mousewheel to zoom in or out of the plot."
+msgid "To zoom in, select a section of the plot with the mouse."
msgstr ""
#: js/messages.php:306
-msgid "Click and drag the mouse to navigate the plot."
-msgstr ""
-
-#: js/messages.php:308
msgid "Click reset zoom link to come back to original state."
msgstr ""
-#: js/messages.php:310
+#: js/messages.php:308
msgid "Click a data point to view and possibly edit the data row."
msgstr ""
-#: js/messages.php:312
+#: js/messages.php:310
msgid "The plot can be resized by dragging it along the bottom right corner."
msgstr ""
-#: js/messages.php:314
-msgid "Strings are converted into integer for plotting"
-msgstr ""
-
-#: js/messages.php:316
+#: js/messages.php:312
#, fuzzy
#| msgid "Add/Delete columns"
msgid "Select two columns"
msgstr "新增/刪除欄位"
-#: js/messages.php:317
+#: js/messages.php:313
msgid "Select two different columns"
msgstr ""
-#: js/messages.php:318
+#: js/messages.php:314
#, fuzzy
#| msgid "Query results operations"
msgid "Query results"
msgstr "查詢結果選項"
-#: js/messages.php:319
+#: js/messages.php:315
#, fuzzy
#| msgid "Data pointer size"
msgid "Data point content"
msgstr "資料指標大小"
-#: js/messages.php:322 tbl_change.php:323 tbl_indexes.php:237
+#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237
#: tbl_indexes.php:272
msgid "Ignore"
msgstr "忽略"
-#: js/messages.php:323 libraries/display_tbl.lib.php:1623
+#: js/messages.php:319 libraries/display_tbl.lib.php:2428
msgid "Copy"
msgstr "複製"
-#: js/messages.php:338
+#: js/messages.php:334
#, fuzzy
#| msgid "Add column"
msgid "Add columns"
msgstr "新增欄位"
-#: js/messages.php:341
+#: js/messages.php:337
msgid "Select referenced key"
msgstr "選擇外部鍵"
-#: js/messages.php:342
+#: js/messages.php:338
msgid "Select Foreign Key"
msgstr "選擇外部鍵"
-#: js/messages.php:343
+#: js/messages.php:339
msgid "Please select the primary key or a unique key"
msgstr "請選擇主鍵或唯一鍵"
-#: js/messages.php:344 pmd_general.php:92 tbl_relation.php:551
+#: js/messages.php:340 pmd_general.php:92 tbl_relation.php:551
msgid "Choose column to display"
msgstr "選擇要顯示的欄位"
-#: js/messages.php:345
+#: js/messages.php:341
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:348
+#: js/messages.php:344
msgid "Add an option for column "
msgstr "新增選項給欄位 "
-#: js/messages.php:351
+#: js/messages.php:347
msgid "Press escape to cancel editing"
msgstr ""
-#: js/messages.php:352
+#: js/messages.php:348
msgid ""
"You have edited some data and they have not been saved. Are you sure you "
"want to leave this page before saving the data?"
msgstr ""
-#: js/messages.php:353
+#: js/messages.php:349
msgid "Drag to reorder"
msgstr ""
-#: js/messages.php:354
+#: js/messages.php:350
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "點擊選取"
-#: js/messages.php:355
+#: js/messages.php:351
msgid "Click to mark/unmark"
msgstr ""
-#: js/messages.php:356
+#: js/messages.php:352
msgid "Double-click to copy column name"
msgstr ""
-#: js/messages.php:357
+#: js/messages.php:353
msgid "Click the drop-down arrow to toggle column's visibility"
msgstr ""
-#: js/messages.php:359
+#: js/messages.php:355
msgid ""
"This table does not contain a unique column. Features related to the grid "
"edit, checkbox, Edit, Copy and Delete links may not work after saving."
msgstr ""
-#: js/messages.php:360
+#: js/messages.php:356
msgid ""
"You can also edit most columns by clicking directly on their content."
msgstr ""
-#: js/messages.php:361
+#: js/messages.php:357
#, fuzzy
#| msgid "Go to view"
msgid "Go to link"
msgstr "轉到 view"
-#: js/messages.php:362
+#: js/messages.php:358
#, fuzzy
#| msgid "Column names"
msgid "Copy column name"
msgstr "欄位名稱"
-#: js/messages.php:363
+#: js/messages.php:359
msgid "Right-click the column name to copy it to your clipboard."
msgstr ""
-#: js/messages.php:364
+#: js/messages.php:360
#, fuzzy
#| msgid "Update row(s)"
msgid "Show data row(s)"
msgstr "更新行"
-#: js/messages.php:367
+#: js/messages.php:363
msgid "Generate password"
msgstr "產生密碼"
-#: js/messages.php:368 libraries/replication_gui.lib.php:369
+#: js/messages.php:364 libraries/replication_gui.lib.php:369
msgid "Generate"
msgstr "產生"
-#: js/messages.php:369
+#: js/messages.php:365
msgid "Change Password"
msgstr "修改密碼"
-#: js/messages.php:372 tbl_structure.php:467
+#: js/messages.php:368 tbl_structure.php:467
msgid "More"
msgstr "更多"
-#: js/messages.php:375 setup/lib/index.lib.php:188
+#: js/messages.php:371 setup/lib/index.lib.php:188
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@@ -2135,21 +2128,21 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈"
#. l10n: Latest available phpMyAdmin version
-#: js/messages.php:377
+#: js/messages.php:373
msgid ", latest stable version:"
msgstr ",最新穩定版本:"
-#: js/messages.php:378
+#: js/messages.php:374
msgid "up to date"
msgstr "最新"
#. l10n: Display text for calendar close link
-#: js/messages.php:397
+#: js/messages.php:393
msgid "Done"
msgstr "完成"
# 這應該是使用於選擇日期的月曆
-#: js/messages.php:401
+#: js/messages.php:397
#, fuzzy
#| msgid "Prev"
msgctxt "Previous month"
@@ -2157,7 +2150,7 @@ msgid "Prev"
msgstr "上個月"
# 這應該使用於選擇日期的小月曆
-#: js/messages.php:406
+#: js/messages.php:402
#, fuzzy
#| msgid "Next"
msgctxt "Next month"
@@ -2165,246 +2158,244 @@ msgid "Next"
msgstr "下個月"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:409
+#: js/messages.php:405
msgid "Today"
msgstr "今天"
-#: js/messages.php:413
+#: js/messages.php:409
msgid "January"
msgstr "一月"
-#: js/messages.php:414
+#: js/messages.php:410
msgid "February"
msgstr "二月"
-#: js/messages.php:415
+#: js/messages.php:411
msgid "March"
msgstr "三月"
-#: js/messages.php:416
+#: js/messages.php:412
msgid "April"
msgstr "四月"
-#: js/messages.php:417
+#: js/messages.php:413
msgid "May"
msgstr "五月"
-#: js/messages.php:418
+#: js/messages.php:414
msgid "June"
msgstr "六月"
-#: js/messages.php:419
+#: js/messages.php:415
msgid "July"
msgstr "七月"
-#: js/messages.php:420
+#: js/messages.php:416
msgid "August"
msgstr "八月"
-#: js/messages.php:421
+#: js/messages.php:417
msgid "September"
msgstr "九月"
-#: js/messages.php:422
+#: js/messages.php:418
msgid "October"
msgstr "十月"
-#: js/messages.php:423
+#: js/messages.php:419
msgid "November"
msgstr "十一月"
-#: js/messages.php:424
+#: js/messages.php:420
msgid "December"
msgstr "十二月"
#. l10n: Short month name
-#: js/messages.php:431 libraries/common.lib.php:1626
+#: js/messages.php:427 libraries/common.lib.php:1620
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:433 libraries/common.lib.php:1628
+#: js/messages.php:429 libraries/common.lib.php:1622
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:435 libraries/common.lib.php:1630
+#: js/messages.php:431 libraries/common.lib.php:1624
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:437 libraries/common.lib.php:1632
+#: js/messages.php:433 libraries/common.lib.php:1626
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:439 libraries/common.lib.php:1634
+#: js/messages.php:435 libraries/common.lib.php:1628
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:441 libraries/common.lib.php:1636
+#: js/messages.php:437 libraries/common.lib.php:1630
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:443 libraries/common.lib.php:1638
+#: js/messages.php:439 libraries/common.lib.php:1632
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:445 libraries/common.lib.php:1640
+#: js/messages.php:441 libraries/common.lib.php:1634
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:447 libraries/common.lib.php:1642
+#: js/messages.php:443 libraries/common.lib.php:1636
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:449 libraries/common.lib.php:1644
+#: js/messages.php:445 libraries/common.lib.php:1638
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:451 libraries/common.lib.php:1646
+#: js/messages.php:447 libraries/common.lib.php:1640
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:453 libraries/common.lib.php:1648
+#: js/messages.php:449 libraries/common.lib.php:1642
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:459
+#: js/messages.php:455
msgid "Sunday"
msgstr "星期日"
-#: js/messages.php:460
+#: js/messages.php:456
msgid "Monday"
msgstr "星期一"
-#: js/messages.php:461
+#: js/messages.php:457
msgid "Tuesday"
msgstr "星期二"
-#: js/messages.php:462
+#: js/messages.php:458
msgid "Wednesday"
msgstr "星期三"
-#: js/messages.php:463
+#: js/messages.php:459
msgid "Thursday"
msgstr "星期四"
-#: js/messages.php:464
+#: js/messages.php:460
msgid "Friday"
msgstr "星期五"
-#: js/messages.php:465
+#: js/messages.php:461
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
-#: js/messages.php:472
-#| msgctxt "Short week day name"
-#| msgid "Sun"
+#: js/messages.php:468
msgid "Sun"
msgstr "週日"
#. l10n: Short week day name
-#: js/messages.php:474 libraries/common.lib.php:1653
+#: js/messages.php:470 libraries/common.lib.php:1647
msgid "Mon"
msgstr "週一"
#. l10n: Short week day name
-#: js/messages.php:476 libraries/common.lib.php:1655
+#: js/messages.php:472 libraries/common.lib.php:1649
msgid "Tue"
msgstr "週二"
#. l10n: Short week day name
-#: js/messages.php:478 libraries/common.lib.php:1657
+#: js/messages.php:474 libraries/common.lib.php:1651
msgid "Wed"
msgstr "週三"
#. l10n: Short week day name
-#: js/messages.php:480 libraries/common.lib.php:1659
+#: js/messages.php:476 libraries/common.lib.php:1653
msgid "Thu"
msgstr "週四"
#. l10n: Short week day name
-#: js/messages.php:482 libraries/common.lib.php:1661
+#: js/messages.php:478 libraries/common.lib.php:1655
msgid "Fri"
msgstr "週五"
#. l10n: Short week day name
-#: js/messages.php:484 libraries/common.lib.php:1663
+#: js/messages.php:480 libraries/common.lib.php:1657
msgid "Sat"
msgstr "週六"
#. l10n: Minimal week day name
-#: js/messages.php:491
+#: js/messages.php:487
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:493
+#: js/messages.php:489
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
-#: js/messages.php:495
+#: js/messages.php:491
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
-#: js/messages.php:497
+#: js/messages.php:493
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
-#: js/messages.php:499
+#: js/messages.php:495
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
-#: js/messages.php:501
+#: js/messages.php:497
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
-#: js/messages.php:503
+#: js/messages.php:499
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:507
+#: js/messages.php:503
msgid "Wk"
msgstr "周"
#. l10n: Month-year order for calendar, use either "calendar-month-year" or "calendar-year-month".
-#: js/messages.php:510
+#: js/messages.php:506
msgid "calendar-month-year"
msgstr ""
#. l10n: Year suffix for calendar, "none" is empty.
-#: js/messages.php:512
+#: js/messages.php:508
#, fuzzy
#| msgid "None"
msgctxt "Year suffix"
msgid "none"
msgstr "無"
-#: js/messages.php:521
+#: js/messages.php:517
msgid "Hour"
msgstr "時"
-#: js/messages.php:522
+#: js/messages.php:518
msgid "Minute"
msgstr "分"
-#: js/messages.php:523
+#: js/messages.php:519
msgid "Second"
msgstr "秒"
@@ -2455,16 +2446,16 @@ msgstr ""
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
msgstr ""
-#: libraries/Advisor.class.php:425 server_status.php:956
+#: libraries/Advisor.class.php:425 server_status.php:959
msgid "per second"
msgstr "每秒"
-#: libraries/Advisor.class.php:428 server_status.php:951
+#: libraries/Advisor.class.php:428 server_status.php:954
msgid "per minute"
msgstr "每分鐘"
-#: libraries/Advisor.class.php:431 server_status.php:947 server_status.php:983
-#: server_status.php:1105 server_status.php:1156
+#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986
+#: server_status.php:1108 server_status.php:1159
msgid "per hour"
msgstr "每小時"
@@ -2591,15 +2582,15 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除
msgid "Databases"
msgstr "資料庫"
-#: libraries/Menu.class.php:154 libraries/common.inc.php:690
-#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:788
+#: libraries/Menu.class.php:154 libraries/common.inc.php:684
+#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791
#: server_synchronize.php:1428
msgid "Server"
msgstr "伺服器"
#: libraries/Menu.class.php:269 libraries/Menu.class.php:362
-#: libraries/common.lib.php:3145 libraries/common.lib.php:3152
-#: libraries/common.lib.php:3385 libraries/config/setup.forms.php:295
+#: libraries/common.lib.php:3147 libraries/common.lib.php:3154
+#: libraries/common.lib.php:3387 libraries/config/setup.forms.php:295
#: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358
#: libraries/config/user_preferences.forms.php:196
#: libraries/config/user_preferences.forms.php:233
@@ -2611,20 +2602,20 @@ msgid "Structure"
msgstr "結構"
#: libraries/Menu.class.php:273 libraries/Menu.class.php:367
-#: libraries/Menu.class.php:463 libraries/common.lib.php:3146
-#: libraries/common.lib.php:3153 libraries/config/messages.inc.php:218
+#: libraries/Menu.class.php:463 libraries/common.lib.php:3148
+#: libraries/common.lib.php:3155 libraries/config/messages.inc.php:218
#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65
msgid "SQL"
msgstr "SQL"
-#: libraries/Menu.class.php:282 libraries/common.lib.php:3148
-#: libraries/common.lib.php:3383 libraries/common.lib.php:3384
+#: libraries/Menu.class.php:282 libraries/common.lib.php:3150
+#: libraries/common.lib.php:3385 libraries/common.lib.php:3386
#: libraries/sql_query_form.lib.php:289 libraries/sql_query_form.lib.php:292
msgid "Insert"
msgstr "插入"
#: libraries/Menu.class.php:301 libraries/Menu.class.php:324
-#: libraries/Menu.class.php:388 libraries/common.lib.php:3155
+#: libraries/Menu.class.php:388 libraries/common.lib.php:3157
#: view_operations.php:82
msgid "Operations"
msgstr "操作"
@@ -2684,12 +2675,12 @@ msgstr "使用者"
msgid "Synchronize"
msgstr "同步"
-#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:605
+#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608
msgid "Binary log"
msgstr "二進制日誌"
#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98
-#: server_status.php:658
+#: server_status.php:661
msgid "Variables"
msgstr "變數"
@@ -2706,8 +2697,9 @@ msgid "Engines"
msgstr "引擎"
#: libraries/Message.class.php:199 libraries/common.lib.php:629
-#: libraries/core.lib.php:217 libraries/import.lib.php:141 tbl_change.php:932
-#: tbl_operations.php:231 tbl_relation.php:288 view_operations.php:55
+#: libraries/core.lib.php:217 libraries/import.lib.php:141
+#: libraries/insert_edit.lib.php:1050 tbl_operations.php:231
+#: tbl_relation.php:288 view_operations.php:55
msgid "Error"
msgstr "錯誤"
@@ -2823,35 +2815,35 @@ msgid ""
"changed."
msgstr ""
-#: libraries/Theme.class.php:154
+#: libraries/Theme.class.php:159
#, php-format
msgid "No valid image path for theme %s found!"
msgstr "找不到佈景主題 %s 指定圖片路徑!"
-#: libraries/Theme.class.php:383
+#: libraries/Theme.class.php:377
msgid "No preview available."
msgstr "沒有可用的預覽。"
-#: libraries/Theme.class.php:386
+#: libraries/Theme.class.php:380
msgid "take it"
msgstr "確定"
-#: libraries/Theme_Manager.class.php:114
+#: libraries/Theme_Manager.class.php:137
#, php-format
msgid "Default theme %s not found!"
msgstr "未找到預設主題 %s !"
-#: libraries/Theme_Manager.class.php:157
+#: libraries/Theme_Manager.class.php:194
#, php-format
msgid "Theme %s not found!"
msgstr "未找到主題 %s !"
-#: libraries/Theme_Manager.class.php:229
+#: libraries/Theme_Manager.class.php:271
#, php-format
msgid "Theme path not found for theme %s!"
msgstr "找不到主題 %s 的路徑"
-#: libraries/Theme_Manager.class.php:313 themes.php:20 themes.php:27
+#: libraries/Theme_Manager.class.php:358 themes.php:20 themes.php:27
msgid "Theme"
msgstr "主題"
@@ -2892,14 +2884,14 @@ msgstr ""
#: libraries/Types.class.php:301
msgid ""
-"A small floating-point number, allowable values are -3.402823466E+38 to "
-"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
+"A small floating-point number, allowable values are -3.402823466E+38 to -"
+"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38"
msgstr ""
#: libraries/Types.class.php:303
msgid ""
-"A double-precision floating-point number, allowable values are "
-"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
+"A double-precision floating-point number, allowable values are -"
+"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and "
"2.2250738585072014E-308 to 1.7976931348623157E+308"
msgstr ""
@@ -3159,8 +3151,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:103
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the "
-"%1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the %"
+"1$ssetup script%2$s to create one."
msgstr ""
"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案"
@@ -3263,7 +3255,7 @@ msgstr "已共享"
#: libraries/build_html_for_db.lib.php:26
#: libraries/config/messages.inc.php:187 libraries/export/xml.php:61
-#: server_status.php:612
+#: server_status.php:615
msgid "Tables"
msgstr "資料表"
@@ -3314,24 +3306,24 @@ msgstr ""
msgid "numeric key detected"
msgstr ""
-#: libraries/common.inc.php:614
+#: libraries/common.inc.php:608
#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
msgstr "無法儲存設定"
-#: libraries/common.inc.php:616
+#: libraries/common.inc.php:610
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
-#: libraries/common.inc.php:623
+#: libraries/common.inc.php:617
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "無法載入預設設定: %1$s"
-#: libraries/common.inc.php:630
+#: libraries/common.inc.php:624
#, fuzzy
#| msgid ""
#| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
@@ -3341,21 +3333,21 @@ msgid ""
"configuration file!"
msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !"
-#: libraries/common.inc.php:663
+#: libraries/common.inc.php:657
#, php-format
msgid "Invalid server index: %s"
msgstr "無效的伺服器索引: %s"
-#: libraries/common.inc.php:674
+#: libraries/common.inc.php:668
#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案."
-#: libraries/common.inc.php:883
+#: libraries/common.inc.php:877
msgid "Invalid authentication method set in configuration:"
msgstr "設定檔案中設定的認證方式無效:"
-#: libraries/common.inc.php:1006
+#: libraries/common.inc.php:1000
#, php-format
msgid "You should upgrade to %s %s or later."
msgstr "您應升級到 %s %s 或更高版本。"
@@ -3390,8 +3382,8 @@ msgctxt "MySQL 5.0 documentation language"
msgid "en"
msgstr "zh"
-#: libraries/common.lib.php:642 server_status.php:599 server_status.php:1259
-#: sql.php:936
+#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262
+#: sql.php:934
msgid "SQL query"
msgstr "SQL 查詢"
@@ -3429,7 +3421,7 @@ msgid "Create PHP Code"
msgstr "建立 PHP 程式碼"
#: libraries/common.lib.php:1247 libraries/config/messages.inc.php:492
-#: server_status.php:799 server_status.php:821 server_status.php:841
+#: server_status.php:802 server_status.php:824 server_status.php:844
msgid "Refresh"
msgstr "重新整理"
@@ -3450,43 +3442,43 @@ msgctxt "Inline edit query"
msgid "Inline"
msgstr "行間"
-#: libraries/common.lib.php:1389 sql.php:1002
+#: libraries/common.lib.php:1382 sql.php:1000
msgid "Profiling"
msgstr "概要"
#. l10n: Short week day name
-#: libraries/common.lib.php:1651
+#: libraries/common.lib.php:1645
msgctxt "Short week day name"
msgid "Sun"
msgstr "週日"
#. l10n: See http://www.php.net/manual/en/function.strftime.php
-#: libraries/common.lib.php:1667
+#: libraries/common.lib.php:1661
#: libraries/transformations/text_plain__dateformat.inc.php:37
msgid "%B %d, %Y at %I:%M %p"
msgstr "%Y 年 %m 月 %d 日 %H:%M"
-#: libraries/common.lib.php:2000
+#: libraries/common.lib.php:1994
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr "%s 天 %s 小時,%s 分 %s 秒"
-#: libraries/common.lib.php:2089
+#: libraries/common.lib.php:2083
#, fuzzy
#| msgid "Routines"
msgid "Missing parameter:"
msgstr "一般"
-#: libraries/common.lib.php:2469 libraries/common.lib.php:2472
-#: libraries/display_tbl.lib.php:330
+#: libraries/common.lib.php:2462 libraries/common.lib.php:2465
+#: libraries/display_tbl.lib.php:481
#, fuzzy
#| msgid "Begin"
msgctxt "First page"
msgid "Begin"
msgstr "開始"
-#: libraries/common.lib.php:2470 libraries/common.lib.php:2473
-#: libraries/display_tbl.lib.php:333 server_binlog.php:130
+#: libraries/common.lib.php:2463 libraries/common.lib.php:2466
+#: libraries/display_tbl.lib.php:484 server_binlog.php:130
#: server_binlog.php:132
#, fuzzy
#| msgid "Previous"
@@ -3495,8 +3487,8 @@ msgid "Previous"
msgstr "上一個"
# 這應該使用於選擇日期的小月曆
-#: libraries/common.lib.php:2500 libraries/common.lib.php:2503
-#: libraries/display_tbl.lib.php:413 server_binlog.php:165
+#: libraries/common.lib.php:2493 libraries/common.lib.php:2496
+#: libraries/display_tbl.lib.php:538 server_binlog.php:165
#: server_binlog.php:167
#, fuzzy
#| msgid "Next"
@@ -3504,54 +3496,54 @@ msgctxt "Next page"
msgid "Next"
msgstr "下個月"
-#: libraries/common.lib.php:2501 libraries/common.lib.php:2504
-#: libraries/display_tbl.lib.php:437
+#: libraries/common.lib.php:2494 libraries/common.lib.php:2497
+#: libraries/display_tbl.lib.php:563
#, fuzzy
#| msgid "End"
msgctxt "Last page"
msgid "End"
msgstr "結束"
-#: libraries/common.lib.php:2571
+#: libraries/common.lib.php:2564
#, php-format
msgid "Jump to database "%s"."
msgstr "跳轉到資料庫“%s”"
-#: libraries/common.lib.php:2593
+#: libraries/common.lib.php:2586
#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s"
-#: libraries/common.lib.php:2749
+#: libraries/common.lib.php:2751
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "點擊選取"
-#: libraries/common.lib.php:3311 libraries/sql_query_form.lib.php:442
+#: libraries/common.lib.php:3313 libraries/sql_query_form.lib.php:442
#: prefs_manage.php:247
msgid "Browse your computer:"
msgstr "從計算機中上傳:"
-#: libraries/common.lib.php:3333
+#: libraries/common.lib.php:3335
#, php-format
msgid "Select from the web server upload directory %s:"
msgstr "選擇 Web 伺服器上傳目錄 %s:"
-#: libraries/common.lib.php:3357 libraries/sql_query_form.lib.php:451
-#: tbl_change.php:933
+#: libraries/common.lib.php:3359 libraries/insert_edit.lib.php:1051
+#: libraries/sql_query_form.lib.php:451
msgid "The directory you set for upload work cannot be reached"
msgstr "設定之上傳目錄錯誤,無法使用"
-#: libraries/common.lib.php:3366
+#: libraries/common.lib.php:3368
msgid "There are no files to upload"
msgstr "沒有可上傳的檔案"
-#: libraries/common.lib.php:3394 libraries/common.lib.php:3395
+#: libraries/common.lib.php:3396 libraries/common.lib.php:3397
msgid "Execute"
msgstr "執行"
-#: libraries/common.lib.php:3902
+#: libraries/common.lib.php:3904
msgid "Print"
msgstr "列印"
@@ -3723,9 +3715,9 @@ msgstr "還原預設值"
msgid "Allow users to customize this value"
msgstr "允許使用者自訂該值"
-#: libraries/config/FormDisplay.tpl.php:386
+#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373
#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326
-#: prefs_manage.php:331 tbl_change.php:1110
+#: prefs_manage.php:331
msgid "Reset"
msgstr "重置"
@@ -3881,7 +3873,7 @@ msgid "Compress on the fly"
msgstr "即時壓縮"
#: libraries/config/messages.inc.php:47 setup/frames/config.inc.php:25
-#: setup/frames/index.inc.php:175
+#: setup/frames/index.inc.php:176
msgid "Configuration file"
msgstr "設定檔案"
@@ -3941,7 +3933,7 @@ msgstr "規劃表結構"
msgid "Show binary contents as HEX by default"
msgstr "預設以十六進制顯示二進制內容"
-#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:806
+#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1295
msgid "Show binary contents as HEX"
msgstr "以十六進制顯示二進制內容"
@@ -5765,7 +5757,7 @@ msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽
msgid "Enable the Developer tab in settings"
msgstr "啓用設定中的開發標籤"
-#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:271
+#: libraries/config/messages.inc.php:523 setup/frames/index.inc.php:275
msgid "Check for latest version"
msgstr "檢查更新"
@@ -5907,7 +5899,7 @@ msgstr "缺少 %s 外掛。請檢查 PHP 設定"
msgid "possible deep recursion attack"
msgstr ""
-#: libraries/database_interface.lib.php:1848
+#: libraries/database_interface.lib.php:1936
#, fuzzy
#| msgid "(or the local MySQL server's socket is not correctly configured)"
msgid ""
@@ -5915,21 +5907,21 @@ msgid ""
"configured)."
msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
-#: libraries/database_interface.lib.php:1851
+#: libraries/database_interface.lib.php:1939
#, fuzzy
#| msgid "The server is not responding"
msgid "The server is not responding."
msgstr "伺服器沒有響應"
-#: libraries/database_interface.lib.php:1855
+#: libraries/database_interface.lib.php:1944
msgid "Please check privileges of directory containing database."
msgstr ""
-#: libraries/database_interface.lib.php:1863
+#: libraries/database_interface.lib.php:1953
msgid "Details..."
msgstr "詳細..."
-#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2677
+#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3513
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
@@ -6090,8 +6082,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: "
-"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: %"
+"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下"
"列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s"
@@ -6175,8 +6167,8 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
-"上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google Chrome, Arora 等) 的已知缺陷 "
-"(bug)."
+"上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google "
+"Chrome, Arora 等) 的已知缺陷 (bug)."
#: libraries/display_import.lib.php:69
#, php-format
@@ -6278,58 +6270,61 @@ msgstr "格式特定選項:"
msgid "Language"
msgstr "語系"
-#: libraries/display_tbl.lib.php:454
+#: libraries/display_tbl.lib.php:416
#, fuzzy
#| msgid "Save directory"
msgid "Save edited data"
msgstr "保存文件夾"
-#: libraries/display_tbl.lib.php:460
+#: libraries/display_tbl.lib.php:422
#, fuzzy
#| msgid "Add/Delete Field Columns"
msgid "Restore column order"
msgstr "文字框列"
-#: libraries/display_tbl.lib.php:483
+#: libraries/display_tbl.lib.php:601
#, fuzzy
#| msgid "Textarea rows"
msgid "Start row"
msgstr "文字框行"
-#: libraries/display_tbl.lib.php:487
+#: libraries/display_tbl.lib.php:605
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "記錄數:"
-#: libraries/display_tbl.lib.php:496
+#: libraries/display_tbl.lib.php:614
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "更多"
-#: libraries/display_tbl.lib.php:498
+#: libraries/display_tbl.lib.php:616
msgid "horizontal"
msgstr "水平"
-#: libraries/display_tbl.lib.php:499
+#: libraries/display_tbl.lib.php:617
msgid "horizontal (rotated headers)"
msgstr "水平 (旋轉標題)"
-#: libraries/display_tbl.lib.php:500
+#: libraries/display_tbl.lib.php:618
msgid "vertical"
msgstr "垂直"
-#: libraries/display_tbl.lib.php:511
-#, php-format
-msgid "Headers every %s rows"
+#: libraries/display_tbl.lib.php:629
+msgid "Headers every"
msgstr ""
-#: libraries/display_tbl.lib.php:628
+#: libraries/display_tbl.lib.php:633
+msgid "rows"
+msgstr "瀏覽"
+
+#: libraries/display_tbl.lib.php:1107
msgid "Sort by key"
msgstr "主鍵排序"
-#: libraries/display_tbl.lib.php:737 libraries/export/codegen.php:42
+#: libraries/display_tbl.lib.php:1252 libraries/export/codegen.php:42
#: libraries/export/csv.php:23 libraries/export/excel.php:22
#: libraries/export/htmlword.php:23 libraries/export/json.php:22
#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19
@@ -6347,91 +6342,91 @@ msgstr "主鍵排序"
msgid "Options"
msgstr "選項"
-#: libraries/display_tbl.lib.php:742 libraries/display_tbl.lib.php:763
+#: libraries/display_tbl.lib.php:1257 libraries/display_tbl.lib.php:1366
msgid "Partial texts"
msgstr "部分內容"
-#: libraries/display_tbl.lib.php:743 libraries/display_tbl.lib.php:767
+#: libraries/display_tbl.lib.php:1258 libraries/display_tbl.lib.php:1370
msgid "Full texts"
msgstr "完整內容"
-#: libraries/display_tbl.lib.php:784
+#: libraries/display_tbl.lib.php:1272
msgid "Relational key"
msgstr "關聯鍵"
-#: libraries/display_tbl.lib.php:785
+#: libraries/display_tbl.lib.php:1273
msgid "Relational display column"
msgstr "關聯顯示字段"
-#: libraries/display_tbl.lib.php:796
+#: libraries/display_tbl.lib.php:1285
msgid "Show binary contents"
msgstr "顯示二進制內容"
-#: libraries/display_tbl.lib.php:801
+#: libraries/display_tbl.lib.php:1290
msgid "Show BLOB contents"
msgstr "顯示 BLOB 內容"
-#: libraries/display_tbl.lib.php:817
+#: libraries/display_tbl.lib.php:1306
#, fuzzy
#| msgid "Browser transformation"
msgid "Hide browser transformation"
msgstr "瀏覽器轉換"
-#: libraries/display_tbl.lib.php:826
+#: libraries/display_tbl.lib.php:1315
msgid "Well Known Text"
msgstr ""
-#: libraries/display_tbl.lib.php:827
+#: libraries/display_tbl.lib.php:1316
msgid "Well Known Binary"
msgstr ""
-#: libraries/display_tbl.lib.php:1638 libraries/display_tbl.lib.php:1654
+#: libraries/display_tbl.lib.php:2467 libraries/display_tbl.lib.php:2482
msgid "The row has been deleted"
msgstr "已刪除該行"
-#: libraries/display_tbl.lib.php:1684 libraries/display_tbl.lib.php:2964
-#: server_status.php:1279
+#: libraries/display_tbl.lib.php:2517 libraries/display_tbl.lib.php:4019
+#: server_status.php:1282
msgid "Kill"
msgstr "中止"
-#: libraries/display_tbl.lib.php:2803
+#: libraries/display_tbl.lib.php:3908
msgid "in query"
msgstr "查詢中"
-#: libraries/display_tbl.lib.php:2838
+#: libraries/display_tbl.lib.php:3954
msgid "Showing rows"
msgstr "顯示行"
-#: libraries/display_tbl.lib.php:2848
+#: libraries/display_tbl.lib.php:3968
msgid "total"
msgstr "總計"
-#: libraries/display_tbl.lib.php:2856 sql.php:813
+#: libraries/display_tbl.lib.php:3979 sql.php:811
#, php-format
msgid "Query took %01.4f sec"
msgstr "查詢花費 %01.4f 秒"
-#: libraries/display_tbl.lib.php:3094
+#: libraries/display_tbl.lib.php:4169
msgid "Query results operations"
msgstr "查詢結果選項"
-#: libraries/display_tbl.lib.php:3124
+#: libraries/display_tbl.lib.php:4202
msgid "Print view (with full texts)"
msgstr "列印預覽 (全文顯示)"
-#: libraries/display_tbl.lib.php:3181 tbl_chart.php:77
+#: libraries/display_tbl.lib.php:4264 tbl_chart.php:77
msgid "Display chart"
msgstr "顯示圖表"
-#: libraries/display_tbl.lib.php:3197
+#: libraries/display_tbl.lib.php:4282
msgid "Visualize GIS data"
msgstr ""
-#: libraries/display_tbl.lib.php:3220 view_create.php:108
+#: libraries/display_tbl.lib.php:4309 view_create.php:108
msgid "Create view"
msgstr "新建視圖"
-#: libraries/display_tbl.lib.php:3340
+#: libraries/display_tbl.lib.php:4462
msgid "Link not found"
msgstr "找不到連結"
@@ -6475,7 +6470,7 @@ msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小"
msgid "Buffer Pool"
msgstr "快取池"
-#: libraries/engines/innodb.lib.php:134 server_status.php:660
+#: libraries/engines/innodb.lib.php:134 server_status.php:663
msgid "InnoDB Status"
msgstr "InnoDB 狀態"
@@ -6744,8 +6739,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:128
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the "
-"%sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the %"
+"sPrimeBase XT Home Page%s."
msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s"
#: libraries/engines/pbxt.lib.php:130
@@ -6868,12 +6863,12 @@ msgstr "顯示 MIME 類型"
#: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335
#: server_privileges.php:914 server_privileges.php:917
#: server_privileges.php:973 server_privileges.php:1852
-#: server_privileges.php:2418 server_status.php:1253 sql.php:932
+#: server_privileges.php:2418 server_status.php:1256 sql.php:930
msgid "Host"
msgstr "主機"
#: libraries/export/latex.php:209 libraries/export/sql.php:591
-#: libraries/export/xml.php:148 sql.php:934
+#: libraries/export/xml.php:148 sql.php:932
msgid "Generation Time"
msgstr "產生日期"
@@ -7096,8 +7091,8 @@ msgstr "未找到圖表所需資料"
msgid "GLOBALS overwrite attempt"
msgstr ""
-#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1255
-#: sql.php:809 tbl_change.php:179 tbl_get_field.php:36
+#: libraries/import.lib.php:157 libraries/insert_edit.lib.php:128
+#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查詢結果爲空 (即零行)"
@@ -7275,6 +7270,98 @@ msgstr "SQL 相容模式:"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "不要給零值使用自動新增 (AUTO_INCREMENT)"
+#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202
+#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
+msgid "Function"
+msgstr "函數"
+
+#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227
+#: pmd_general.php:162
+msgid "Hide"
+msgstr "隱藏"
+
+#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214
+#: libraries/mysql_charsets.lib.php:415
+msgid "Binary"
+msgstr "二進制"
+
+#: libraries/insert_edit.lib.php:593
+msgid "Because of its length, this column might not be editable"
+msgstr "因長度問題, 該欄位可能無法編輯"
+
+#: libraries/insert_edit.lib.php:969
+msgid "Binary - do not edit"
+msgstr "二進制 - 無法編輯"
+
+#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454
+msgid "web server upload directory"
+msgstr "網站伺服器上傳資料夾"
+
+#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:195
+#, fuzzy
+#| msgid "Insert"
+msgid "Edit/Insert"
+msgstr "插入"
+
+#: libraries/insert_edit.lib.php:1250
+#, php-format
+msgid "Continue insertion with %s rows"
+msgstr "繼續插入 %s 行"
+
+#: libraries/insert_edit.lib.php:1277
+msgid "and then"
+msgstr "然後"
+
+#: libraries/insert_edit.lib.php:1306
+msgid "Insert as new row"
+msgstr "以新行插入"
+
+#: libraries/insert_edit.lib.php:1307
+msgid "Insert as new row and ignore errors"
+msgstr "以新行插入 (忽略錯誤)"
+
+#: libraries/insert_edit.lib.php:1308
+msgid "Show insert query"
+msgstr "顯示插入指令"
+
+#: libraries/insert_edit.lib.php:1327
+msgid "Go back to previous page"
+msgstr "返回上一頁"
+
+#: libraries/insert_edit.lib.php:1329
+msgid "Insert another new row"
+msgstr "插入新資料"
+
+#: libraries/insert_edit.lib.php:1333
+msgid "Go back to this page"
+msgstr "返回到本頁"
+
+#: libraries/insert_edit.lib.php:1348
+msgid "Edit next row"
+msgstr "編輯下一行"
+
+#: libraries/insert_edit.lib.php:1368
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動"
+
+#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119
+#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
+#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
+#: pmd_general.php:793 server_status.php:1498 tbl_printview.php:352
+#: tbl_structure.php:900 tbl_zoom_select.php:444
+msgid "Value"
+msgstr "值"
+
+#: libraries/insert_edit.lib.php:1684 sql.php:803
+msgid "Showing SQL query"
+msgstr "顯示 SQL 查詢"
+
+#: libraries/insert_edit.lib.php:1709 sql.php:783
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr "插入的行 id: %1$d"
+
#: libraries/kanji-encoding.lib.php:147
msgctxt "None encoding conversion"
msgid "None"
@@ -7285,36 +7372,36 @@ msgstr "無"
msgid "Convert to Kana"
msgstr "轉換爲假名"
-#: libraries/mult_submits.inc.php:279
+#: libraries/mult_submits.inc.php:278
#, fuzzy
#| msgid "Fri"
msgid "From"
msgstr "Fri"
-#: libraries/mult_submits.inc.php:282
+#: libraries/mult_submits.inc.php:281
msgid "To"
msgstr ""
-#: libraries/mult_submits.inc.php:287 libraries/mult_submits.inc.php:300
+#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
#: libraries/sql_query_form.lib.php:402
msgid "Submit"
msgstr "送出"
-#: libraries/mult_submits.inc.php:292
+#: libraries/mult_submits.inc.php:291
msgid "Add table prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:295
+#: libraries/mult_submits.inc.php:294
msgid "Add prefix"
msgstr ""
-#: libraries/mult_submits.inc.php:309
+#: libraries/mult_submits.inc.php:308
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute the following query?"
msgstr "您真的要"
-#: libraries/mult_submits.inc.php:533 tbl_replace.php:330
+#: libraries/mult_submits.inc.php:532 tbl_replace.php:265
msgid "No change"
msgstr "無更改"
@@ -7322,11 +7409,6 @@ msgstr "無更改"
msgid "Charset"
msgstr "字集"
-#: libraries/mysql_charsets.lib.php:214 libraries/mysql_charsets.lib.php:415
-#: tbl_change.php:612
-msgid "Binary"
-msgstr "二進制"
-
#: libraries/mysql_charsets.lib.php:226
msgid "Bulgarian"
msgstr "保加利亞語"
@@ -7657,18 +7739,10 @@ msgid "Slave status"
msgstr "從伺服器狀態"
#: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394
-#: server_status.php:1494 server_variables.php:127
+#: server_status.php:1497 server_variables.php:127
msgid "Variable"
msgstr "變數"
-#: libraries/replication_gui.lib.php:119
-#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:97
-#: pmd_general.php:494 pmd_general.php:553 pmd_general.php:676
-#: pmd_general.php:793 server_status.php:1495 tbl_change.php:357
-#: tbl_printview.php:352 tbl_structure.php:900 tbl_zoom_select.php:431
-msgid "Value"
-msgstr "值"
-
#: libraries/replication_gui.lib.php:178 server_binlog.php:178
msgid "Server ID"
msgstr "伺服器ID"
@@ -8025,11 +8099,6 @@ msgstr ""
msgid "Routine parameters"
msgstr "一般"
-#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:89
-#: tbl_change.php:297 tbl_change.php:353
-msgid "Function"
-msgstr "函數"
-
#: libraries/rte/rte_triggers.lib.php:89
msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
@@ -8389,7 +8458,7 @@ msgid "Run SQL query/queries on database %s"
msgstr "在資料庫 %s 運行 SQL 查詢"
#: libraries/sql_query_form.lib.php:267 navigation.php:208 navigation.php:271
-#: setup/frames/index.inc.php:257
+#: setup/frames/index.inc.php:260
msgid "Clear"
msgstr "清除"
@@ -8397,11 +8466,11 @@ msgstr "清除"
msgid "Columns"
msgstr "字段"
-#: libraries/sql_query_form.lib.php:307 sql.php:1085 sql.php:1102
+#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099
msgid "Bookmark this SQL query"
msgstr "將此 SQL 查詢加爲書籤"
-#: libraries/sql_query_form.lib.php:313 sql.php:1096
+#: libraries/sql_query_form.lib.php:313 sql.php:1093
msgid "Let every user access this bookmark"
msgstr "讓所有使用者均可訪問此書籤"
@@ -8425,10 +8494,6 @@ msgstr "在此再次顯示此查詢"
msgid "View only"
msgstr "僅查看"
-#: libraries/sql_query_form.lib.php:454 tbl_change.php:936
-msgid "web server upload directory"
-msgstr "網站伺服器上傳資料夾"
-
#: libraries/sqlparser.lib.php:136
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -8618,12 +8683,6 @@ msgstr "運算符"
msgid "Table Search"
msgstr "搜尋"
-#: libraries/tbl_select.lib.php:195 tbl_change.php:1036
-#, fuzzy
-#| msgid "Insert"
-msgid "Edit/Insert"
-msgstr "插入"
-
#: libraries/transformations.lib.php:145
#, php-format
msgid ""
@@ -8825,7 +8884,7 @@ msgstr "協定版本"
#: main.php:188 server_privileges.php:1696 server_privileges.php:1851
#: server_privileges.php:1998 server_privileges.php:2417
-#: server_status.php:1252
+#: server_status.php:1255
msgid "User"
msgstr "使用者"
@@ -9046,10 +9105,6 @@ msgstr "全部隱藏/顯示"
msgid "Hide/Show Tables with no relation"
msgstr "隱藏/顯示沒有關聯的表"
-#: pmd_general.php:162 tbl_change.php:341 tbl_change.php:353
-msgid "Hide"
-msgstr "隱藏"
-
#: pmd_general.php:185
msgid "Number of tables"
msgstr "資料表數量"
@@ -9240,17 +9295,17 @@ msgstr "檔案不存在"
msgid "Select binary log to view"
msgstr "選擇要查看的二進制日誌"
-#: server_binlog.php:98 server_status.php:614
+#: server_binlog.php:98 server_status.php:617
msgid "Files"
msgstr "檔案"
-#: server_binlog.php:145 server_binlog.php:147 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266
+#: server_status.php:1268
msgid "Truncate Shown Queries"
msgstr "截斷顯示的查詢"
-#: server_binlog.php:153 server_binlog.php:155 server_status.php:1263
-#: server_status.php:1265
+#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266
+#: server_status.php:1268
msgid "Show Full Queries"
msgstr "顯示完整查詢"
@@ -9687,8 +9742,8 @@ msgstr "刪除與使用者同名的資料庫"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should "
-"%sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should %"
+"sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表"
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
@@ -9809,7 +9864,7 @@ msgstr "權限已成功重新讀取."
msgid "This server is configured as master in a replication process."
msgstr "此伺服器已被設定爲一個複製程序中的主伺服器"
-#: server_replication.php:209 server_status.php:635
+#: server_replication.php:209 server_status.php:638
msgid "Show master status"
msgstr "查看主伺服器狀態"
@@ -9950,162 +10005,162 @@ msgstr ""
"此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定"
"嗎?"
-#: server_status.php:468
+#: server_status.php:471
#, php-format
msgid "Thread %s was successfully killed."
msgstr "已中止程序 %s"
-#: server_status.php:470
+#: server_status.php:473
#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉"
-#: server_status.php:602
+#: server_status.php:605
msgid "Handler"
msgstr "處理器"
-#: server_status.php:603
+#: server_status.php:606
msgid "Query cache"
msgstr "查詢快取"
-#: server_status.php:604
+#: server_status.php:607
msgid "Threads"
msgstr "程序"
-#: server_status.php:606
+#: server_status.php:609
msgid "Temporary data"
msgstr "臨時資料"
-#: server_status.php:607
+#: server_status.php:610
msgid "Delayed inserts"
msgstr "延遲插入"
-#: server_status.php:608
+#: server_status.php:611
msgid "Key cache"
msgstr "鍵快取"
-#: server_status.php:609
+#: server_status.php:612
msgid "Joins"
msgstr "多表查詢"
-#: server_status.php:611
+#: server_status.php:614
msgid "Sorting"
msgstr "排序"
-#: server_status.php:613
+#: server_status.php:616
msgid "Transaction coordinator"
msgstr "交易協調"
-#: server_status.php:625
+#: server_status.php:628
msgid "Flush (close) all tables"
msgstr "強制更新 (關閉) 所有表"
-#: server_status.php:627
+#: server_status.php:630
msgid "Show open tables"
msgstr "顯示開啟的表"
-#: server_status.php:632
+#: server_status.php:635
msgid "Show slave hosts"
msgstr "顯示從伺服器"
-#: server_status.php:638
+#: server_status.php:641
msgid "Show slave status"
msgstr "顯示從伺服器狀態"
-#: server_status.php:643
+#: server_status.php:646
msgid "Flush query cache"
msgstr "強制更新查詢快取"
-#: server_status.php:783
+#: server_status.php:786
msgid "Runtime Information"
msgstr "運行資訊"
-#: server_status.php:790
+#: server_status.php:793
#, fuzzy
#| msgid "See slave status table"
msgid "All status variables"
msgstr "查看從伺服器狀態"
-#: server_status.php:791
+#: server_status.php:794
msgid "Monitor"
msgstr ""
-#: server_status.php:792
+#: server_status.php:795
msgid "Advisor"
msgstr ""
-#: server_status.php:802 server_status.php:824
+#: server_status.php:805 server_status.php:827
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate: "
msgstr "重新整理"
-#: server_status.php:837 server_variables.php:119
+#: server_status.php:840 server_variables.php:119
#, fuzzy
msgid "Filters"
msgstr "過濾"
-#: server_status.php:845 server_variables.php:121
+#: server_status.php:848 server_variables.php:121
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "保持原密碼"
-#: server_status.php:850
+#: server_status.php:853
#, fuzzy
#| msgid "Show open tables"
msgid "Show only alert values"
msgstr "顯示開啟的表"
-#: server_status.php:854
+#: server_status.php:857
msgid "Filter by category..."
msgstr ""
-#: server_status.php:868
+#: server_status.php:871
#, fuzzy
#| msgid "Show open tables"
msgid "Show unformatted values"
msgstr "顯示開啟的表"
-#: server_status.php:872
+#: server_status.php:875
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "相關連結"
-#: server_status.php:905
+#: server_status.php:908
#, fuzzy
#| msgid "Query type"
msgid "Run analyzer"
msgstr "查詢方式"
-#: server_status.php:906
+#: server_status.php:909
#, fuzzy
msgid "Instructions"
msgstr "資料"
-#: server_status.php:913
+#: server_status.php:916
msgid ""
"The Advisor system can provide recommendations on server variables by "
"analyzing the server status variables."
msgstr ""
-#: server_status.php:915
+#: server_status.php:918
msgid ""
"Do note however that this system provides recommendations based on simple "
"calculations and by rule of thumb which may not necessarily apply to your "
"system."
msgstr ""
-#: server_status.php:917
+#: server_status.php:920
msgid ""
"Prior to changing any of the configuration, be sure to know what you are "
"changing (by reading the documentation) and how to undo the change. Wrong "
"tuning can have a very negative effect on performance."
msgstr ""
-#: server_status.php:919
+#: server_status.php:922
msgid ""
"The best way to tune your system would be to change only one setting at a "
"time, observe or benchmark your database, and undo the change if there was "
@@ -10113,47 +10168,47 @@ msgid ""
msgstr ""
#. l10n: Questions is the name of a MySQL Status variable
-#: server_status.php:941
+#: server_status.php:944
#, fuzzy, php-format
#| msgid "Customize startup page"
msgid "Questions since startup: %s"
msgstr "自訂起始頁"
-#: server_status.php:977 tbl_printview.php:351 tbl_structure.php:899
+#: server_status.php:980 tbl_printview.php:351 tbl_structure.php:899
msgid "Statements"
msgstr "說明"
#. l10n: # = Amount of queries
-#: server_status.php:980
+#: server_status.php:983
msgid "#"
msgstr ""
-#: server_status.php:1053
+#: server_status.php:1056
#, php-format
msgid "Network traffic since startup: %s"
msgstr ""
-#: server_status.php:1062
+#: server_status.php:1065
#, fuzzy, php-format
#| msgid "This MySQL server has been running for %s. It started up on %s."
msgid "This MySQL server has been running for %1$s. It started up on %2$s."
msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s"
-#: server_status.php:1073
+#: server_status.php:1076
msgid ""
"This MySQL server works as master and slave in replication"
"b> process."
msgstr "此 MySQL 伺服器正以主和從伺服器運行於複製程序中"
-#: server_status.php:1075
+#: server_status.php:1078
msgid "This MySQL server works as master in replication process."
msgstr "此 MySQL 伺服器正以主伺服器運行於複製程序中"
-#: server_status.php:1077
+#: server_status.php:1080
msgid "This MySQL server works as slave in replication process."
msgstr "此 MySQL 伺服器正以從伺服器運行於複製程序中"
-#: server_status.php:1080
+#: server_status.php:1083
msgid ""
"For further information about replication status on the server, please visit "
"the replication section."
@@ -10161,11 +10216,11 @@ msgstr ""
"要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊"
""
-#: server_status.php:1089
+#: server_status.php:1092
msgid "Replication status"
msgstr "複製狀態"
-#: server_status.php:1104
+#: server_status.php:1107
msgid ""
"On a busy server, the byte counters may overrun, so those statistics as "
"reported by the MySQL server may be incorrect."
@@ -10173,47 +10228,47 @@ msgstr ""
"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正"
"確"
-#: server_status.php:1110
+#: server_status.php:1113
msgid "Received"
msgstr "已接收"
-#: server_status.php:1121
+#: server_status.php:1124
msgid "Sent"
msgstr "已發送"
-#: server_status.php:1162
+#: server_status.php:1165
msgid "max. concurrent connections"
msgstr "最大同時連線數"
-#: server_status.php:1169
+#: server_status.php:1172
msgid "Failed attempts"
msgstr "已失敗"
-#: server_status.php:1185
+#: server_status.php:1188
msgid "Aborted"
msgstr "已取消"
-#: server_status.php:1251
+#: server_status.php:1254
msgid "ID"
msgstr "ID"
-#: server_status.php:1255
+#: server_status.php:1258
msgid "Command"
msgstr "命令"
-#: server_status.php:1317
+#: server_status.php:1320
msgid ""
"The number of connections that were aborted because the client died without "
"closing the connection properly."
msgstr ""
-#: server_status.php:1318
+#: server_status.php:1321
#, 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:1319
+#: server_status.php:1322
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 "
@@ -10222,16 +10277,16 @@ msgstr ""
"因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存"
"的數量"
-#: server_status.php:1320
+#: server_status.php:1323
msgid "The number of transactions that used the temporary binary log cache."
msgstr "交易所用的臨時二進制日誌快取的數量"
-#: server_status.php:1321
+#: server_status.php:1324
msgid ""
"The number of connection attempts (successful or not) to the MySQL server."
msgstr ""
-#: server_status.php:1322
+#: server_status.php:1325
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 "
@@ -10241,45 +10296,46 @@ msgstr ""
"伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables "
"很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟"
-#: server_status.php:1323
+#: server_status.php:1326
msgid "How many temporary files mysqld has created."
msgstr "mysqld 已建立的臨時檔案的數量"
-#: server_status.php:1324
+#: server_status.php:1327
msgid ""
"The number of in-memory temporary tables created automatically by the server "
"while executing statements."
msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量"
-#: server_status.php:1325
+#: server_status.php:1328
msgid ""
"The number of rows written with INSERT DELAYED for which some error occurred "
"(probably duplicate key)."
-msgstr "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)"
+msgstr ""
+"發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)"
-#: server_status.php:1326
+#: server_status.php:1329
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:1327
+#: server_status.php:1330
msgid "The number of INSERT DELAYED rows written."
msgstr "延遲插入已寫入的行數"
-#: server_status.php:1328
+#: server_status.php:1331
msgid "The number of executed FLUSH statements."
msgstr "已執行的強制更新 (FLUSH) 指令數"
-#: server_status.php:1329
+#: server_status.php:1332
msgid "The number of internal COMMIT statements."
msgstr "已執行的內部送出 (COMMIT) 指令數"
-#: server_status.php:1330
+#: server_status.php:1333
msgid "The number of times a row was deleted from a table."
msgstr "從資料表中刪除行的次數"
-#: server_status.php:1331
+#: server_status.php:1334
msgid ""
"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
"table with a given name. This is called discovery. Handler_discover "
@@ -10288,23 +10344,23 @@ msgstr ""
"如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發"
"現”Handler_discovery 表明瞭一個資料表被發現的次數"
-#: server_status.php:1332
+#: server_status.php:1335
msgid ""
"The number of times the first entry was read from an index. If this is high, "
"it suggests that the server is doing a lot of full index scans; for example, "
"SELECT col1 FROM foo, assuming that col1 is indexed."
msgstr ""
-"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 "
-"FROM foo"
+"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃"
+"描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo"
-#: server_status.php:1333
+#: server_status.php:1336
msgid ""
"The number of requests to 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:1334
+#: server_status.php:1337
msgid ""
"The number of requests to read the next row in key order. This is "
"incremented if you are querying an index column with a range constraint or "
@@ -10313,7 +10369,7 @@ msgstr ""
"根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或"
"進行完整表掃描,該值將會不斷增長"
-#: server_status.php:1335
+#: server_status.php:1338
msgid ""
"The number of requests to read the previous row in key order. This read "
"method is mainly used to optimize ORDER BY ... DESC."
@@ -10321,7 +10377,7 @@ msgstr ""
"根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... "
"DESC 的查詢"
-#: server_status.php:1336
+#: server_status.php:1339
msgid ""
"The number of requests to read a row based on a fixed position. This is high "
"if you are doing a lot of queries that require sorting of the result. You "
@@ -10331,7 +10387,7 @@ msgstr ""
"根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能"
"有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢"
-#: server_status.php:1337
+#: server_status.php:1340
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 "
@@ -10341,35 +10397,35 @@ msgstr ""
"從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味"
"着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位"
-#: server_status.php:1338
+#: server_status.php:1341
msgid "The number of internal ROLLBACK statements."
msgstr "內部回滾 (ROLLBACK) 指令數"
-#: server_status.php:1339
+#: server_status.php:1342
msgid "The number of requests to update a row in a table."
msgstr "資料表中更新行的請求數"
-#: server_status.php:1340
+#: server_status.php:1343
msgid "The number of requests to insert a row in a table."
msgstr "資料表中插入行的請求數"
-#: server_status.php:1341
+#: server_status.php:1344
msgid "The number of pages containing data (dirty or clean)."
msgstr "非空頁數 (含髒頁)"
-#: server_status.php:1342
+#: server_status.php:1345
msgid "The number of pages currently dirty."
msgstr "目前髒頁數"
-#: server_status.php:1343
+#: server_status.php:1346
msgid "The number of buffer pool pages that have been requested to be flushed."
msgstr "請求更新的快取池頁數"
-#: server_status.php:1344
+#: server_status.php:1347
msgid "The number of free pages."
msgstr "空閒頁數"
-#: server_status.php:1345
+#: server_status.php:1348
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 "
@@ -10378,21 +10434,22 @@ msgstr ""
"InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能"
"被重新整理或刪除的"
-#: server_status.php:1346
+#: server_status.php:1349
msgid ""
"The number of pages busy because they have been allocated for administrative "
"overhead such as row locks or the adaptive hash index. This value can also "
"be calculated as Innodb_buffer_pool_pages_total - "
"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
msgstr ""
-"負載頁的數量,像鎖定行或適應性的散列索引這樣的管理操作時分配的頁。該值可用此公式計算: Innodb_buffer_pool_pages_total - "
-"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data"
+"負載頁的數量,像鎖定行或適應性的散列索引這樣的管理操作時分配的頁。該值可用此"
+"公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - "
+"Innodb_buffer_pool_pages_data"
-#: server_status.php:1347
+#: server_status.php:1350
msgid "Total size of buffer pool, in pages."
msgstr "快取池總大小 (單位:頁)"
-#: server_status.php:1348
+#: server_status.php:1351
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."
@@ -10400,23 +10457,23 @@ msgstr ""
"InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時"
"發生"
-#: server_status.php:1349
+#: server_status.php:1352
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:1350
+#: server_status.php:1353
msgid "The number of logical read requests InnoDB has done."
msgstr "InnoDB 完成的邏輯讀請求數"
-#: server_status.php:1351
+#: server_status.php:1354
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:1352
+#: server_status.php:1355
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 "
@@ -10428,85 +10485,85 @@ msgstr ""
"必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正"
"確,這個值應該會很小"
-#: server_status.php:1353
+#: server_status.php:1356
msgid "The number writes done to the InnoDB buffer pool."
msgstr "寫入 InnoDB 快取池的次數"
-#: server_status.php:1354
+#: server_status.php:1357
msgid "The number of fsync() operations so far."
msgstr "fsync() 總操作的次數"
-#: server_status.php:1355
+#: server_status.php:1358
msgid "The current number of pending fsync() operations."
msgstr "目前掛起 fsync() 操作的數量"
-#: server_status.php:1356
+#: server_status.php:1359
msgid "The current number of pending reads."
msgstr "目前掛起的讀操作數"
-#: server_status.php:1357
+#: server_status.php:1360
msgid "The current number of pending writes."
msgstr "目前掛起的寫操作數"
-#: server_status.php:1358
+#: server_status.php:1361
msgid "The amount of data read so far, in bytes."
msgstr "讀取的總資料量 (單位:字元)"
-#: server_status.php:1359
+#: server_status.php:1362
msgid "The total number of data reads."
msgstr "資料讀取總數"
-#: server_status.php:1360
+#: server_status.php:1363
msgid "The total number of data writes."
msgstr "資料寫入總數"
-#: server_status.php:1361
+#: server_status.php:1364
msgid "The amount of data written so far, in bytes."
msgstr "寫入的總資料量 (單位:字元)"
-#: server_status.php:1362
+#: server_status.php:1365
msgid "The number of pages that have been written for doublewrite operations."
msgstr "以雙寫入操作寫入的頁數"
-#: server_status.php:1363
+#: server_status.php:1366
msgid "The number of doublewrite operations that have been performed."
msgstr "已經執行的雙寫入次數"
-#: server_status.php:1364
+#: server_status.php:1367
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:1365
+#: server_status.php:1368
msgid "The number of log write requests."
msgstr "日誌寫入請求數"
-#: server_status.php:1366
+#: server_status.php:1369
msgid "The number of physical writes to the log file."
msgstr "日誌物理寫入次數"
-#: server_status.php:1367
+#: server_status.php:1370
msgid "The number of fsync() writes done to the log file."
msgstr "使用 fsync() 寫入日志檔案的次數"
-#: server_status.php:1368
+#: server_status.php:1371
msgid "The number of pending log file fsyncs."
msgstr "目前掛起的 fsync 日志檔案數"
-#: server_status.php:1369
+#: server_status.php:1372
msgid "Pending log file writes."
msgstr "目前掛起的日誌寫入數"
-#: server_status.php:1370
+#: server_status.php:1373
msgid "The number of bytes written to the log file."
msgstr "寫入日志檔案的字元數"
-#: server_status.php:1371
+#: server_status.php:1374
msgid "The number of pages created."
msgstr "建立的頁數"
-#: server_status.php:1372
+#: server_status.php:1375
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."
@@ -10514,80 +10571,81 @@ msgstr ""
"編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方"
"便地將這些值轉化爲字元數"
-#: server_status.php:1373
+#: server_status.php:1376
msgid "The number of pages read."
msgstr "讀取的頁數"
-#: server_status.php:1374
+#: server_status.php:1377
msgid "The number of pages written."
msgstr "寫入的頁數"
-#: server_status.php:1375
+#: server_status.php:1378
msgid "The number of row locks currently being waited for."
msgstr "正在等待行鎖的數量"
-#: server_status.php:1376
+#: server_status.php:1379
msgid "The average time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的平均時間 (單位:毫秒)"
-#: server_status.php:1377
+#: server_status.php:1380
msgid "The total time spent in acquiring row locks, in milliseconds."
msgstr "等待取得行鎖的總時間 (單位:毫秒)"
-#: server_status.php:1378
+#: server_status.php:1381
msgid "The maximum time to acquire a row lock, in milliseconds."
msgstr "等待取得行鎖的最大時間 (單位:毫秒)"
-#: server_status.php:1379
+#: server_status.php:1382
msgid "The number of times a row lock had to be waited for."
msgstr "等待行鎖的次數"
-#: server_status.php:1380
+#: server_status.php:1383
msgid "The number of rows deleted from InnoDB tables."
msgstr "從 InnoDB 資料表中刪除的行數"
-#: server_status.php:1381
+#: server_status.php:1384
msgid "The number of rows inserted in InnoDB tables."
msgstr "插入到 InnoDB 資料表中的行數"
-#: server_status.php:1382
+#: server_status.php:1385
msgid "The number of rows read from InnoDB tables."
msgstr "從 InnoDB 資料表中讀取的行數"
-#: server_status.php:1383
+#: server_status.php:1386
msgid "The number of rows updated in InnoDB tables."
msgstr "InnoDB 中更新的行數"
-#: server_status.php:1384
+#: server_status.php:1387
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"
+msgstr ""
+"鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks"
-#: server_status.php:1385
+#: server_status.php:1388
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:1386
+#: server_status.php:1389
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:1387
+#: server_status.php:1390
#, fuzzy
#| msgid "Format of imported file"
msgid "Percentage of used key cache (calculated value)"
msgstr "匯入檔案的格式"
-#: server_status.php:1388
+#: server_status.php:1391
msgid "The number of requests to read a key block from the cache."
msgstr "從快取中讀取鍵塊的請求次數"
-#: server_status.php:1389
+#: server_status.php:1392
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 "
@@ -10596,26 +10654,26 @@ msgstr ""
"從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size "
"可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出"
-#: server_status.php:1390
+#: server_status.php:1393
msgid ""
"Key cache miss calculated as rate of physical reads compared to read "
"requests (calculated value)"
msgstr ""
-#: server_status.php:1391
+#: server_status.php:1394
msgid "The number of requests to write a key block to the cache."
msgstr "將一個鍵塊寫入快取的請求數"
-#: server_status.php:1392
+#: server_status.php:1395
msgid "The number of physical writes of a key block to disk."
msgstr "將鍵塊物理寫入到硬碟的次數"
-#: server_status.php:1393
+#: server_status.php:1396
msgid ""
"Percentage of physical writes compared to write requests (calculated value)"
msgstr ""
-#: server_status.php:1394
+#: server_status.php:1397
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 "
@@ -10624,54 +10682,54 @@ msgstr ""
"最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進"
"行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯"
-#: server_status.php:1395
+#: server_status.php:1398
msgid ""
"The maximum number of connections that have been in use simultaneously since "
"the server started."
msgstr ""
-#: server_status.php:1396
+#: server_status.php:1399
msgid "The number of rows waiting to be written in INSERT DELAYED queues."
msgstr "等待寫入延遲插入隊列的行數"
-#: server_status.php:1397
+#: server_status.php:1400
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:1398
+#: server_status.php:1401
msgid "The number of files that are open."
msgstr "開啟的檔案個數"
-#: server_status.php:1399
+#: server_status.php:1402
msgid "The number of streams that are open (used mainly for logging)."
msgstr "開啟的流個數 (主要用於日誌記錄)"
-#: server_status.php:1400
+#: server_status.php:1403
msgid "The number of tables that are open."
msgstr "開啟的資料表個數"
-#: server_status.php:1401
+#: server_status.php:1404
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:1402
+#: server_status.php:1405
msgid "The amount of free memory for query cache."
msgstr "查詢快取中空閒的記憶體總數"
-#: server_status.php:1403
+#: server_status.php:1406
msgid "The number of cache hits."
msgstr "快取命中數"
-#: server_status.php:1404
+#: server_status.php:1407
msgid "The number of queries added to the cache."
msgstr "加入到快取的查詢數"
-#: server_status.php:1405
+#: server_status.php:1408
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 "
@@ -10681,7 +10739,7 @@ msgstr ""
"爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除"
"哪個已快取的查詢。該資訊可幫助您調整查詢快取大小"
-#: server_status.php:1406
+#: server_status.php:1409
msgid ""
"The number of non-cached queries (not cachable, or not cached due to the "
"query_cache_type setting)."
@@ -10689,19 +10747,19 @@ msgstr ""
"未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的"
"查詢)"
-#: server_status.php:1407
+#: server_status.php:1410
msgid "The number of queries registered in the cache."
msgstr "在快取中註冊的查詢數"
-#: server_status.php:1408
+#: server_status.php:1411
msgid "The total number of blocks in the query cache."
msgstr "查詢快取中的總塊數"
-#: server_status.php:1409
+#: server_status.php:1412
msgid "The status of failsafe replication (not yet implemented)."
msgstr "失敗保護器的狀態 (尚未套用)"
-#: server_status.php:1410
+#: server_status.php:1413
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."
@@ -10709,11 +10767,11 @@ msgstr ""
"沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當"
"的索引"
-#: server_status.php:1411
+#: server_status.php:1414
msgid "The number of joins that used a range search on a reference table."
msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量"
-#: server_status.php:1412
+#: server_status.php:1415
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.)"
@@ -10721,7 +10779,7 @@ msgstr ""
"沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細"
"檢查是否已經爲表建立了適當的索引。)"
-#: server_status.php:1413
+#: server_status.php:1416
msgid ""
"The number of joins that used ranges on the first table. (It's normally not "
"critical even if this is big.)"
@@ -10729,36 +10787,36 @@ msgstr ""
"在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影"
"響。)"
-#: server_status.php:1414
+#: server_status.php:1417
msgid "The number of joins that did a full scan of the first table."
msgstr "在第一個資料表上進行了完整表掃描的多表查詢數"
-#: server_status.php:1415
+#: server_status.php:1418
msgid "The number of temporary tables currently open by the slave SQL thread."
msgstr "目前由從 SQL 程序開啟的臨時表的數量"
-#: server_status.php:1416
+#: server_status.php:1419
msgid ""
"Total (since startup) number of times the replication slave SQL thread has "
"retried transactions."
msgstr "從 SQL 程序總共重試交易複製數"
-#: server_status.php:1417
+#: server_status.php:1420
msgid "This is ON if this server is a slave that is connected to a master."
msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器"
-#: server_status.php:1418
+#: server_status.php:1421
msgid ""
"The number of threads that have taken more than slow_launch_time seconds to "
"create."
msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量"
-#: server_status.php:1419
+#: server_status.php:1422
msgid ""
"The number of queries that have taken more than long_query_time seconds."
msgstr "使用了比 long_query_time 更多時間的查詢數"
-#: server_status.php:1420
+#: server_status.php:1423
msgid ""
"The number of merge passes the sort algorithm has had to do. If this value "
"is large, you should consider increasing the value of the sort_buffer_size "
@@ -10767,23 +10825,23 @@ msgstr ""
"排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 "
"sort_buffer_size 的值"
-#: server_status.php:1421
+#: server_status.php:1424
msgid "The number of sorts that were done with ranges."
msgstr "局部範圍完成的排序次數"
-#: server_status.php:1422
+#: server_status.php:1425
msgid "The number of sorted rows."
msgstr "排序的行數"
-#: server_status.php:1423
+#: server_status.php:1426
msgid "The number of sorts that were done by scanning the table."
msgstr "掃描表完成的排序次數"
-#: server_status.php:1424
+#: server_status.php:1427
msgid "The number of times that a table lock was acquired immediately."
msgstr "立即需要鎖定表的次數"
-#: server_status.php:1425
+#: server_status.php:1428
msgid ""
"The number of times that a table lock could not be acquired immediately and "
"a wait was needed. If this is high, and you have performance problems, you "
@@ -10793,7 +10851,7 @@ msgstr ""
"無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題,"
"則應該首先檢查您的查詢指令,然後使用複製操作來分開表"
-#: server_status.php:1426
+#: server_status.php:1429
msgid ""
"The number of threads in the thread cache. The cache hit rate can be "
"calculated as Threads_created/Connections. If this value is red you should "
@@ -10802,11 +10860,11 @@ msgstr ""
"程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如"
"果該值是紅色的,則應該增加 thread_cache_size 的值"
-#: server_status.php:1427
+#: server_status.php:1430
msgid "The number of currently open connections."
msgstr "目前開啟的連線數"
-#: server_status.php:1428
+#: server_status.php:1431
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 "
@@ -10816,75 +10874,75 @@ msgstr ""
"目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 "
"thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)"
-#: server_status.php:1429
+#: server_status.php:1432
#, fuzzy
#| msgid "Tracking is not active."
msgid "Thread cache hit rate (calculated value)"
msgstr "追蹤已停用"
-#: server_status.php:1430
+#: server_status.php:1433
msgid "The number of threads that are not sleeping."
msgstr "非睡眠狀態的程序數量"
-#: server_status.php:1576
+#: server_status.php:1579
#, fuzzy
#| msgid "Textarea rows"
msgid "Start Monitor"
msgstr "文字框行"
-#: server_status.php:1585
+#: server_status.php:1588
msgid "Instructions/Setup"
msgstr ""
-#: server_status.php:1590
+#: server_status.php:1593
msgid "Done rearranging/editing charts"
msgstr ""
-#: server_status.php:1597 server_status.php:1668
+#: server_status.php:1600 server_status.php:1671
#, fuzzy
#| msgid "Add index"
msgid "Add chart"
msgstr "新增索引"
-#: server_status.php:1599
+#: server_status.php:1602
msgid "Rearrange/edit charts"
msgstr ""
-#: server_status.php:1603
+#: server_status.php:1606
#, fuzzy
msgid "Refresh rate"
msgstr "重新整理"
-#: server_status.php:1608
+#: server_status.php:1611
#, fuzzy
#| msgid "Textarea columns"
msgid "Chart columns"
msgstr "文本框列"
-#: server_status.php:1624
+#: server_status.php:1627
#, fuzzy
#| msgid "Error management:"
msgid "Chart arrangement"
msgstr "錯誤管理:"
-#: server_status.php:1624
+#: server_status.php:1627
msgid ""
"The arrangement of the charts is stored to the browsers local storage. You "
"may want to export it if you have a complicated set up."
msgstr ""
-#: server_status.php:1625
+#: server_status.php:1628
#, fuzzy
#| msgid "Restore default value"
msgid "Reset to default"
msgstr "還原預設值"
-#: server_status.php:1629
+#: server_status.php:1632
#, fuzzy
msgid "Monitor Instructions"
msgstr "資料"
-#: server_status.php:1630
+#: server_status.php:1633
msgid ""
"The phpMyAdmin Monitor can assist you in optimizing the server configuration "
"and track down time intensive queries. For the latter you will need to set "
@@ -10893,7 +10951,7 @@ msgid ""
"increases server load by up to 15%"
msgstr ""
-#: server_status.php:1635
+#: server_status.php:1638
msgid ""
"Unfortunately your Database server does not support logging to table, which "
"is a requirement for analyzing the database logs with phpMyAdmin. Logging to "
@@ -10901,18 +10959,18 @@ msgid ""
"charting features however."
msgstr ""
-#: server_status.php:1648
+#: server_status.php:1651
msgid "Using the monitor:"
msgstr ""
-#: server_status.php:1650
+#: server_status.php:1653
msgid ""
"Your browser will refresh all displayed charts in a regular interval. You "
"may add charts and change the refresh rate under 'Settings', or remove any "
"chart using the cog icon on each respective chart."
msgstr ""
-#: server_status.php:1652
+#: server_status.php:1655
msgid ""
"To display queries from the logs, select the relevant time span on any chart "
"by holding down the left mouse button and panning over the chart. Once "
@@ -10920,11 +10978,11 @@ msgid ""
"any occuring SELECT statements to further analyze them."
msgstr ""
-#: server_status.php:1659
+#: server_status.php:1662
msgid "Please note:"
msgstr ""
-#: server_status.php:1661
+#: server_status.php:1664
msgid ""
"Enabling the general_log may increase the server load by 5-15%. Also be "
"aware that generating statistics from the logs is a load intensive task, so "
@@ -10932,104 +10990,104 @@ msgid ""
"general_log and empty its table once monitoring is not required any more."
msgstr ""
-#: server_status.php:1673
+#: server_status.php:1676
#, fuzzy
#| msgid "Remove database"
msgid "Preset chart"
msgstr "刪除資料庫"
-#: server_status.php:1677
+#: server_status.php:1680
#, fuzzy
#| msgid "See slave status table"
msgid "Status variable(s)"
msgstr "查看從伺服器狀態"
-#: server_status.php:1679
+#: server_status.php:1682
#, fuzzy
#| msgid "Select Tables"
msgid "Select series:"
msgstr "選擇表"
-#: server_status.php:1681
+#: server_status.php:1684
msgid "Commonly monitored"
msgstr ""
-#: server_status.php:1696
+#: server_status.php:1699
#, fuzzy
#| msgid "Invalid table name"
msgid "or type variable name:"
msgstr "無效的資料資料表名稱"
-#: server_status.php:1700
+#: server_status.php:1703
msgid "Display as differential value"
msgstr ""
-#: server_status.php:1702
+#: server_status.php:1705
msgid "Apply a divisor"
msgstr ""
-#: server_status.php:1709
+#: server_status.php:1712
msgid "Append unit to data values"
msgstr ""
-#: server_status.php:1715
+#: server_status.php:1718
#, fuzzy
#| msgid "Add a new server"
msgid "Add this series"
msgstr "新增伺服器"
-#: server_status.php:1717
+#: server_status.php:1720
msgid "Clear series"
msgstr ""
-#: server_status.php:1720
+#: server_status.php:1723
#, fuzzy
#| msgid "SQL queries"
msgid "Series in Chart:"
msgstr "SQL 查詢"
-#: server_status.php:1733
+#: server_status.php:1736
#, fuzzy
#| msgid "Show statistics"
msgid "Log statistics"
msgstr "顯示統計"
-#: server_status.php:1734
+#: server_status.php:1737
#, fuzzy
#| msgid "Select page"
msgid "Selected time range:"
msgstr "選擇頁"
-#: server_status.php:1739
+#: server_status.php:1742
msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements"
msgstr ""
-#: server_status.php:1744
+#: server_status.php:1747
msgid "Remove variable data in INSERT statements for better grouping"
msgstr ""
-#: server_status.php:1749
+#: server_status.php:1752
msgid "Choose from which log you want the statistics to be generated from."
msgstr ""
-#: server_status.php:1751
+#: server_status.php:1754
msgid "Results are grouped by query text."
msgstr ""
-#: server_status.php:1756
+#: server_status.php:1759
#, fuzzy
#| msgid "Query type"
msgid "Query analyzer"
msgstr "查詢方式"
-#: server_status.php:1796
+#: server_status.php:1799
#, fuzzy, php-format
#| msgid "Second"
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] "秒"
-#: server_status.php:1798
+#: server_status.php:1801
#, fuzzy, php-format
#| msgid "Minute"
msgid "%d minute"
@@ -11162,7 +11220,7 @@ msgstr "連線值"
msgid "Global value"
msgstr "全域值"
-#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:241
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:244
msgid "Download"
msgstr "下載"
@@ -11228,39 +11286,39 @@ msgstr "沒有設定好的伺服器"
msgid "New server"
msgstr "建立伺服器"
-#: setup/frames/index.inc.php:196
+#: setup/frames/index.inc.php:199
msgid "Default language"
msgstr "預設語言"
-#: setup/frames/index.inc.php:207
+#: setup/frames/index.inc.php:210
msgid "let the user choose"
msgstr "讓使用者選擇"
-#: setup/frames/index.inc.php:218
+#: setup/frames/index.inc.php:221
msgid "- none -"
msgstr "- 無 -"
-#: setup/frames/index.inc.php:222
+#: setup/frames/index.inc.php:225
msgid "Default server"
msgstr "預設伺服器"
-#: setup/frames/index.inc.php:234
+#: setup/frames/index.inc.php:237
msgid "End of line"
msgstr "換行符號"
-#: setup/frames/index.inc.php:240
+#: setup/frames/index.inc.php:243
msgid "Display"
msgstr "顯示"
-#: setup/frames/index.inc.php:247
+#: setup/frames/index.inc.php:250
msgid "Load"
msgstr "加載"
-#: setup/frames/index.inc.php:266
+#: setup/frames/index.inc.php:270
msgid "phpMyAdmin homepage"
msgstr "phpMyAdmin 主頁 (外鏈,英文)"
-#: setup/frames/index.inc.php:268
+#: setup/frames/index.inc.php:272
msgid "Donate"
msgstr "贊助"
@@ -11470,53 +11528,44 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元"
msgid "Wrong data"
msgstr "沒有資料庫"
-#: sql.php:138 tbl_change.php:261 tbl_select.php:27 tbl_zoom_select.php:100
-#: tbl_zoom_select.php:136
+#: sql.php:136 tbl_change.php:214 tbl_select.php:27 tbl_zoom_select.php:107
+#: tbl_zoom_select.php:143
msgid "Browse foreign values"
msgstr "瀏覽不相關的值"
-#: sql.php:255
+#: sql.php:253
#, php-format
msgid "Using bookmark \"%s\" as default browse query."
msgstr "使用書籤 \"%s\" 作爲預設的查詢"
-#: sql.php:406
+#: sql.php:404
#, fuzzy
#| msgid "Do you really want to "
msgid "Do you really want to execute following query?"
msgstr "您真的要"
-#: sql.php:785 tbl_replace.php:386
-#, php-format
-msgid "Inserted row id: %1$d"
-msgstr "插入的行 id: %1$d"
-
-#: sql.php:802
+#: sql.php:800
msgid "Showing as PHP code"
msgstr "顯示爲 PHP 程式碼"
-#: sql.php:805 tbl_replace.php:360
-msgid "Showing SQL query"
-msgstr "顯示 SQL 查詢"
-
-#: sql.php:807
+#: sql.php:805
msgid "Validated SQL"
msgstr "已校驗的 SQL"
-#: sql.php:930
+#: sql.php:928
msgid "SQL result"
msgstr "SQL 查詢結果"
-#: sql.php:935
+#: sql.php:933
msgid "Generated by"
msgstr "產生者"
-#: sql.php:1058
+#: sql.php:1055
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "資料表 `%s` 的索引存在問題"
-#: sql.php:1090
+#: sql.php:1087
msgid "Label"
msgstr "標籤"
@@ -11531,56 +11580,6 @@ msgstr "已成功修改表 %1$s"
msgid "The columns have been moved successfully."
msgstr "已成功刪除選中的使用者"
-#: tbl_change.php:745
-msgid "Because of its length, this column might not be editable"
-msgstr "因長度問題, 該欄位可能無法編輯"
-
-#: tbl_change.php:860
-msgid "Binary - do not edit"
-msgstr "二進制 - 無法編輯"
-
-#: tbl_change.php:1065
-msgid "Insert as new row"
-msgstr "以新行插入"
-
-#: tbl_change.php:1066
-msgid "Insert as new row and ignore errors"
-msgstr "以新行插入 (忽略錯誤)"
-
-#: tbl_change.php:1067
-msgid "Show insert query"
-msgstr "顯示插入指令"
-
-#: tbl_change.php:1078
-msgid "and then"
-msgstr "然後"
-
-#: tbl_change.php:1082
-msgid "Go back to previous page"
-msgstr "返回上一頁"
-
-#: tbl_change.php:1083
-msgid "Insert another new row"
-msgstr "插入新資料"
-
-#: tbl_change.php:1087
-msgid "Go back to this page"
-msgstr "返回到本頁"
-
-#: tbl_change.php:1095
-msgid "Edit next row"
-msgstr "編輯下一行"
-
-#: tbl_change.php:1106
-msgid ""
-"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
-msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動"
-
-#: tbl_change.php:1144
-#, php-format
-msgid "Continue insertion with %s rows"
-msgstr "繼續插入 %s 行"
-
#: tbl_chart.php:80
#, fuzzy
#| msgid "Bar"
@@ -12224,38 +12223,44 @@ msgstr "追蹤下列資料操作指令:"
msgid "Create version"
msgstr "建立版本"
-#: tbl_zoom_select.php:210
+#: tbl_zoom_select.php:217
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr "執行“依例查詢”(萬用字元:“%”)"
-#: tbl_zoom_select.php:220
+#: tbl_zoom_select.php:227
#, fuzzy
#| msgid "Hide search criteria"
msgid "Additional search criteria"
msgstr "隱藏搜尋條件"
-#: tbl_zoom_select.php:268
+#: tbl_zoom_select.php:280
msgid "Use this column to label each point"
msgstr ""
-#: tbl_zoom_select.php:288
+#: tbl_zoom_select.php:300
#, fuzzy
#| msgid "Maximum number of rows to display"
msgid "Maximum rows to plot"
msgstr "顯示的最多行數"
-#: tbl_zoom_select.php:406
+#: tbl_zoom_select.php:418
msgid "Browse/Edit the points"
msgstr ""
-#: tbl_zoom_select.php:413
+#: tbl_zoom_select.php:425
#, fuzzy
#| msgid "Control user"
msgid "How to use"
msgstr "控制使用者"
+#: tbl_zoom_select.php:432
+#, fuzzy
+#| msgid "Reset"
+msgid "Reset zoom"
+msgstr "重置"
+
#: themes.php:28
msgid "Get more themes!"
msgstr "取得更多主題!"
@@ -12626,8 +12631,8 @@ msgstr ""
#: libraries/advisory_rules.txt:172
#, php-format
msgid ""
-"The current ratio of free query cache memory to total query cache size is %s"
-"%%. It should be above 80%%"
+"The current ratio of free query cache memory to total query cache size is %s%"
+"%. It should be above 80%%"
msgstr ""
#: libraries/advisory_rules.txt:174
@@ -12762,8 +12767,8 @@ msgstr ""
#: libraries/advisory_rules.txt:209
#, php-format
msgid ""
-"%s%% of all sorts cause temporary tables, this value should be lower than "
-"10%%."
+"%s%% of all sorts cause temporary tables, this value should be lower than 10%"
+"%."
msgstr ""
#: libraries/advisory_rules.txt:211
@@ -13849,9 +13854,6 @@ msgstr "最大同時連線數"
#~ msgid "No trigger with name %s found"
#~ msgstr "找不到佈景主題 %s 指定圖片路徑!"
-#~ msgid "rows"
-#~ msgstr "瀏覽"
-
#~ msgid "row(s) starting from row #"
#~ msgstr "行,起始行 #"
@@ -13961,8 +13963,8 @@ msgstr "最大同時連線數"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
+#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "新增新使用者"
diff --git a/server_status.php b/server_status.php
index f068bbad87..fee81f034b 100644
--- a/server_status.php
+++ b/server_status.php
@@ -443,6 +443,9 @@ if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) {
$GLOBALS['js_include'][] = 'canvg/flashcanvas.js';
}
$GLOBALS['js_include'][] = 'canvg/canvg.js';
+// for profiling chart
+$GLOBALS['js_include'][] = 'jqplot/jquery.jqplot.js';
+$GLOBALS['js_include'][] = 'jqplot/plugins/jqplot.pieRenderer.js';
/**
* flush status variables if requested
diff --git a/sql.php b/sql.php
index 9a33f315f7..ed5a76e2cd 100644
--- a/sql.php
+++ b/sql.php
@@ -55,14 +55,12 @@ if (isset($_REQUEST['printview'])) {
}
if (isset($_SESSION['profiling'])) {
- $GLOBALS['js_include'][] = 'highcharts/highcharts.js';
- /* Files required for chart exporting */
- $GLOBALS['js_include'][] = 'highcharts/exporting.js';
/* < IE 9 doesn't support canvas natively */
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) {
$GLOBALS['js_include'][] = 'canvg/flashcanvas.js';
}
- $GLOBALS['js_include'][] = 'canvg/canvg.js';
+ $GLOBALS['js_include'][] = 'jqplot/jquery.jqplot.js';
+ $GLOBALS['js_include'][] = 'jqplot/plugins/jqplot.pieRenderer.js';
}
/**
@@ -1023,7 +1021,6 @@ $(makeProfilingChart);
echo '';
//require_once 'libraries/chart.lib.php';
echo '